We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ee8c0 commit 850036dCopy full SHA for 850036d
.github/workflows/dotnet-desktop.yml
@@ -83,10 +83,14 @@ jobs:
83
84
# Restore the application to populate the obj folder with RuntimeIdentifiers
85
- name: Restore the application
86
- run: msbuild $env:Solution_Name /t:Build /p:OutDir=c:\output\ /p:Configuration=$env:configuration
+ run: msbuild $env:Solution_Name /t:Restore /p:OutDir=c:\output\ /p:Configuration=$env:configuration
87
env:
88
Configuration: ${{ matrix.configuration }}
89
90
+ - name: Build the application
91
+ run: msbuild $env:Solution_Name /t:Build /p:OutDir=c:\output\ /p:Configuration=$env:configuration
92
+ env:
93
+ Configuration: ${{ matrix.configuration }}
94
95
96
# Decode the base 64 encoded pfx and save the Signing_Certificate
0 commit comments