From 4469edcb78480f5b82553e6f4d8eca4f2266bb0f Mon Sep 17 00:00:00 2001 From: karmalegend <43471135+karmalegend@users.noreply.github.com> Date: Thu, 17 Dec 2020 10:32:16 +0100 Subject: [PATCH] https://github.com/dotnet/msbuild/issues/3468 --- .github/workflows/dotnet-core.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 29c2f40..e71e200 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: windows-latest steps: - uses: actions/checkout@v2 @@ -21,7 +21,7 @@ jobs: run: dotnet restore working-directory: Lingo - name: Build - run: msbuild --configuration Release --no-restore + run: dotnet build --configuration Release --no-restore working-directory: Lingo - name: Test run: dotnet test /p:CollectCoverage=true /p:CoverletOutput=TestResults/ /p:CoverletOutputFormat=lcov /p:ExcludeByFile=\\"**/Migrations/,**/Data/,**Startup.cs,**Program.cs,**/DTO/,**/Profiles/"