diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9d9ec5a..4108045 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,9 +34,11 @@ jobs: - name: Add .NET Workloads run: dotnet workload install maui ios android + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v1.1 + - name: Build - run: dotnet msbuild Health.sln /restore -m -property:Configuration=Release -property:PublicRelease=true - #run: dotnet build Health.sln /restore -m -property:Configuration=Release -property:PublicRelease=true + run: msbuild Shiny.Health/Shiny.Health.csproj -t:rebuild /restore -m -property:Configuration=Release -property:PublicRelease=true - name: Post NuGet Artifacts uses: actions/upload-artifact@v3