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 211f681 commit c6cfc03Copy full SHA for c6cfc03
.github/workflows/codeql-daily.yml
@@ -63,8 +63,12 @@ jobs:
63
- name: Setup Visual Studio Build Tools
64
uses: microsoft/setup-msbuild@v1
65
66
- - name: Set up Windows SDK
67
- uses: ilammy/msvc-dev-cmd@v1
+ # This step uses Microsoft's vswhere tool to verify that the official Windows 10 SDK (version 19041) is installed.
+ # vswhere is a Microsoft-provided command-line utility that locates Visual Studio installations and their components.
68
+ - name: Verify Windows SDK installation
69
+ run: |
70
+ & "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" -products * -requires Microsoft.VisualStudio.Component.Windows10SDK.19041 -property installationPath
71
+ shell: pwsh
72
73
- name: Setup Gradle
74
uses: gradle/actions/setup-gradle@v4
0 commit comments