From 684e0bd1833c03a123dca1e54b0c4a94e0103abd Mon Sep 17 00:00:00 2001 From: Keelah Date: Sun, 13 Oct 2024 12:25:06 +0200 Subject: [PATCH] FIX restore ? --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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