We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dea342 commit 180e43dCopy full SHA for 180e43d
.github/workflows/build.yml
@@ -36,6 +36,15 @@ jobs:
36
- name: Restore NuGet packages
37
run: msbuild -t:restore -p:RestorePackagesConfig=true
38
39
+ - name: Setup vcpkg
40
+ uses: lukka/run-vcpkg@v11
41
+ with:
42
+ runVcpkgInstall: true
43
+ vcpkgJsonGlob: '**/vcpkg.json'
44
+
45
+ - name: Install vcpkg MSBuild integration
46
+ run: ${{ github.workspace }}/vcpkg/vcpkg.exe integrate install
47
48
- name: Build solution
49
run: msbuild WinUHid.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }} /m /verbosity:minimal
50
0 commit comments