We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cbe8d9 commit abcf599Copy full SHA for abcf599
.github/workflows/release.yml
@@ -128,7 +128,9 @@ jobs:
128
${{ runner.os }}-nuget-
129
130
- name: Restore packages
131
- run: dotnet restore ${{ env.SOLUTION_PATH }} --configfile pipelines/NuGet.config
+ run: |
132
+ nuget restore ${{ env.SOLUTION_PATH }} -ConfigFile pipelines/NuGet.config
133
+ dotnet restore ${{ env.SOLUTION_PATH }} --configfile pipelines/NuGet.config
134
135
- name: Build solution
136
run: msbuild ${{ env.SOLUTION_PATH }} /p:Configuration=${{ env.BUILD_CONFIGURATION }} /p:Platform="${{ env.BUILD_PLATFORM }}" /p:RunWixToolsOutOfProc=true /p:Version=${{ steps.version.outputs.VERSION }} /p:UseSharedCompilation=false /m:4 /clp:ErrorsOnly /nologo
0 commit comments