From: AeonLucid Date: Wed, 30 Sep 2020 23:12:46 +0000 (+0200) Subject: Fix client build X-Git-Tag: v1.1.0~1^2~8 X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=68e3deb682cce2cc374e2927087f939f60386eef;p=rhonda%2Fimpostor.git Fix client build --- 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