We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48211bd commit 9ef1d1eCopy full SHA for 9ef1d1e
.github/workflows/library.nuget.yml
@@ -19,8 +19,17 @@ jobs:
19
with:
20
dotnet-version: 9.0.x
21
22
- - name: Install dependencies
+ - name: Setup MSBuild
23
+ uses: microsoft/setup-msbuild@v2
24
+
25
+ - name: Setup Visual Studio
26
+ uses: microsoft/setup-vsbuild@v1
27
+ with:
28
+ vs-version: '[17.0,18.0)' # VS2022
29
+ components: 'Microsoft.VisualStudio.Component.VC.Tools.x86.x64'
30
31
+ - name: Restore dependencies
32
run: dotnet restore src/UnlockerPatch/UnlockerPatch.csproj
33
- - name: Build
- run: dotnet build src/UnlockerPatch/UnlockerPatch.csproj --configuration Release --no-restore
34
+ - name: Build solution
35
+ run: msbuild src/UnlockerPatch/UnlockerPatch.csproj /p:Configuration=Release
0 commit comments