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 053398e commit fb4979fCopy full SHA for fb4979f
build/pipelines/templates-v2/job-build-project.yml
@@ -126,6 +126,8 @@ jobs:
126
127
- template: .\steps-restore-nuget.yml
128
129
+ - template: .\steps-install-vcpkg.yml
130
+
131
- ${{ parameters.beforeBuildSteps }}
132
133
- task: VSBuild@1
build/pipelines/templates-v2/steps-install-vcpkg.yml
@@ -0,0 +1,9 @@
1
+steps:
2
+ - pwsh: |-
3
+ $j = Get-Content vcpkg.json | ConvertFrom-Json
4
+ rm -r -fo dep/vcpkg
5
+ git clone https://github.com/microsoft/vcpkg dep/vcpkg
6
+ cd dep/vcpkg
7
+ & ./bootstrap-vcpkg.bat
8
+ echo "##vso[task.setvariable variable=VCPKG_ROOT]$PWD"
9
+ displayName: Install vcpkg (master branch)
0 commit comments