File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed
Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,17 @@ jobs:
3434 steps :
3535 - uses : actions/checkout@v4
3636
37- - name : Add MSBuild to PATH
38- uses : microsoft/setup-msbuild@v2.0.0
39- with :
40- vs-version : ' latest'
41- vs-prerelease : true
37+ # - name: Add MSBuild to PATH
38+ # uses: microsoft/setup-msbuild@v2.0.0
39+ # with:
40+ # vs-version: 'latest'
41+ # vs-prerelease: true
42+ - name : Install Visual Studio 2026 Build Tools
43+ shell : pwsh
44+ run : |
45+ Write-Host "Installing VS 2026 Build Tools..."
46+ choco install visualstudio2026buildtools --package-parameters "--add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --includeRecommended --quiet" -y --ignore-package-exit-codes=3010
47+ Write-Host "VS 2026 Build Tools installation completed"
4248
4349 - name : Clear NuGet cache
4450 run : nuget locals all -clear
You can’t perform that action at this time.
0 commit comments