diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 54e21d3..83282af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,10 +49,13 @@ jobs: uses: actions/setup-dotnet@v4 with: dotnet-version: ${{vars.DOTNET_VERSION}} + + - name: Setup MSBuild.exe + uses: microsoft/setup-msbuild@v2 # Restore the application to populate the obj folder with RuntimeIdentifiers - name: Restore the application - run: dotnet restore + run: msbuild FASTER /t:Restore /p:Configuration=$env:Configuration # Execute all unit tests in the solution - name: Execute unit tests