From 68e3deb682cce2cc374e2927087f939f60386eef Mon Sep 17 00:00:00 2001 From: AeonLucid Date: Thu, 1 Oct 2020 01:12:46 +0200 Subject: [PATCH] Fix client build --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index acc5a46..b284bba 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: with: submodules: true - name: Setup MSBuild.exe - uses: warrenbuckley/Setup-MSBuild@v1 + uses: microsoft/setup-msbuild@v1.0.1 - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: @@ -30,7 +30,7 @@ jobs: - name: Install dependencies run: dotnet restore ./src - name: Build Impostor.Client - run: msbuild ./src/Impostor.Client/Impostor.Client.csproj /p:Configuration=Release + run: dotnet msbuild ./src/Impostor.Client/Impostor.Client.csproj /p:Configuration=Release - name: Build Impostor.Server run: dotnet build --no-restore -c Release -f netcoreapp3.1 ./src/Impostor.Server/Impostor.Server.csproj /p:PublishTrimmed=false - name: Test -- 2.39.5