├── .clang-format ├── .config └── 1espt │ └── PipelineAutobaseliningConfig.yml ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github └── workflows │ ├── build.yaml │ ├── ci.yaml │ ├── matchers.json │ └── pr.yaml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CMakeLists.txt ├── CMakePresets.json ├── CODE_OF_CONDUCT.md ├── Generate-SpdxLicenseList.ps1 ├── LICENSE.txt ├── LocProject.json ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── VERSION.txt ├── azure-pipelines ├── Create-PRDiff.ps1 ├── Format-CxxCode.ps1 ├── arch-independent-signing.signproj ├── binary-signing.signproj ├── e2e-artifacts-registry │ ├── index.yaml │ ├── vcpkg-test-artifact-1 │ │ └── vcpkg-test-artifact-1-1.0.0.json │ ├── vcpkg-test-artifact-2 │ │ └── vcpkg-test-artifact-2-1.0.0.json │ └── vcpkg-test-artifact-3 │ │ └── vcpkg-test-artifact-3-1.0.0.json ├── e2e-assets │ ├── asset-caching │ │ ├── bad-hash-script.ps1 │ │ ├── failing-script.ps1 │ │ └── no-file-script.ps1 │ ├── ci-feature-baseline │ │ ├── bad-options.txt │ │ ├── conflicting-features.txt │ │ ├── conflicting-states.txt │ │ ├── empty-baseline.txt │ │ ├── unexpected-cascade-combination-fail.txt │ │ ├── unexpected-cascade-feature-fail.txt │ │ ├── unexpected-cascade-port-fail.txt │ │ ├── unexpected-pass-combo-fail.txt │ │ ├── unexpected-pass-everything.txt │ │ ├── unexpected-pass-feature-cascade.txt │ │ ├── unexpected-pass-feature-fail.txt │ │ ├── unexpected-pass-port-cascade.txt │ │ ├── unexpected-pass-port-fail.txt │ │ ├── vcpkg-fail-or-cascade.txt │ │ ├── vcpkg-mutually-incompatible-features-ac-only.txt │ │ ├── vcpkg-mutually-incompatible-features-bd-only.txt │ │ ├── vcpkg-mutually-incompatible-features-complete.txt │ │ ├── vcpkg-requires-feature-add-required.txt │ │ ├── vcpkg-requires-feature-complete.txt │ │ ├── vcpkg-requires-feature-mark-cascades.txt │ │ └── vcpkg-self-cascade.txt │ ├── ci-skipped-features │ │ ├── baseline.txt │ │ ├── skipped-depends │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ └── skipped-features │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── ci-skipped-ports │ │ ├── always-built │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ ├── always-cascade │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ ├── always-skip │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ └── baseline.txt │ ├── ci-verify-versions-registry │ │ ├── .gitattributes │ │ ├── old-port-versions │ │ │ ├── bad-git-tree-1.0 │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── bad-history-name-1.0 │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── baseline-version-mismatch-1.0 │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── has-local-edits │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── malformed-1.0 │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── mismatch-git-tree-1.0 │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── version-mismatch-1.0 │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── version-missing-1.0 │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ └── version-scheme-mismatch-1.0 │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── ports │ │ │ ├── bad-git-tree │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── bad-history-name │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── baseline-version-mismatch │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── baseline-version-missing │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── dependency-not-in-versions-database-feature │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── dependency-not-in-versions-database │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── dependency-version-not-in-versions-database-feature │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── dependency-version-not-in-versions-database │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── executable-bit │ │ │ │ ├── portfile.cmake │ │ │ │ ├── some-script.sh │ │ │ │ └── vcpkg.json │ │ │ ├── good │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── malformed │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── mismatch-git-tree │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── no-versions │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── override-not-in-versions-database │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── override-version-not-in-versions-database │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── version-mismatch │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── version-missing │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ └── version-scheme-mismatch │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ └── versions │ │ │ ├── b- │ │ │ ├── bad-git-tree.json │ │ │ ├── bad-history-name.json │ │ │ ├── baseline-version-mismatch.json │ │ │ └── baseline-version-missing.json │ │ │ ├── baseline.json │ │ │ ├── d- │ │ │ ├── dependency-not-in-versions-database-feature.json │ │ │ ├── dependency-not-in-versions-database.json │ │ │ ├── dependency-version-not-in-versions-database-feature.json │ │ │ └── dependency-version-not-in-versions-database.json │ │ │ ├── e- │ │ │ └── executable-bit.json │ │ │ ├── g- │ │ │ └── good.json │ │ │ ├── h- │ │ │ └── has-local-edits.json │ │ │ ├── m- │ │ │ ├── malformed.json │ │ │ └── mismatch-git-tree.json │ │ │ ├── o- │ │ │ ├── override-not-in-versions-database.json │ │ │ └── override-version-not-in-versions-database.json │ │ │ └── v- │ │ │ ├── version-mismatch.json │ │ │ ├── version-missing.json │ │ │ └── version-scheme-mismatch.json │ ├── ci │ │ ├── ci.baseline.txt │ │ └── ci.pass.baseline.txt │ ├── extract │ │ └── a-tar-with-plus-x.tar.gz │ ├── fetch │ │ └── ninja.bat │ ├── format-feature-baseline │ │ ├── asci-range.txt │ │ ├── ci.baseline.txt │ │ ├── expected │ │ │ ├── asci-range.txt │ │ │ ├── ci.baseline.txt │ │ │ ├── keep-blocks.txt │ │ │ └── prefix-feature-blocks.txt │ │ ├── keep-blocks.txt │ │ └── prefix-feature-blocks.txt │ ├── format-manifest-malformed │ │ └── bad-feature-name.json │ ├── format-manifest │ │ ├── empty.json │ │ ├── expected │ │ │ ├── empty.json │ │ │ ├── name-and-version.json │ │ │ ├── name.json │ │ │ └── version.json │ │ ├── name-and-version.json │ │ ├── name.json │ │ └── version.json │ ├── test-dll-port-template │ │ ├── build.cmd │ │ ├── portfile.cmake │ │ ├── test.c │ │ ├── test.def │ │ ├── test.h │ │ └── vcpkg.json │ ├── test-exe-port-template │ │ ├── build.cmd │ │ ├── portfile.cmake │ │ ├── test.c │ │ └── vcpkg.json │ ├── test-lib-port-template-dynamic-crt-release-only │ │ ├── build.cmd │ │ ├── portfile.cmake │ │ ├── test.c │ │ ├── test.h │ │ └── vcpkg.json │ └── test-lib-port-template-dynamic-crt │ │ ├── build.cmd │ │ ├── portfile.cmake │ │ ├── test.c │ │ ├── test.h │ │ └── vcpkg.json ├── e2e-ports │ ├── a-conflict │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── absolute-paths │ │ ├── hash.in │ │ ├── portfile.cmake │ │ ├── source-comment.h.in │ │ ├── source.h.in │ │ └── vcpkg.json │ ├── b-conflict │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── broken-manifests │ │ ├── broken-duplicate-overrides │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ ├── broken-no-name │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ ├── broken-no-version │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ └── malformed │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── broken-symlink │ │ ├── portfile.cmake │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── hello-broken-symlink.h │ │ │ ├── hello.cpp │ │ │ └── hello.def │ │ └── vcpkg.json │ ├── ci │ │ ├── base-port │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ ├── dep-on-feature-not-sup │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ ├── feature-dep-missing │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ ├── feature-not-sup │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ └── not-sup-host-b │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── classic-versions-a │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── classic-versions-b │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── control-file │ │ ├── CONTROL │ │ └── portfile.cmake │ ├── duplicate-file-a │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── duplicate-file-b │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── env-passthrough │ │ └── passthrough.cmake │ ├── hash-additional-fail │ │ ├── additional_abi_file.txt │ │ ├── hash-additional-e2e.cmake │ │ └── vcpkg-test-hash-additional │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── hash-additional │ │ ├── additional_abi_file.txt │ │ ├── hash-additional-e2e.cmake │ │ └── vcpkg-test-hash-additional │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── integrate-install │ │ ├── NoProps.vcxproj │ │ ├── Project1.vcxproj │ │ ├── Source.cpp │ │ ├── VcpkgTriplet.vcxproj │ │ ├── VcpkgTriplet2.vcxproj │ │ ├── VcpkgUseStatic.vcxproj │ │ ├── VcpkgUseStatic2.vcxproj │ │ ├── VcpkgUseStaticManifestHost.vcxproj │ │ └── vcpkg.json │ ├── llvm-lto-lib │ │ ├── llvm-lto-charset.lib │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── mismatched-version-database │ │ ├── vcpkg-configuration.json │ │ ├── vcpkg.json │ │ └── vcpkg_registry │ │ │ ├── ports │ │ │ ├── arrow │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ └── bloom-filter │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ └── versions │ │ │ ├── a- │ │ │ └── arrow.json │ │ │ ├── b- │ │ │ └── bloom-filter.json │ │ │ └── baseline.json │ ├── post-portfile-includes-fail │ │ ├── invalid.extension │ │ ├── post-portfile-includes.cmake │ │ └── vcpkg-post-portfile-includes │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── post-portfile-includes │ │ ├── post-portfile-includes.cmake │ │ ├── test1.cmake │ │ ├── test2.cmake │ │ └── vcpkg-post-portfile-includes │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── set-detected-head-version │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── tool-control │ │ ├── CONTROL │ │ └── portfile.cmake │ ├── tool-liba │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── tool-libb │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── tool-manifest │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-bad-spdx-license │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-clean-after-build-test-port │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-cmake-config-many-targets │ │ ├── portfile.cmake │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── many-targets.cpp │ │ │ ├── many-targets.def │ │ │ └── many-targets.h │ │ └── vcpkg.json │ ├── vcpkg-default-features-fail-require-other-feature │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-default-features-fail │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-depends-on-fail-core │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-depends-on-fail-feature │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-depends-on-fail │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-e2e-test-fails-in-download-only-transitive │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-e2e-test-fails-in-download-only │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-empty-featureful-port │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-empty-port │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-explicit-usage │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-fail-feature-cascades │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-fail-if-depended-upon │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-header-only │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-hello-world-1 │ │ ├── portfile.cmake │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── hello-1.h │ │ │ ├── hello.cpp │ │ │ └── hello.def │ │ └── vcpkg.json │ ├── vcpkg-hello-world-2 │ │ ├── portfile.cmake │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── hello-2.h │ │ │ ├── hello.c │ │ │ └── hello.def │ │ └── vcpkg.json │ ├── vcpkg-internal-dll-with-no-exports │ │ ├── CMakeLists.txt │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-internal-e2e-test-port │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-internal-e2e-test-port2 │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-internal-e2e-test-port3 │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-license-apache-and-boost │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-license-bsd-on-mit │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-license-bsd │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-license-features │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-license-mit │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-license-null │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-msvc-2013 │ │ ├── build.cmd │ │ ├── debug │ │ │ ├── test_dll.dll │ │ │ └── test_dll.lib │ │ ├── portfile.cmake │ │ ├── release │ │ │ ├── test_dll.dll │ │ │ └── test_dll.lib │ │ ├── test.c │ │ ├── test.def │ │ ├── test.h │ │ └── vcpkg.json │ ├── vcpkg-mutually-incompatible-features │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-native-dependency │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-never-builds │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-policy-absolute-paths │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-policy-copyright │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-policy-empty-folders │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-policy-empty-package │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-policy-forgot-usage │ │ ├── portfile.cmake │ │ ├── usage │ │ └── vcpkg.json │ ├── vcpkg-policy-include-folder │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-policy-misplaced-cmake-files │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-policy-misplaced-pkgconfig │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-policy-misplaced-regular-files │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-policy-set-incorrectly │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-policy-skip-all-post-build-checks │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-requires-feature │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-self-cascade │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-test-x-script │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-touch-missing-dependency │ │ ├── portfile.cmake │ │ ├── vcpkg-port-config.cmake │ │ ├── vcpkg.json │ │ └── vcpkg_touch.cmake │ ├── vcpkg-touch │ │ ├── portfile.cmake │ │ ├── vcpkg-port-config.cmake │ │ ├── vcpkg.json │ │ └── vcpkg_touch.cmake │ ├── vcpkg-uses-test-cmake │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-uses-touch-missing-dependency │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-uses-touch │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── vcpkg-uses-vcpkg-common-functions │ │ ├── portfile.cmake │ │ └── vcpkg.json │ ├── version-files │ │ ├── default-baseline-1 │ │ │ └── vcpkg.json │ │ ├── old-ports │ │ │ ├── zlib-1.2.11-8 │ │ │ │ ├── 0001-Prevent-invalid-inclusions-when-HAVE_-is-set-to-0.patch │ │ │ │ ├── CONTROL │ │ │ │ ├── LICENSE │ │ │ │ ├── add_debug_postfix_on_mingw.patch │ │ │ │ ├── cmake_dont_build_more_than_needed.patch │ │ │ │ ├── portfile.cmake │ │ │ │ └── usage │ │ │ └── zlib-1.2.11-9 │ │ │ │ ├── 0001-Prevent-invalid-inclusions-when-HAVE_-is-set-to-0.patch │ │ │ │ ├── CONTROL │ │ │ │ ├── LICENSE │ │ │ │ ├── add_debug_postfix_on_mingw.patch │ │ │ │ ├── cmake_dont_build_more_than_needed.patch │ │ │ │ ├── portfile.cmake │ │ │ │ └── usage │ │ ├── ports-incomplete │ │ │ ├── cat │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── dog │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── duck │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── ferret │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── fish │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ └── mouse │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── ports │ │ │ ├── cat │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── dog │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ ├── duck │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ └── mouse │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── transitive-constraints │ │ │ ├── ports │ │ │ │ ├── overlay-zlib │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ │ └── overlay │ │ │ │ │ ├── portfile.cmake │ │ │ │ │ └── vcpkg.json │ │ │ └── vcpkg.json │ │ ├── versions-incomplete │ │ │ ├── baseline.json │ │ │ ├── c- │ │ │ │ └── cat.json │ │ │ ├── d- │ │ │ │ └── dog.json │ │ │ ├── f- │ │ │ │ └── fish.json │ │ │ └── m- │ │ │ │ └── mouse.json │ │ ├── versions │ │ │ ├── baseline.json │ │ │ ├── c- │ │ │ │ └── cat.json │ │ │ ├── d- │ │ │ │ ├── dog.json │ │ │ │ └── duck.json │ │ │ ├── m- │ │ │ │ └── mouse.json │ │ │ └── z- │ │ │ │ └── zlib.json │ │ └── without-default-baseline-2 │ │ │ ├── vcpkg.json │ │ │ └── versions │ │ │ └── z- │ │ │ └── zlib.json │ ├── version-variable │ │ ├── version-date │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ ├── version-semver │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ ├── version-string │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ └── version │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ └── wrong-pkgconfig │ │ ├── portfile.cmake │ │ ├── vcpkg.json │ │ └── wrong-pkgconfig.pc.in ├── e2e-projects │ ├── applocal │ │ ├── basic │ │ │ ├── build.bat │ │ │ ├── installed │ │ │ │ └── bin │ │ │ │ │ ├── mylib.cpp │ │ │ │ │ └── mylib.h │ │ │ └── main.cpp │ │ ├── plugins-debug │ │ │ ├── build.bat │ │ │ ├── installed │ │ │ │ ├── debug │ │ │ │ │ └── bin │ │ │ │ │ │ ├── k4a.cpp │ │ │ │ │ │ └── k4a.h │ │ │ │ └── tools │ │ │ │ │ └── azure-kinect-sensor-sdk │ │ │ │ │ ├── depthengine_2_0.cpp │ │ │ │ │ └── k4adeploy.ps1 │ │ │ └── main.cpp │ │ ├── plugins │ │ │ ├── build.bat │ │ │ ├── installed │ │ │ │ ├── bin │ │ │ │ │ ├── k4a.cpp │ │ │ │ │ └── k4a.h │ │ │ │ └── tools │ │ │ │ │ └── azure-kinect-sensor-sdk │ │ │ │ │ ├── depthengine_2_0.cpp │ │ │ │ │ └── k4adeploy.ps1 │ │ │ └── main.cpp │ │ └── static-lib │ │ │ ├── build.bat │ │ │ └── static-lib.cpp │ ├── e2e-registry-templates │ │ ├── no-patterns.json.in │ │ ├── only-patterns.json.in │ │ ├── removed.json.in │ │ ├── with-default.json.in │ │ └── with-redeclaration.json.in │ ├── export-project │ │ └── vcpkg.json │ ├── overlays-bad-paths │ │ ├── env-overlays │ │ │ └── vcpkg-empty-port │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── my-triplets │ │ │ └── x64-windows-static.cmake │ │ ├── vcpkg-configuration.json │ │ └── vcpkg.json │ ├── overlays-dot │ │ ├── vcpkg-configuration.json │ │ └── vcpkg.json │ ├── overlays-malformed-shadowing-builtin │ │ ├── builtin-malformed │ │ │ └── a │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── config-overlays │ │ │ └── a │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── vcpkg-configuration.json │ │ └── vcpkg.json │ ├── overlays-malformed-shadowing │ │ ├── config-overlays │ │ │ ├── a │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ │ └── malformed │ │ │ │ └── a │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── vcpkg-configuration.json │ │ └── vcpkg.json │ ├── overlays-not-quite-dot │ │ ├── hello │ │ │ └── ensure-directory.txt │ │ ├── vcpkg-configuration.json │ │ └── vcpkg.json │ ├── overlays-project-config-embedded │ │ ├── cli-overlays │ │ │ └── another-vcpkg-empty-port │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── config-overlays │ │ │ └── beicode │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── env-overlays │ │ │ └── vcpkg-empty-port │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── my-triplets │ │ │ └── fancy-config-embedded-triplet.cmake │ │ └── vcpkg.json │ ├── overlays-project-with-config │ │ ├── cli-overlays │ │ │ └── another-vcpkg-empty-port │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── config-overlays │ │ │ └── beicode │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── env-overlays │ │ │ └── vcpkg-empty-port │ │ │ │ ├── portfile.cmake │ │ │ │ └── vcpkg.json │ │ ├── my-triplets │ │ │ └── fancy-triplet.cmake │ │ ├── vcpkg-configuration.json │ │ └── vcpkg.json │ └── overlays-vcpkg-empty-port │ │ └── vcpkg.json ├── e2e-registry │ ├── extra-ports │ │ └── foo │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── ports │ │ ├── bar │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ ├── baz │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ │ └── foo │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ ├── removed-ports │ │ └── removed │ │ │ ├── portfile.cmake │ │ │ └── vcpkg.json │ └── versions │ │ ├── b- │ │ ├── bar.json │ │ └── baz.json │ │ ├── baseline.json │ │ ├── f- │ │ └── foo.json │ │ └── r- │ │ └── removed.json ├── e2e-specs │ └── autocomplete-posh-vcpkg.Tests.ps1 ├── end-to-end-tests-dir │ ├── add.ps1 │ ├── artifacts.ps1 │ ├── asset-caching.ps1 │ ├── autocomplete-command.ps1 │ ├── autocomplete-posh-vcpkg.ps1 │ ├── backcompat-helpers.ps1 │ ├── binary-caching.ps1 │ ├── build-command.ps1 │ ├── build-missing.ps1 │ ├── build-test-ports.ps1 │ ├── bundles.ps1 │ ├── ci-verify-versions.ps1 │ ├── ci.ps1 │ ├── classic-versions.ps1 │ ├── clean-after-build.ps1 │ ├── cli.ps1 │ ├── commands.export.ps1 │ ├── commands.extract.ps1 │ ├── compilertracking.ps1 │ ├── create.ps1 │ ├── disable-metrics.ps1 │ ├── e2e-registry.ps1 │ ├── edit.ps1 │ ├── env-passthrough.ps1 │ ├── env-tools.ps1 │ ├── fetch.ps1 │ ├── format-feature-baseline.ps1 │ ├── format-manifest.ps1 │ ├── hash-additional.ps1 │ ├── integrate-install.ps1 │ ├── keep-going.ps1 │ ├── license-report.ps1 │ ├── manifests.ps1 │ ├── native-platform-dep.ps1 │ ├── new.ps1 │ ├── no-absolute-paths.ps1 │ ├── only-downloads.ps1 │ ├── overlays.ps1 │ ├── post-build-checks.ps1 │ ├── post-portfile-includes.ps1 │ ├── registries.ps1 │ ├── regression-ports.ps1 │ ├── spaces.ps1 │ ├── test-features.ps1 │ ├── tool-ports.ps1 │ ├── upgrade.ps1 │ ├── usage.ps1 │ ├── vcpkg-root.ps1 │ ├── version-variable.ps1 │ ├── versions.ps1 │ ├── wrong-pkgconfig.ps1 │ └── z-applocalcpp.ps1 ├── end-to-end-tests-prelude.ps1 ├── end-to-end-tests.ps1 ├── json-schema-tests-dir │ ├── json-schema-bvt.test.ps1 │ └── vcpkg-ports-json.test.ps1 ├── json-schema-tests.ps1 ├── localization.yml ├── nuget-package.signproj ├── overlay-triplets │ ├── compilertracking │ │ ├── x64-linux.cmake │ │ ├── x64-osx.cmake │ │ └── x86-windows.cmake │ ├── x64-linux-e2e.cmake │ ├── x64-osx-e2e.cmake │ └── x64-windows-e2e.cmake ├── packages.config ├── signing.yml ├── vcpkg-alpine │ └── Dockerfile ├── vcpkg-arm64 │ ├── Dockerfile │ ├── libstdcpp9-fix.diff │ ├── sources.list │ └── toolchain.cmake ├── vcpkg-linux │ ├── Dockerfile │ ├── libstdcpp9-fix.diff │ ├── sources.list │ └── toolchain.cmake └── vs-insertion │ └── vcpkg.nuspec ├── cgmanifest.json ├── cmake ├── CMakeRC_cmake_4.patch ├── FindCMakeRC.cmake ├── Findfmt.cmake └── utilities.cmake ├── docs ├── artifact.schema.json ├── benchmarking.md ├── command-guidelines.md ├── layout.md ├── localization.md ├── manifest-info.schema.json ├── testing.md ├── validating-json-schemas.md ├── vcpkg-configuration.schema.json ├── vcpkg-schema-definitions.schema.json ├── vcpkg-tools.schema.json ├── vcpkg.schema.json ├── vcpkg_registry_release_process.md └── vcpkg_tool_release_process.md ├── include ├── catch2 │ └── catch.hpp ├── pch.h ├── vcpkg-test │ ├── mockcmakevarprovider.h │ └── util.h └── vcpkg │ ├── archives.h │ ├── base │ ├── api-stable-format.h │ ├── background-work-queue.h │ ├── cache.h │ ├── checks.h │ ├── chrono.h │ ├── cmd-parser.h │ ├── cofffilereader.h │ ├── contractual-constants.h │ ├── delayed-init.h │ ├── diagnostics.h │ ├── downloads.h │ ├── enums.h │ ├── expected.h │ ├── file-contents.h │ ├── file_sink.h │ ├── files.h │ ├── fmt.h │ ├── fwd │ │ ├── cmd-parser.h │ │ ├── cofffilereader.h │ │ ├── diagnostics.h │ │ ├── downloads.h │ │ ├── expected.h │ │ ├── file-contents.h │ │ ├── files.h │ │ ├── fmt.h │ │ ├── git.h │ │ ├── graphs.h │ │ ├── json.h │ │ ├── message_sinks.h │ │ ├── messages.h │ │ ├── optional.h │ │ ├── parse.h │ │ ├── span.h │ │ ├── stringview.h │ │ ├── system.h │ │ └── system.process.h │ ├── git.h │ ├── graphs.h │ ├── hash.h │ ├── json.h │ ├── jsonreader.h │ ├── lazy.h │ ├── lineinfo.h │ ├── message-args.inc.h │ ├── message-data.inc.h │ ├── message_sinks.h │ ├── messages.h │ ├── optional.h │ ├── parallel-algorithms.h │ ├── parse.h │ ├── path.h │ ├── pragmas.h │ ├── setup-messages.h │ ├── sortedvector.h │ ├── span.h │ ├── strings.h │ ├── stringview.h │ ├── system-headers.h │ ├── system.debug.h │ ├── system.deviceid.h │ ├── system.h │ ├── system.mac.h │ ├── system.process.h │ ├── system.proxy.h │ ├── to-string.h │ ├── uint128.h │ ├── unicode.h │ ├── util.h │ ├── uuid.h │ └── xmlserializer.h │ ├── binarycaching.h │ ├── binarycaching.private.h │ ├── binaryparagraph.h │ ├── buildenvironment.h │ ├── bundlesettings.h │ ├── cgroup-parser.h │ ├── ci-baseline.h │ ├── ci-feature-baseline.h │ ├── cmakevars.h │ ├── commands.acquire-project.h │ ├── commands.acquire.h │ ├── commands.activate.h │ ├── commands.add-version.h │ ├── commands.add.h │ ├── commands.autocomplete.h │ ├── commands.bootstrap-standalone.h │ ├── commands.build-external.h │ ├── commands.build.h │ ├── commands.check-support.h │ ├── commands.ci-clean.h │ ├── commands.ci-verify-versions.h │ ├── commands.ci.h │ ├── commands.contact.h │ ├── commands.create.h │ ├── commands.deactivate.h │ ├── commands.depend-info.h │ ├── commands.download.h │ ├── commands.edit.h │ ├── commands.env.h │ ├── commands.export.h │ ├── commands.fetch.h │ ├── commands.find.h │ ├── commands.format-feature-baselinet.h │ ├── commands.format-manifest.h │ ├── commands.generate-msbuild-props.h │ ├── commands.h │ ├── commands.hash.h │ ├── commands.help.h │ ├── commands.init-registry.h │ ├── commands.install.h │ ├── commands.integrate.h │ ├── commands.license-report.h │ ├── commands.list.h │ ├── commands.new.h │ ├── commands.owns.h │ ├── commands.package-info.h │ ├── commands.portsdiff.h │ ├── commands.regenerate.h │ ├── commands.remove.h │ ├── commands.search.h │ ├── commands.set-installed.h │ ├── commands.test-features.h │ ├── commands.update-baseline.h │ ├── commands.update-registry.h │ ├── commands.update.h │ ├── commands.upgrade.h │ ├── commands.use.h │ ├── commands.version.h │ ├── commands.vsinstances.h │ ├── commands.z-applocal.h │ ├── commands.z-ce.h │ ├── commands.z-changelog.h │ ├── commands.z-check-tools-sha.h │ ├── commands.z-extract.h │ ├── commands.z-generate-message-map.h │ ├── commands.z-preregister-telemetry.h │ ├── commands.z-print-config.h │ ├── commands.z-upload-metrics.h │ ├── configuration.h │ ├── configure-environment.h │ ├── dependencies.h │ ├── documentation.h │ ├── fwd │ ├── binarycaching.h │ ├── binaryparagraph.h │ ├── build.h │ ├── bundlesettings.h │ ├── ci-baseline.h │ ├── cmakevars.h │ ├── commands.install.h │ ├── configuration.h │ ├── dependencies.h │ ├── installedpaths.h │ ├── packagespec.h │ ├── paragraphparser.h │ ├── portfileprovider.h │ ├── registries.h │ ├── sourceparagraph.h │ ├── statusparagraph.h │ ├── statusparagraphs.h │ ├── tools.h │ ├── triplet.h │ ├── vcpkgcmdarguments.h │ ├── vcpkgpaths.h │ └── versions.h │ ├── input.h │ ├── installedpaths.h │ ├── metrics.h │ ├── packagespec.h │ ├── paragraphparser.h │ ├── paragraphs.h │ ├── platform-expression.h │ ├── portfileprovider.h │ ├── postbuildlint.h │ ├── registries-parsing.h │ ├── registries.h │ ├── sourceparagraph.h │ ├── spdx.h │ ├── statusparagraph.h │ ├── statusparagraphs.h │ ├── tools.h │ ├── tools.test.h │ ├── triplet.h │ ├── vcpkgcmdarguments.h │ ├── vcpkglib.h │ ├── vcpkgpaths.h │ ├── versiondeserializers.h │ ├── versions.h │ ├── visualstudio.h │ └── xunitwriter.h ├── locales ├── messages.cs.json ├── messages.de.json ├── messages.es.json ├── messages.fr.json ├── messages.it.json ├── messages.ja.json ├── messages.json ├── messages.ko.json ├── messages.pl.json ├── messages.pt-BR.json ├── messages.ru.json ├── messages.tr.json ├── messages.zh-Hans.json └── messages.zh-Hant.json ├── scripts ├── addPoshVcpkgToPowershellProfile.ps1 ├── applocal.ps1 ├── posh-vcpkg.psd1 ├── posh-vcpkg.psm1 └── verifyMessages.ps1 ├── src ├── closes-exit-minus-one.c ├── closes-stdin.c ├── closes-stdout.c ├── localization │ ├── cs │ │ └── messages.json.lcl │ ├── de │ │ └── messages.json.lcl │ ├── es │ │ └── messages.json.lcl │ ├── fr │ │ └── messages.json.lcl │ ├── it │ │ └── messages.json.lcl │ ├── ja │ │ └── messages.json.lcl │ ├── ko │ │ └── messages.json.lcl │ ├── pl │ │ └── messages.json.lcl │ ├── pt-BR │ │ └── messages.json.lcl │ ├── ru │ │ └── messages.json.lcl │ ├── tr │ │ └── messages.json.lcl │ ├── zh-Hans │ │ └── messages.json.lcl │ └── zh-Hant │ │ └── messages.json.lcl ├── reads-stdin.c ├── test-editor.c ├── test-script-asset-cache.c ├── tls12-download.c ├── vcpkg-fuzz │ └── main.cpp ├── vcpkg-in-development.ps1 ├── vcpkg-test │ ├── archives.cpp │ ├── arguments.cpp │ ├── binarycaching.cpp │ ├── bundlesettings.cpp │ ├── cache.cpp │ ├── catch.cpp │ ├── cgroup-parser.cpp │ ├── chrono.cpp │ ├── ci-baseline.cpp │ ├── cmd-parser.cpp │ ├── coffilereader.cpp │ ├── commands.build.cpp │ ├── commands.dependinfo.cpp │ ├── commands.extract.cpp │ ├── commands.install.cpp │ ├── configmetadata.cpp │ ├── configparser.cpp │ ├── dependencies.cpp │ ├── dependinfo-graphs.cpp │ ├── downloads.cpp │ ├── expected.cpp │ ├── export.cpp │ ├── files.cpp │ ├── git.cpp │ ├── hash.cpp │ ├── input.cpp │ ├── integrate.cpp │ ├── issue_body.cpp │ ├── json.cpp │ ├── large-json-document.json.inc │ ├── manifests.cpp │ ├── messages.cpp │ ├── metrics.cpp │ ├── mockcmakevarsprovider.cpp │ ├── new.cpp │ ├── optional.cpp │ ├── paragraph.cpp │ ├── plan.cpp │ ├── platform-expression.cpp │ ├── registries.cpp │ ├── spdx.cpp │ ├── specifier.cpp │ ├── statusparagraphs.cpp │ ├── strings.cpp │ ├── stringview.cpp │ ├── system.cpp │ ├── system.mac.cpp │ ├── system.process.cpp │ ├── tools.cpp │ ├── uint128.cpp │ ├── unicode.cpp │ ├── update.cpp │ ├── util-tests.cpp │ ├── util.cpp │ ├── versionplan.cpp │ ├── versions.cpp │ └── xunitwriter.cpp ├── vcpkg.cpp ├── vcpkg.manifest └── vcpkg │ ├── archives.cpp │ ├── base │ ├── checks.cpp │ ├── chrono.cpp │ ├── cmd-parser.cpp │ ├── cofffilereader.cpp │ ├── diagnostics.cpp │ ├── downloads.cpp │ ├── files.cpp │ ├── git.cpp │ ├── hash.cpp │ ├── json.cpp │ ├── message_sinks.cpp │ ├── messages.cpp │ ├── parse.cpp │ ├── strings.cpp │ ├── stringview.cpp │ ├── system.cpp │ ├── system.deviceid.cpp │ ├── system.mac.cpp │ ├── system.process.cpp │ ├── system.proxy.cpp │ ├── uint128.cpp │ ├── unicode.cpp │ ├── uuid.cpp │ └── xmlserializer.cpp │ ├── binarycaching.cpp │ ├── binaryparagraph.cpp │ ├── buildenvironment.cpp │ ├── bundlesettings.cpp │ ├── cgroup-parser.cpp │ ├── ci-baseline.cpp │ ├── ci-feature-baseline.cpp │ ├── cmakevars.cpp │ ├── commands.acquire-project.cpp │ ├── commands.acquire.cpp │ ├── commands.activate.cpp │ ├── commands.add-version.cpp │ ├── commands.add.cpp │ ├── commands.autocomplete.cpp │ ├── commands.bootstrap-standalone.cpp │ ├── commands.build-external.cpp │ ├── commands.build.cpp │ ├── commands.check-support.cpp │ ├── commands.ci-clean.cpp │ ├── commands.ci-verify-versions.cpp │ ├── commands.ci.cpp │ ├── commands.contact.cpp │ ├── commands.cpp │ ├── commands.create.cpp │ ├── commands.deactivate.cpp │ ├── commands.depend-info.cpp │ ├── commands.download.cpp │ ├── commands.edit.cpp │ ├── commands.env.cpp │ ├── commands.export.cpp │ ├── commands.fetch.cpp │ ├── commands.find.cpp │ ├── commands.format-feature-baseline.cpp │ ├── commands.format-manifest.cpp │ ├── commands.generate-msbuild-props.cpp │ ├── commands.hash.cpp │ ├── commands.help.cpp │ ├── commands.init-registry.cpp │ ├── commands.install.cpp │ ├── commands.integrate.cpp │ ├── commands.license-report.cpp │ ├── commands.list.cpp │ ├── commands.new.cpp │ ├── commands.owns.cpp │ ├── commands.package-info.cpp │ ├── commands.portsdiff.cpp │ ├── commands.regenerate.cpp │ ├── commands.remove.cpp │ ├── commands.search.cpp │ ├── commands.set-installed.cpp │ ├── commands.test-features.cpp │ ├── commands.update-baseline.cpp │ ├── commands.update-registry.cpp │ ├── commands.update.cpp │ ├── commands.upgrade.cpp │ ├── commands.use.cpp │ ├── commands.version.cpp │ ├── commands.vsinstances.cpp │ ├── commands.z-applocal.cpp │ ├── commands.z-ce.cpp │ ├── commands.z-changelog.cpp │ ├── commands.z-check-tools-sha.cpp │ ├── commands.z-extract.cpp │ ├── commands.z-generate-message-map.cpp │ ├── commands.z-preregister-telemetry.cpp │ ├── commands.z-print-config.cpp │ ├── commands.z-upload-metrics.cpp │ ├── configuration.cpp │ ├── configure-environment.cpp │ ├── dependencies.cpp │ ├── input.cpp │ ├── metrics.cpp │ ├── packagespec.cpp │ ├── paragraphs.cpp │ ├── platform-expression.cpp │ ├── portfileprovider.cpp │ ├── postbuildlint.cpp │ ├── registries.cpp │ ├── sourceparagraph.cpp │ ├── spdx-exceptions.inc │ ├── spdx-licenses.inc │ ├── spdx.cpp │ ├── statusparagraph.cpp │ ├── statusparagraphs.cpp │ ├── tools.cpp │ ├── triplet.cpp │ ├── vcpkgcmdarguments.cpp │ ├── vcpkglib.cpp │ ├── vcpkgpaths.cpp │ ├── versiondeserializers.cpp │ ├── versions.cpp │ ├── visualstudio.cpp │ └── xunitwriter.cpp ├── vcpkg-artifacts ├── .gitignore ├── .mocharc.json ├── .npmrc ├── LICENSE ├── amf │ ├── Requires.ts │ ├── contact.ts │ ├── demands.ts │ ├── exports.ts │ ├── info.ts │ ├── installer.ts │ ├── metadata-file.ts │ ├── registries.ts │ └── version-reference.ts ├── archivers │ └── git.ts ├── artifacts │ ├── SetOfDemands.ts │ ├── activation.ts │ └── artifact.ts ├── cli │ ├── argument.ts │ ├── artifacts.ts │ ├── command-line.ts │ ├── command.ts │ ├── commands │ │ ├── acquire-project.ts │ │ ├── acquire.ts │ │ ├── activate.ts │ │ ├── add.ts │ │ ├── cache.ts │ │ ├── clean.ts │ │ ├── deactivate.ts │ │ ├── delete.ts │ │ ├── find.ts │ │ ├── generate-msbuild-props.ts │ │ ├── regenerate-index.ts │ │ ├── remove.ts │ │ ├── update.ts │ │ └── use.ts │ ├── console-table.ts │ ├── constants.ts │ ├── format.ts │ ├── project.ts │ ├── styling.ts │ ├── switch.ts │ └── switches │ │ ├── all.ts │ │ ├── clear.ts │ │ ├── debug.ts │ │ ├── force.ts │ │ ├── installed.ts │ │ ├── json.ts │ │ ├── msbuild-props.ts │ │ ├── normalize.ts │ │ ├── project.ts │ │ └── version.ts ├── constants.ts ├── eslint.config.mjs ├── exports.ts ├── fs │ ├── acquire.ts │ ├── filesystem.ts │ ├── http-filesystem.ts │ ├── local-filesystem.ts │ ├── streams.ts │ ├── unified-filesystem.ts │ └── vsix-local-filesystem.ts ├── header.txt ├── i18n.ts ├── installers │ ├── espidf.ts │ ├── git.ts │ ├── nuget.ts │ ├── untar.ts │ ├── unzip.ts │ └── util.ts ├── interfaces │ ├── collections.ts │ ├── error-kind.ts │ ├── events.ts │ ├── metadata │ │ ├── contact.ts │ │ ├── demands.ts │ │ ├── exports.ts │ │ ├── installers │ │ │ ├── Installer.ts │ │ │ ├── git.ts │ │ │ ├── nupkg.ts │ │ │ ├── tar.ts │ │ │ ├── unpack-settings.ts │ │ │ ├── verifiable.ts │ │ │ └── zip.ts │ │ └── version-reference.ts │ ├── validation-message.ts │ └── validation.ts ├── locales │ └── messages.json ├── main.ts ├── mediaquery │ ├── character-codes.ts │ ├── media-query.ts │ └── scanner.ts ├── package-lock.json ├── package.json ├── registries │ ├── ArtifactRegistry.ts │ ├── LocalRegistry.ts │ ├── RemoteRegistry.ts │ ├── artifact-index.ts │ ├── indexer.ts │ └── registries.ts ├── session.ts ├── test-resources │ ├── cmake.json │ ├── empty.json │ ├── errors.json │ ├── example-artifact.json │ ├── example-before-2022-06-17-artifact.json │ ├── large-file.txt │ ├── repo │ │ ├── compilers │ │ │ └── gnu │ │ │ │ ├── gcc-arm-none-eabi-2019.04.0.json │ │ │ │ ├── gcc-arm-none-eabi-2019.10.0.json │ │ │ │ └── gcc-arm-none-eabi-2020-10.0.json │ │ ├── sdks │ │ │ └── microsoft │ │ │ │ ├── windows.arm.json │ │ │ │ ├── windows.arm64.json │ │ │ │ ├── windows.json │ │ │ │ ├── windows.x64.json │ │ │ │ └── windows.x86.json │ │ └── tools │ │ │ └── kitware │ │ │ ├── cmake-3.15.0.json │ │ │ ├── cmake-3.15.1.json │ │ │ ├── cmake-3.17.0.json │ │ │ ├── cmake-3.19.0.json │ │ │ └── cmake-3.20.0.json │ ├── sample1.json │ ├── small-file.txt │ ├── topo-sort-registry │ │ ├── alpha.json │ │ ├── bravo.json │ │ ├── charlie.json │ │ ├── delta.json │ │ ├── echo.json │ │ └── foxtrot.json │ ├── validation-errors.json │ ├── vcpkg-ce-catalog-2ffbc04d6856a1d03c5de0ab94404f90636f7855 │ │ ├── compilers │ │ │ └── arm │ │ │ │ └── gcc │ │ │ │ └── gcc-2020.10.0.json │ │ ├── index.yaml │ │ └── tools │ │ │ ├── arduino │ │ │ ├── arduino-cli-0.18.3.json │ │ │ └── arduino-ide-1.18.15.json │ │ │ ├── compuphase │ │ │ └── termite-3.4.0.json │ │ │ ├── kitware │ │ │ └── cmake-3.20.1.json │ │ │ ├── microsoft │ │ │ ├── openocd-0.11.0-ms1.json │ │ │ └── openocd-0.11.0.json │ │ │ ├── ninja-build │ │ │ └── ninja-1.10.2.json │ │ │ └── raspberrypi │ │ │ └── pico-sdk-1.3.0.json │ └── vcpkg-ce-catalog-d471612be63b2fb506ab5f47122da460f5aa4d30 │ │ ├── compilers │ │ └── arm │ │ │ └── gcc │ │ │ └── gcc-2020.10.0.json │ │ ├── index.yaml │ │ └── tools │ │ ├── arduino │ │ ├── arduino-cli-0.18.3.json │ │ └── arduino-ide-1.18.15.json │ │ ├── compuphase │ │ └── termite-3.4.0.json │ │ ├── kitware │ │ └── cmake-3.20.1.json │ │ ├── microsoft │ │ ├── openocd-0.11.0-ms1.json │ │ └── openocd-0.11.0.json │ │ ├── ninja-build │ │ └── ninja-1.10.2.json │ │ └── raspberrypi │ │ └── pico-sdk-1.3.0.json ├── test │ ├── core │ │ ├── SuiteLocal.ts │ │ ├── amf-tests.ts │ │ ├── dependency-resolver-tests.ts │ │ ├── index-tests.ts │ │ ├── linq-tests.ts │ │ ├── local-file-system-tests.ts │ │ ├── media-query-tests.ts │ │ ├── msbuild-tests.ts │ │ ├── registry-resolver-tests.ts │ │ ├── regression-tests.ts │ │ ├── sample-tests.ts │ │ ├── stream-tests.ts │ │ ├── uniqueTempFolder.ts │ │ ├── uri-tests.ts │ │ └── util │ │ │ ├── curly-replacements-tests.ts │ │ │ └── percentage-scaler-tests.ts │ └── sequence-equal.ts ├── tsconfig.json ├── util │ ├── channels.ts │ ├── checks.ts │ ├── curly-replacements.ts │ ├── exceptions.ts │ ├── exec-cmd.ts │ ├── hash.ts │ ├── intersect.ts │ ├── linq.ts │ ├── manual-promise.ts │ ├── percentage-scaler.ts │ ├── promise.ts │ ├── text.ts │ └── uri.ts ├── vcpkg.ts └── yaml │ ├── BaseMap.ts │ ├── Coerce.ts │ ├── CustomScalarMap.ts │ ├── Entity.ts │ ├── EntityMap.ts │ ├── EntitySequence.ts │ ├── Options.ts │ ├── ScalarMap.ts │ ├── ScalarSequence.ts │ ├── strings.ts │ ├── yaml-types.ts │ └── yaml.ts ├── vcpkg-init ├── lock-versions.ps1 ├── mint-standalone-bundle.ps1 ├── update-scripts-sha.ps1 ├── vcpkg-cmd.cmd ├── vcpkg-init ├── vcpkg-init.ps1 └── vcpkg-scripts-sha.txt └── vcpkg.natvis /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.clang-format -------------------------------------------------------------------------------- /.config/1espt/PipelineAutobaseliningConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.config/1espt/PipelineAutobaseliningConfig.yml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/matchers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.github/workflows/matchers.json -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Generate-SpdxLicenseList.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/Generate-SpdxLicenseList.ps1 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LocProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/LocProject.json -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/VERSION.txt -------------------------------------------------------------------------------- /azure-pipelines/Create-PRDiff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/Create-PRDiff.ps1 -------------------------------------------------------------------------------- /azure-pipelines/Format-CxxCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/Format-CxxCode.ps1 -------------------------------------------------------------------------------- /azure-pipelines/arch-independent-signing.signproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/arch-independent-signing.signproj -------------------------------------------------------------------------------- /azure-pipelines/binary-signing.signproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/binary-signing.signproj -------------------------------------------------------------------------------- /azure-pipelines/e2e-artifacts-registry/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-artifacts-registry/index.yaml -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/asset-caching/failing-script.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Script download error" 2 | exit 1 3 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/asset-caching/no-file-script.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Not creating a file" 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-feature-baseline/empty-baseline.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-feature-baseline/vcpkg-mutually-incompatible-features-ac-only.txt: -------------------------------------------------------------------------------- 1 | vcpkg-mutually-incompatible-features[core,a,c] = options 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-feature-baseline/vcpkg-mutually-incompatible-features-bd-only.txt: -------------------------------------------------------------------------------- 1 | vcpkg-mutually-incompatible-features[core,b,d] = options 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-skipped-features/skipped-depends/portfile.cmake: -------------------------------------------------------------------------------- 1 | message(FATAL_ERROR "This port is skipped and should not be attempted.") 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-skipped-ports/always-built/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-skipped-ports/baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-assets/ci-skipped-ports/baseline.txt -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/old-port-versions/bad-git-tree-1.0/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/old-port-versions/bad-history-name-1.0/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/old-port-versions/baseline-version-mismatch-1.0/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/old-port-versions/has-local-edits/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/old-port-versions/malformed-1.0/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/old-port-versions/mismatch-git-tree-1.0/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/old-port-versions/version-mismatch-1.0/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/old-port-versions/version-missing-1.0/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/old-port-versions/version-scheme-mismatch-1.0/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/bad-git-tree/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/bad-history-name/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/baseline-version-mismatch/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/baseline-version-missing/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/dependency-not-in-versions-database-feature/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/dependency-not-in-versions-database/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/dependency-version-not-in-versions-database/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/executable-bit/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/executable-bit/some-script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo 'Hello World!' 3 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/good/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/malformed/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/mismatch-git-tree/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/no-versions/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/override-not-in-versions-database/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/override-version-not-in-versions-database/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/version-mismatch/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/version-missing/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci-verify-versions-registry/ports/version-scheme-mismatch/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci/ci.baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-assets/ci/ci.baseline.txt -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/ci/ci.pass.baseline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-assets/ci/ci.pass.baseline.txt -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/fetch/ninja.bat: -------------------------------------------------------------------------------- 1 | @echo 0.0.0 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/format-manifest/empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/format-manifest/expected/empty.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/format-manifest/expected/name.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hello" 3 | } 4 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/format-manifest/expected/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.2" 3 | } 4 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/format-manifest/name.json: -------------------------------------------------------------------------------- 1 | {"name":"hello"} 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/format-manifest/version.json: -------------------------------------------------------------------------------- 1 | {"version":"1.2"} 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/test-dll-port-template/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-assets/test-dll-port-template/test.c -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/test-dll-port-template/test.def: -------------------------------------------------------------------------------- 1 | LIBRARY test_dll 2 | 3 | EXPORTS 4 | export_me 5 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/test-dll-port-template/test.h: -------------------------------------------------------------------------------- 1 | // empty test header 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/test-exe-port-template/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-assets/test-exe-port-template/test.c -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/test-lib-port-template-dynamic-crt-release-only/test.h: -------------------------------------------------------------------------------- 1 | int __cdecl test_fn(); 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-assets/test-lib-port-template-dynamic-crt/test.h: -------------------------------------------------------------------------------- 1 | // empty test header 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/a-conflict/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/a-conflict/portfile.cmake -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/a-conflict/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/a-conflict/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/absolute-paths/hash.in: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | test="${CURRENT_INSTALLED_DIR}" 4 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/absolute-paths/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/absolute-paths/portfile.cmake -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/absolute-paths/source.h.in: -------------------------------------------------------------------------------- 1 | 2 | char * test2 = R"--(/* 3 | 4 | // ${CURRENT_INSTALLED_DIR} */ 5 | )--"; 6 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/absolute-paths/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/absolute-paths/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/b-conflict/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/b-conflict/portfile.cmake -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/b-conflict/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/b-conflict/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-manifests/broken-duplicate-overrides/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-manifests/broken-no-name/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-manifests/broken-no-name/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0" 3 | } 4 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-manifests/broken-no-version/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-manifests/broken-no-version/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hello" 3 | } 4 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-manifests/malformed/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-symlink/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/broken-symlink/portfile.cmake -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-symlink/src/hello-broken-symlink.h: -------------------------------------------------------------------------------- 1 | extern "C" void hello_symlink_earth(); 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-symlink/src/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/broken-symlink/src/hello.cpp -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-symlink/src/hello.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/broken-symlink/src/hello.def -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/broken-symlink/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/broken-symlink/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/ci/base-port/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/ci/base-port/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/ci/base-port/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/ci/dep-on-feature-not-sup/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/ci/feature-dep-missing/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/ci/feature-not-sup/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/ci/feature-not-sup/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/ci/feature-not-sup/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/ci/not-sup-host-b/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/ci/not-sup-host-b/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/ci/not-sup-host-b/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/classic-versions-a/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/classic-versions-a/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/classic-versions-a/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/classic-versions-b/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/classic-versions-b/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/control-file/CONTROL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/control-file/CONTROL -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/control-file/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/duplicate-file-a/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/duplicate-file-a/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/duplicate-file-b/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/duplicate-file-b/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/hash-additional-fail/additional_abi_file.txt: -------------------------------------------------------------------------------- 1 | Just for testing! -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/hash-additional/additional_abi_file.txt: -------------------------------------------------------------------------------- 1 | Just for testing! -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/integrate-install/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/integrate-install/Source.cpp -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/integrate-install/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/integrate-install/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/llvm-lto-lib/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/llvm-lto-lib/portfile.cmake -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/llvm-lto-lib/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/llvm-lto-lib/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/mismatched-version-database/vcpkg_registry/ports/arrow/portfile.cmake: -------------------------------------------------------------------------------- 1 | // intentionally empty 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/mismatched-version-database/vcpkg_registry/ports/bloom-filter/portfile.cmake: -------------------------------------------------------------------------------- 1 | // intentionally empty 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/post-portfile-includes-fail/invalid.extension: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/post-portfile-includes-fail/vcpkg-post-portfile-includes/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/post-portfile-includes/test1.cmake: -------------------------------------------------------------------------------- 1 | # Just a random comment 2 | set(VCPKG_POST_INCLUDE_CHECK_TEST2 ON) 3 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/tool-control/CONTROL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/tool-control/CONTROL -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/tool-control/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/tool-liba/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/tool-liba/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/tool-liba/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/tool-libb/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/tool-libb/portfile.cmake -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/tool-libb/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/tool-libb/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/tool-manifest/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/tool-manifest/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/tool-manifest/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-bad-spdx-license/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-cmake-config-many-targets/src/many-targets.def: -------------------------------------------------------------------------------- 1 | LIBRARY many-targets 2 | 3 | EXPORTS 4 | 5 | hello_earth 6 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-cmake-config-many-targets/src/many-targets.h: -------------------------------------------------------------------------------- 1 | extern "C" void hello_earth(); 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-depends-on-fail-core/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-depends-on-fail-feature/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-depends-on-fail/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-empty-featureful-port/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-empty-port/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-empty-port/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-empty-port/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-fail-feature-cascades/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | message(FATAL_ERROR "This port does not build") 3 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-header-only/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-header-only/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-hello-world-1/src/hello-1.h: -------------------------------------------------------------------------------- 1 | extern "C" void hello_earth(); 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-hello-world-1/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-hello-world-1/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-hello-world-2/src/hello-2.h: -------------------------------------------------------------------------------- 1 | void hello_mars(); 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-hello-world-2/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-hello-world-2/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-internal-e2e-test-port2/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-internal-e2e-test-port3/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-license-apache-and-boost/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-license-bsd-on-mit/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-license-bsd/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-license-bsd/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-license-bsd/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-license-features/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-license-mit/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-license-mit/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-license-mit/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-license-null/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-license-null/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-license-null/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-msvc-2013/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-msvc-2013/build.cmd -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-msvc-2013/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-msvc-2013/portfile.cmake -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-msvc-2013/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-msvc-2013/test.c -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-msvc-2013/test.def: -------------------------------------------------------------------------------- 1 | LIBRARY test_dll 2 | 3 | EXPORTS 4 | export_me 5 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-msvc-2013/test.h: -------------------------------------------------------------------------------- 1 | // empty test header 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-msvc-2013/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-msvc-2013/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-native-dependency/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-never-builds/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-never-builds/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-policy-empty-package/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-policy-forgot-usage/usage: -------------------------------------------------------------------------------- 1 | usage text one forgot to install 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-policy-set-incorrectly/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE ON) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-policy-skip-all-post-build-checks/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_SKIP_ALL_POST_BUILD_CHECKS enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-self-cascade/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-self-cascade/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-self-cascade/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-test-x-script/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-test-x-script/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-touch-missing-dependency/vcpkg-port-config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_touch.cmake") 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-touch/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-touch/portfile.cmake -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-touch/vcpkg-port-config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/vcpkg_touch.cmake") 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-touch/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-touch/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-uses-touch/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/vcpkg-uses-touch/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/vcpkg-uses-vcpkg-common-functions/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | 3 | include(vcpkg_common_functions) 4 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/ports-incomplete/cat/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/ports-incomplete/dog/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/ports-incomplete/duck/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/ports-incomplete/ferret/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/ports-incomplete/fish/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/ports-incomplete/mouse/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/ports/cat/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/ports/dog/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/ports/duck/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/ports/mouse/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/transitive-constraints/ports/overlay-zlib/portfile.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/version-files/transitive-constraints/ports/overlay/portfile.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-ports/wrong-pkgconfig/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-ports/wrong-pkgconfig/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/applocal/basic/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-projects/applocal/basic/build.bat -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/applocal/basic/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-projects/applocal/basic/main.cpp -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/applocal/static-lib/static-lib.cpp: -------------------------------------------------------------------------------- 1 | int use_from_static_lib() { return 42; } 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-bad-paths/env-overlays/vcpkg-empty-port/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-bad-paths/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [ 3 | "vcpkg-empty-port" 4 | ] 5 | } -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-dot/vcpkg-configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "overlay-ports": [ "." ] 3 | } 4 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-dot/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [ 3 | "a" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-malformed-shadowing-builtin/config-overlays/a/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-malformed-shadowing-builtin/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [ 3 | "a" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-malformed-shadowing/config-overlays/a/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-malformed-shadowing/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [ 3 | "a" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-not-quite-dot/vcpkg-configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "overlay-ports": [ "./hello/.." ] 3 | } 4 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-not-quite-dot/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [ 3 | "a" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-project-config-embedded/cli-overlays/another-vcpkg-empty-port/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-project-config-embedded/env-overlays/vcpkg-empty-port/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-project-with-config/cli-overlays/another-vcpkg-empty-port/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-project-with-config/env-overlays/vcpkg-empty-port/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-projects/overlays-vcpkg-empty-port/vcpkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": [ 3 | "vcpkg-empty-port" 4 | ] 5 | } -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/extra-ports/foo/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/ports/bar/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/ports/bar/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-registry/ports/bar/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/ports/baz/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/ports/baz/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-registry/ports/baz/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/ports/foo/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/ports/foo/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-registry/ports/foo/vcpkg.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/removed-ports/removed/portfile.cmake: -------------------------------------------------------------------------------- 1 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) 2 | -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/versions/b-/bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-registry/versions/b-/bar.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/versions/b-/baz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-registry/versions/b-/baz.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/versions/baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-registry/versions/baseline.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/versions/f-/foo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-registry/versions/f-/foo.json -------------------------------------------------------------------------------- /azure-pipelines/e2e-registry/versions/r-/removed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/e2e-registry/versions/r-/removed.json -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/add.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/add.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/artifacts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/artifacts.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/bundles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/bundles.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/ci.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/ci.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/cli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/cli.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/create.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/create.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/e2e-registry.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/e2e-registry.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/edit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/edit.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/env-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/env-tools.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/fetch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/fetch.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/keep-going.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/keep-going.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/manifests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/manifests.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/new.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/new.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/overlays.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/overlays.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/registries.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/registries.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/spaces.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/spaces.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/tool-ports.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/tool-ports.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/upgrade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/upgrade.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/usage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/usage.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/vcpkg-root.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/vcpkg-root.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-dir/versions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-dir/versions.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests-prelude.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests-prelude.ps1 -------------------------------------------------------------------------------- /azure-pipelines/end-to-end-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/end-to-end-tests.ps1 -------------------------------------------------------------------------------- /azure-pipelines/json-schema-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/json-schema-tests.ps1 -------------------------------------------------------------------------------- /azure-pipelines/localization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/localization.yml -------------------------------------------------------------------------------- /azure-pipelines/nuget-package.signproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/nuget-package.signproj -------------------------------------------------------------------------------- /azure-pipelines/overlay-triplets/x64-linux-e2e.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/overlay-triplets/x64-linux-e2e.cmake -------------------------------------------------------------------------------- /azure-pipelines/overlay-triplets/x64-osx-e2e.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/overlay-triplets/x64-osx-e2e.cmake -------------------------------------------------------------------------------- /azure-pipelines/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/packages.config -------------------------------------------------------------------------------- /azure-pipelines/signing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/signing.yml -------------------------------------------------------------------------------- /azure-pipelines/vcpkg-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/vcpkg-alpine/Dockerfile -------------------------------------------------------------------------------- /azure-pipelines/vcpkg-arm64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/vcpkg-arm64/Dockerfile -------------------------------------------------------------------------------- /azure-pipelines/vcpkg-arm64/libstdcpp9-fix.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/vcpkg-arm64/libstdcpp9-fix.diff -------------------------------------------------------------------------------- /azure-pipelines/vcpkg-arm64/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/vcpkg-arm64/sources.list -------------------------------------------------------------------------------- /azure-pipelines/vcpkg-arm64/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/vcpkg-arm64/toolchain.cmake -------------------------------------------------------------------------------- /azure-pipelines/vcpkg-linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/vcpkg-linux/Dockerfile -------------------------------------------------------------------------------- /azure-pipelines/vcpkg-linux/libstdcpp9-fix.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/vcpkg-linux/libstdcpp9-fix.diff -------------------------------------------------------------------------------- /azure-pipelines/vcpkg-linux/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/vcpkg-linux/sources.list -------------------------------------------------------------------------------- /azure-pipelines/vcpkg-linux/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/vcpkg-linux/toolchain.cmake -------------------------------------------------------------------------------- /azure-pipelines/vs-insertion/vcpkg.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/azure-pipelines/vs-insertion/vcpkg.nuspec -------------------------------------------------------------------------------- /cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/cgmanifest.json -------------------------------------------------------------------------------- /cmake/CMakeRC_cmake_4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/cmake/CMakeRC_cmake_4.patch -------------------------------------------------------------------------------- /cmake/FindCMakeRC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/cmake/FindCMakeRC.cmake -------------------------------------------------------------------------------- /cmake/Findfmt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/cmake/Findfmt.cmake -------------------------------------------------------------------------------- /cmake/utilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/cmake/utilities.cmake -------------------------------------------------------------------------------- /docs/artifact.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/artifact.schema.json -------------------------------------------------------------------------------- /docs/benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/benchmarking.md -------------------------------------------------------------------------------- /docs/command-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/command-guidelines.md -------------------------------------------------------------------------------- /docs/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/layout.md -------------------------------------------------------------------------------- /docs/localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/localization.md -------------------------------------------------------------------------------- /docs/manifest-info.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/manifest-info.schema.json -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/validating-json-schemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/validating-json-schemas.md -------------------------------------------------------------------------------- /docs/vcpkg-configuration.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/vcpkg-configuration.schema.json -------------------------------------------------------------------------------- /docs/vcpkg-schema-definitions.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/vcpkg-schema-definitions.schema.json -------------------------------------------------------------------------------- /docs/vcpkg-tools.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/vcpkg-tools.schema.json -------------------------------------------------------------------------------- /docs/vcpkg.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/vcpkg.schema.json -------------------------------------------------------------------------------- /docs/vcpkg_registry_release_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/vcpkg_registry_release_process.md -------------------------------------------------------------------------------- /docs/vcpkg_tool_release_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/docs/vcpkg_tool_release_process.md -------------------------------------------------------------------------------- /include/catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/catch2/catch.hpp -------------------------------------------------------------------------------- /include/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/pch.h -------------------------------------------------------------------------------- /include/vcpkg-test/mockcmakevarprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg-test/mockcmakevarprovider.h -------------------------------------------------------------------------------- /include/vcpkg-test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg-test/util.h -------------------------------------------------------------------------------- /include/vcpkg/archives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/archives.h -------------------------------------------------------------------------------- /include/vcpkg/base/api-stable-format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/api-stable-format.h -------------------------------------------------------------------------------- /include/vcpkg/base/background-work-queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/background-work-queue.h -------------------------------------------------------------------------------- /include/vcpkg/base/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/cache.h -------------------------------------------------------------------------------- /include/vcpkg/base/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/checks.h -------------------------------------------------------------------------------- /include/vcpkg/base/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/chrono.h -------------------------------------------------------------------------------- /include/vcpkg/base/cmd-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/cmd-parser.h -------------------------------------------------------------------------------- /include/vcpkg/base/cofffilereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/cofffilereader.h -------------------------------------------------------------------------------- /include/vcpkg/base/contractual-constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/contractual-constants.h -------------------------------------------------------------------------------- /include/vcpkg/base/delayed-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/delayed-init.h -------------------------------------------------------------------------------- /include/vcpkg/base/diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/diagnostics.h -------------------------------------------------------------------------------- /include/vcpkg/base/downloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/downloads.h -------------------------------------------------------------------------------- /include/vcpkg/base/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/enums.h -------------------------------------------------------------------------------- /include/vcpkg/base/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/expected.h -------------------------------------------------------------------------------- /include/vcpkg/base/file-contents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/file-contents.h -------------------------------------------------------------------------------- /include/vcpkg/base/file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/file_sink.h -------------------------------------------------------------------------------- /include/vcpkg/base/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/files.h -------------------------------------------------------------------------------- /include/vcpkg/base/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fmt.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/cmd-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/cmd-parser.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/cofffilereader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/cofffilereader.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/diagnostics.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/downloads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/downloads.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/expected.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/file-contents.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace vcpkg 4 | { 5 | struct FileContents; 6 | } -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/files.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/fmt.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/git.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/git.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/graphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/graphs.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/json.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/message_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/message_sinks.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/messages.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/optional.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/parse.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/span.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/stringview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/stringview.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/system.h -------------------------------------------------------------------------------- /include/vcpkg/base/fwd/system.process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/fwd/system.process.h -------------------------------------------------------------------------------- /include/vcpkg/base/git.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/git.h -------------------------------------------------------------------------------- /include/vcpkg/base/graphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/graphs.h -------------------------------------------------------------------------------- /include/vcpkg/base/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/hash.h -------------------------------------------------------------------------------- /include/vcpkg/base/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/json.h -------------------------------------------------------------------------------- /include/vcpkg/base/jsonreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/jsonreader.h -------------------------------------------------------------------------------- /include/vcpkg/base/lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/lazy.h -------------------------------------------------------------------------------- /include/vcpkg/base/lineinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/lineinfo.h -------------------------------------------------------------------------------- /include/vcpkg/base/message-args.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/message-args.inc.h -------------------------------------------------------------------------------- /include/vcpkg/base/message-data.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/message-data.inc.h -------------------------------------------------------------------------------- /include/vcpkg/base/message_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/message_sinks.h -------------------------------------------------------------------------------- /include/vcpkg/base/messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/messages.h -------------------------------------------------------------------------------- /include/vcpkg/base/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/optional.h -------------------------------------------------------------------------------- /include/vcpkg/base/parallel-algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/parallel-algorithms.h -------------------------------------------------------------------------------- /include/vcpkg/base/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/parse.h -------------------------------------------------------------------------------- /include/vcpkg/base/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/path.h -------------------------------------------------------------------------------- /include/vcpkg/base/pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/pragmas.h -------------------------------------------------------------------------------- /include/vcpkg/base/setup-messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/setup-messages.h -------------------------------------------------------------------------------- /include/vcpkg/base/sortedvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/sortedvector.h -------------------------------------------------------------------------------- /include/vcpkg/base/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/span.h -------------------------------------------------------------------------------- /include/vcpkg/base/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/strings.h -------------------------------------------------------------------------------- /include/vcpkg/base/stringview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/stringview.h -------------------------------------------------------------------------------- /include/vcpkg/base/system-headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/system-headers.h -------------------------------------------------------------------------------- /include/vcpkg/base/system.debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/system.debug.h -------------------------------------------------------------------------------- /include/vcpkg/base/system.deviceid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/system.deviceid.h -------------------------------------------------------------------------------- /include/vcpkg/base/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/system.h -------------------------------------------------------------------------------- /include/vcpkg/base/system.mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/system.mac.h -------------------------------------------------------------------------------- /include/vcpkg/base/system.process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/system.process.h -------------------------------------------------------------------------------- /include/vcpkg/base/system.proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/system.proxy.h -------------------------------------------------------------------------------- /include/vcpkg/base/to-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/to-string.h -------------------------------------------------------------------------------- /include/vcpkg/base/uint128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/uint128.h -------------------------------------------------------------------------------- /include/vcpkg/base/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/unicode.h -------------------------------------------------------------------------------- /include/vcpkg/base/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/util.h -------------------------------------------------------------------------------- /include/vcpkg/base/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/uuid.h -------------------------------------------------------------------------------- /include/vcpkg/base/xmlserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/base/xmlserializer.h -------------------------------------------------------------------------------- /include/vcpkg/binarycaching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/binarycaching.h -------------------------------------------------------------------------------- /include/vcpkg/binarycaching.private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/binarycaching.private.h -------------------------------------------------------------------------------- /include/vcpkg/binaryparagraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/binaryparagraph.h -------------------------------------------------------------------------------- /include/vcpkg/buildenvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/buildenvironment.h -------------------------------------------------------------------------------- /include/vcpkg/bundlesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/bundlesettings.h -------------------------------------------------------------------------------- /include/vcpkg/cgroup-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/cgroup-parser.h -------------------------------------------------------------------------------- /include/vcpkg/ci-baseline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/ci-baseline.h -------------------------------------------------------------------------------- /include/vcpkg/ci-feature-baseline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/ci-feature-baseline.h -------------------------------------------------------------------------------- /include/vcpkg/cmakevars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/cmakevars.h -------------------------------------------------------------------------------- /include/vcpkg/commands.acquire-project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.acquire-project.h -------------------------------------------------------------------------------- /include/vcpkg/commands.acquire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.acquire.h -------------------------------------------------------------------------------- /include/vcpkg/commands.activate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.activate.h -------------------------------------------------------------------------------- /include/vcpkg/commands.add-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.add-version.h -------------------------------------------------------------------------------- /include/vcpkg/commands.add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.add.h -------------------------------------------------------------------------------- /include/vcpkg/commands.autocomplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.autocomplete.h -------------------------------------------------------------------------------- /include/vcpkg/commands.bootstrap-standalone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.bootstrap-standalone.h -------------------------------------------------------------------------------- /include/vcpkg/commands.build-external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.build-external.h -------------------------------------------------------------------------------- /include/vcpkg/commands.build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.build.h -------------------------------------------------------------------------------- /include/vcpkg/commands.check-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.check-support.h -------------------------------------------------------------------------------- /include/vcpkg/commands.ci-clean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.ci-clean.h -------------------------------------------------------------------------------- /include/vcpkg/commands.ci-verify-versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.ci-verify-versions.h -------------------------------------------------------------------------------- /include/vcpkg/commands.ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.ci.h -------------------------------------------------------------------------------- /include/vcpkg/commands.contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.contact.h -------------------------------------------------------------------------------- /include/vcpkg/commands.create.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.create.h -------------------------------------------------------------------------------- /include/vcpkg/commands.deactivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.deactivate.h -------------------------------------------------------------------------------- /include/vcpkg/commands.depend-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.depend-info.h -------------------------------------------------------------------------------- /include/vcpkg/commands.download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.download.h -------------------------------------------------------------------------------- /include/vcpkg/commands.edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.edit.h -------------------------------------------------------------------------------- /include/vcpkg/commands.env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.env.h -------------------------------------------------------------------------------- /include/vcpkg/commands.export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.export.h -------------------------------------------------------------------------------- /include/vcpkg/commands.fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.fetch.h -------------------------------------------------------------------------------- /include/vcpkg/commands.find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.find.h -------------------------------------------------------------------------------- /include/vcpkg/commands.format-feature-baselinet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.format-feature-baselinet.h -------------------------------------------------------------------------------- /include/vcpkg/commands.format-manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.format-manifest.h -------------------------------------------------------------------------------- /include/vcpkg/commands.generate-msbuild-props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.generate-msbuild-props.h -------------------------------------------------------------------------------- /include/vcpkg/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.h -------------------------------------------------------------------------------- /include/vcpkg/commands.hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.hash.h -------------------------------------------------------------------------------- /include/vcpkg/commands.help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.help.h -------------------------------------------------------------------------------- /include/vcpkg/commands.init-registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.init-registry.h -------------------------------------------------------------------------------- /include/vcpkg/commands.install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.install.h -------------------------------------------------------------------------------- /include/vcpkg/commands.integrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.integrate.h -------------------------------------------------------------------------------- /include/vcpkg/commands.license-report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.license-report.h -------------------------------------------------------------------------------- /include/vcpkg/commands.list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.list.h -------------------------------------------------------------------------------- /include/vcpkg/commands.new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.new.h -------------------------------------------------------------------------------- /include/vcpkg/commands.owns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.owns.h -------------------------------------------------------------------------------- /include/vcpkg/commands.package-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.package-info.h -------------------------------------------------------------------------------- /include/vcpkg/commands.portsdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.portsdiff.h -------------------------------------------------------------------------------- /include/vcpkg/commands.regenerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.regenerate.h -------------------------------------------------------------------------------- /include/vcpkg/commands.remove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.remove.h -------------------------------------------------------------------------------- /include/vcpkg/commands.search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.search.h -------------------------------------------------------------------------------- /include/vcpkg/commands.set-installed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.set-installed.h -------------------------------------------------------------------------------- /include/vcpkg/commands.test-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.test-features.h -------------------------------------------------------------------------------- /include/vcpkg/commands.update-baseline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.update-baseline.h -------------------------------------------------------------------------------- /include/vcpkg/commands.update-registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.update-registry.h -------------------------------------------------------------------------------- /include/vcpkg/commands.update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.update.h -------------------------------------------------------------------------------- /include/vcpkg/commands.upgrade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.upgrade.h -------------------------------------------------------------------------------- /include/vcpkg/commands.use.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.use.h -------------------------------------------------------------------------------- /include/vcpkg/commands.version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.version.h -------------------------------------------------------------------------------- /include/vcpkg/commands.vsinstances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.vsinstances.h -------------------------------------------------------------------------------- /include/vcpkg/commands.z-applocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.z-applocal.h -------------------------------------------------------------------------------- /include/vcpkg/commands.z-ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.z-ce.h -------------------------------------------------------------------------------- /include/vcpkg/commands.z-changelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.z-changelog.h -------------------------------------------------------------------------------- /include/vcpkg/commands.z-check-tools-sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.z-check-tools-sha.h -------------------------------------------------------------------------------- /include/vcpkg/commands.z-extract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.z-extract.h -------------------------------------------------------------------------------- /include/vcpkg/commands.z-generate-message-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.z-generate-message-map.h -------------------------------------------------------------------------------- /include/vcpkg/commands.z-preregister-telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.z-preregister-telemetry.h -------------------------------------------------------------------------------- /include/vcpkg/commands.z-print-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.z-print-config.h -------------------------------------------------------------------------------- /include/vcpkg/commands.z-upload-metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/commands.z-upload-metrics.h -------------------------------------------------------------------------------- /include/vcpkg/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/configuration.h -------------------------------------------------------------------------------- /include/vcpkg/configure-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/configure-environment.h -------------------------------------------------------------------------------- /include/vcpkg/dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/dependencies.h -------------------------------------------------------------------------------- /include/vcpkg/documentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/documentation.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/binarycaching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/binarycaching.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/binaryparagraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/binaryparagraph.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/build.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/bundlesettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/bundlesettings.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/ci-baseline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/ci-baseline.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/cmakevars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/cmakevars.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/commands.install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/commands.install.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/configuration.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/dependencies.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/installedpaths.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace vcpkg 4 | { 5 | struct InstalledPaths; 6 | } 7 | -------------------------------------------------------------------------------- /include/vcpkg/fwd/packagespec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/packagespec.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/paragraphparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/paragraphparser.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/portfileprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/portfileprovider.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/registries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/registries.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/sourceparagraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/sourceparagraph.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/statusparagraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/statusparagraph.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/statusparagraphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/statusparagraphs.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/tools.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/triplet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/triplet.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/vcpkgcmdarguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/vcpkgcmdarguments.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/vcpkgpaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/vcpkgpaths.h -------------------------------------------------------------------------------- /include/vcpkg/fwd/versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/fwd/versions.h -------------------------------------------------------------------------------- /include/vcpkg/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/input.h -------------------------------------------------------------------------------- /include/vcpkg/installedpaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/installedpaths.h -------------------------------------------------------------------------------- /include/vcpkg/metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/metrics.h -------------------------------------------------------------------------------- /include/vcpkg/packagespec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/packagespec.h -------------------------------------------------------------------------------- /include/vcpkg/paragraphparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/paragraphparser.h -------------------------------------------------------------------------------- /include/vcpkg/paragraphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/paragraphs.h -------------------------------------------------------------------------------- /include/vcpkg/platform-expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/platform-expression.h -------------------------------------------------------------------------------- /include/vcpkg/portfileprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/portfileprovider.h -------------------------------------------------------------------------------- /include/vcpkg/postbuildlint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/postbuildlint.h -------------------------------------------------------------------------------- /include/vcpkg/registries-parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/registries-parsing.h -------------------------------------------------------------------------------- /include/vcpkg/registries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/registries.h -------------------------------------------------------------------------------- /include/vcpkg/sourceparagraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/sourceparagraph.h -------------------------------------------------------------------------------- /include/vcpkg/spdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/spdx.h -------------------------------------------------------------------------------- /include/vcpkg/statusparagraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/statusparagraph.h -------------------------------------------------------------------------------- /include/vcpkg/statusparagraphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/statusparagraphs.h -------------------------------------------------------------------------------- /include/vcpkg/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/tools.h -------------------------------------------------------------------------------- /include/vcpkg/tools.test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/tools.test.h -------------------------------------------------------------------------------- /include/vcpkg/triplet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/triplet.h -------------------------------------------------------------------------------- /include/vcpkg/vcpkgcmdarguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/vcpkgcmdarguments.h -------------------------------------------------------------------------------- /include/vcpkg/vcpkglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/vcpkglib.h -------------------------------------------------------------------------------- /include/vcpkg/vcpkgpaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/vcpkgpaths.h -------------------------------------------------------------------------------- /include/vcpkg/versiondeserializers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/versiondeserializers.h -------------------------------------------------------------------------------- /include/vcpkg/versions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/versions.h -------------------------------------------------------------------------------- /include/vcpkg/visualstudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/visualstudio.h -------------------------------------------------------------------------------- /include/vcpkg/xunitwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/include/vcpkg/xunitwriter.h -------------------------------------------------------------------------------- /locales/messages.cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.cs.json -------------------------------------------------------------------------------- /locales/messages.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.de.json -------------------------------------------------------------------------------- /locales/messages.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.es.json -------------------------------------------------------------------------------- /locales/messages.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.fr.json -------------------------------------------------------------------------------- /locales/messages.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.it.json -------------------------------------------------------------------------------- /locales/messages.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.ja.json -------------------------------------------------------------------------------- /locales/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.json -------------------------------------------------------------------------------- /locales/messages.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.ko.json -------------------------------------------------------------------------------- /locales/messages.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.pl.json -------------------------------------------------------------------------------- /locales/messages.pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.pt-BR.json -------------------------------------------------------------------------------- /locales/messages.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.ru.json -------------------------------------------------------------------------------- /locales/messages.tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.tr.json -------------------------------------------------------------------------------- /locales/messages.zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.zh-Hans.json -------------------------------------------------------------------------------- /locales/messages.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/locales/messages.zh-Hant.json -------------------------------------------------------------------------------- /scripts/addPoshVcpkgToPowershellProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/scripts/addPoshVcpkgToPowershellProfile.ps1 -------------------------------------------------------------------------------- /scripts/applocal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/scripts/applocal.ps1 -------------------------------------------------------------------------------- /scripts/posh-vcpkg.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/scripts/posh-vcpkg.psd1 -------------------------------------------------------------------------------- /scripts/posh-vcpkg.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/scripts/posh-vcpkg.psm1 -------------------------------------------------------------------------------- /scripts/verifyMessages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/scripts/verifyMessages.ps1 -------------------------------------------------------------------------------- /src/closes-exit-minus-one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/closes-exit-minus-one.c -------------------------------------------------------------------------------- /src/closes-stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/closes-stdin.c -------------------------------------------------------------------------------- /src/closes-stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/closes-stdout.c -------------------------------------------------------------------------------- /src/localization/cs/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/cs/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/de/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/de/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/es/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/es/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/fr/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/fr/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/it/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/it/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/ja/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/ja/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/ko/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/ko/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/pl/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/pl/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/pt-BR/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/pt-BR/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/ru/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/ru/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/tr/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/tr/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/zh-Hans/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/zh-Hans/messages.json.lcl -------------------------------------------------------------------------------- /src/localization/zh-Hant/messages.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/localization/zh-Hant/messages.json.lcl -------------------------------------------------------------------------------- /src/reads-stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/reads-stdin.c -------------------------------------------------------------------------------- /src/test-editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/test-editor.c -------------------------------------------------------------------------------- /src/test-script-asset-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/test-script-asset-cache.c -------------------------------------------------------------------------------- /src/tls12-download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/tls12-download.c -------------------------------------------------------------------------------- /src/vcpkg-fuzz/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-fuzz/main.cpp -------------------------------------------------------------------------------- /src/vcpkg-in-development.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-in-development.ps1 -------------------------------------------------------------------------------- /src/vcpkg-test/archives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/archives.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/arguments.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/binarycaching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/binarycaching.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/bundlesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/bundlesettings.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/cache.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/catch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/catch.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/cgroup-parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/cgroup-parser.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/chrono.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/ci-baseline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/ci-baseline.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/cmd-parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/cmd-parser.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/coffilereader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/coffilereader.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/commands.build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/commands.build.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/commands.dependinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/commands.dependinfo.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/commands.extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/commands.extract.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/commands.install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/commands.install.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/configmetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/configmetadata.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/configparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/configparser.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/dependencies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/dependencies.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/dependinfo-graphs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/dependinfo-graphs.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/downloads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/downloads.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/expected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/expected.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/export.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/files.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/git.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/git.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/hash.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/input.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/integrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/integrate.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/issue_body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/issue_body.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/json.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/large-json-document.json.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/large-json-document.json.inc -------------------------------------------------------------------------------- /src/vcpkg-test/manifests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/manifests.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/messages.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/metrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/metrics.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/mockcmakevarsprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/mockcmakevarsprovider.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/new.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/optional.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/paragraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/paragraph.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/plan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/plan.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/platform-expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/platform-expression.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/registries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/registries.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/spdx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/spdx.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/specifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/specifier.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/statusparagraphs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/statusparagraphs.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/strings.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/stringview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/stringview.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/system.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/system.mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/system.mac.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/system.process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/system.process.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/tools.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/uint128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/uint128.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/unicode.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/update.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/util-tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/util-tests.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/util.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/versionplan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/versionplan.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/versions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/versions.cpp -------------------------------------------------------------------------------- /src/vcpkg-test/xunitwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg-test/xunitwriter.cpp -------------------------------------------------------------------------------- /src/vcpkg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg.cpp -------------------------------------------------------------------------------- /src/vcpkg.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg.manifest -------------------------------------------------------------------------------- /src/vcpkg/archives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/archives.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/checks.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/chrono.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/chrono.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/cmd-parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/cmd-parser.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/cofffilereader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/cofffilereader.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/diagnostics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/diagnostics.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/downloads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/downloads.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/files.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/git.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/git.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/hash.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/json.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/message_sinks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/message_sinks.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/messages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/messages.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/parse.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/strings.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/stringview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/stringview.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/system.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/system.deviceid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/system.deviceid.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/system.mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/system.mac.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/system.process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/system.process.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/system.proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/system.proxy.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/uint128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/uint128.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/unicode.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/uuid.cpp -------------------------------------------------------------------------------- /src/vcpkg/base/xmlserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/base/xmlserializer.cpp -------------------------------------------------------------------------------- /src/vcpkg/binarycaching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/binarycaching.cpp -------------------------------------------------------------------------------- /src/vcpkg/binaryparagraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/binaryparagraph.cpp -------------------------------------------------------------------------------- /src/vcpkg/buildenvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/buildenvironment.cpp -------------------------------------------------------------------------------- /src/vcpkg/bundlesettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/bundlesettings.cpp -------------------------------------------------------------------------------- /src/vcpkg/cgroup-parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/cgroup-parser.cpp -------------------------------------------------------------------------------- /src/vcpkg/ci-baseline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/ci-baseline.cpp -------------------------------------------------------------------------------- /src/vcpkg/ci-feature-baseline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/ci-feature-baseline.cpp -------------------------------------------------------------------------------- /src/vcpkg/cmakevars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/cmakevars.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.acquire-project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.acquire-project.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.acquire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.acquire.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.activate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.activate.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.add-version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.add-version.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.add.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.autocomplete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.autocomplete.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.bootstrap-standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.bootstrap-standalone.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.build-external.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.build-external.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.build.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.check-support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.check-support.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.ci-clean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.ci-clean.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.ci-verify-versions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.ci-verify-versions.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.ci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.ci.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.contact.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.contact.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.create.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.deactivate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.deactivate.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.depend-info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.depend-info.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.download.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.edit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.edit.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.env.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.export.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.fetch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.fetch.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.find.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.format-feature-baseline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.format-feature-baseline.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.format-manifest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.format-manifest.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.generate-msbuild-props.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.generate-msbuild-props.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.hash.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.help.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.help.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.init-registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.init-registry.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.install.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.integrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.integrate.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.license-report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.license-report.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.list.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.new.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.owns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.owns.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.package-info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.package-info.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.portsdiff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.portsdiff.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.regenerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.regenerate.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.remove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.remove.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.search.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.set-installed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.set-installed.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.test-features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.test-features.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.update-baseline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.update-baseline.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.update-registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.update-registry.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.update.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.upgrade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.upgrade.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.use.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.use.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.version.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.vsinstances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.vsinstances.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.z-applocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.z-applocal.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.z-ce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.z-ce.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.z-changelog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.z-changelog.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.z-check-tools-sha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.z-check-tools-sha.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.z-extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.z-extract.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.z-generate-message-map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.z-generate-message-map.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.z-preregister-telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.z-preregister-telemetry.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.z-print-config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.z-print-config.cpp -------------------------------------------------------------------------------- /src/vcpkg/commands.z-upload-metrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/commands.z-upload-metrics.cpp -------------------------------------------------------------------------------- /src/vcpkg/configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/configuration.cpp -------------------------------------------------------------------------------- /src/vcpkg/configure-environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/configure-environment.cpp -------------------------------------------------------------------------------- /src/vcpkg/dependencies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/dependencies.cpp -------------------------------------------------------------------------------- /src/vcpkg/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/input.cpp -------------------------------------------------------------------------------- /src/vcpkg/metrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/metrics.cpp -------------------------------------------------------------------------------- /src/vcpkg/packagespec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/packagespec.cpp -------------------------------------------------------------------------------- /src/vcpkg/paragraphs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/paragraphs.cpp -------------------------------------------------------------------------------- /src/vcpkg/platform-expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/platform-expression.cpp -------------------------------------------------------------------------------- /src/vcpkg/portfileprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/portfileprovider.cpp -------------------------------------------------------------------------------- /src/vcpkg/postbuildlint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/postbuildlint.cpp -------------------------------------------------------------------------------- /src/vcpkg/registries.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/registries.cpp -------------------------------------------------------------------------------- /src/vcpkg/sourceparagraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/sourceparagraph.cpp -------------------------------------------------------------------------------- /src/vcpkg/spdx-exceptions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/spdx-exceptions.inc -------------------------------------------------------------------------------- /src/vcpkg/spdx-licenses.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/spdx-licenses.inc -------------------------------------------------------------------------------- /src/vcpkg/spdx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/spdx.cpp -------------------------------------------------------------------------------- /src/vcpkg/statusparagraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/statusparagraph.cpp -------------------------------------------------------------------------------- /src/vcpkg/statusparagraphs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/statusparagraphs.cpp -------------------------------------------------------------------------------- /src/vcpkg/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/tools.cpp -------------------------------------------------------------------------------- /src/vcpkg/triplet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/triplet.cpp -------------------------------------------------------------------------------- /src/vcpkg/vcpkgcmdarguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/vcpkgcmdarguments.cpp -------------------------------------------------------------------------------- /src/vcpkg/vcpkglib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/vcpkglib.cpp -------------------------------------------------------------------------------- /src/vcpkg/vcpkgpaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/vcpkgpaths.cpp -------------------------------------------------------------------------------- /src/vcpkg/versiondeserializers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/versiondeserializers.cpp -------------------------------------------------------------------------------- /src/vcpkg/versions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/versions.cpp -------------------------------------------------------------------------------- /src/vcpkg/visualstudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/visualstudio.cpp -------------------------------------------------------------------------------- /src/vcpkg/xunitwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/src/vcpkg/xunitwriter.cpp -------------------------------------------------------------------------------- /vcpkg-artifacts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* 2 | dist/* 3 | -------------------------------------------------------------------------------- /vcpkg-artifacts/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/.mocharc.json -------------------------------------------------------------------------------- /vcpkg-artifacts/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/.npmrc -------------------------------------------------------------------------------- /vcpkg-artifacts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/LICENSE -------------------------------------------------------------------------------- /vcpkg-artifacts/amf/Requires.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/amf/Requires.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/amf/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/amf/contact.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/amf/demands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/amf/demands.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/amf/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/amf/exports.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/amf/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/amf/info.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/amf/installer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/amf/installer.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/amf/metadata-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/amf/metadata-file.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/amf/registries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/amf/registries.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/amf/version-reference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/amf/version-reference.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/archivers/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/archivers/git.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/artifacts/SetOfDemands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/artifacts/SetOfDemands.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/artifacts/activation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/artifacts/activation.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/artifacts/artifact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/artifacts/artifact.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/argument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/argument.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/artifacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/artifacts.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/command-line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/command-line.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/command.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/acquire-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/acquire-project.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/acquire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/acquire.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/activate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/activate.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/add.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/cache.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/clean.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/deactivate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/deactivate.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/delete.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/find.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/find.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/regenerate-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/regenerate-index.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/remove.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/update.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/commands/use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/commands/use.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/console-table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/console-table.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/constants.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/format.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/project.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/styling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/styling.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switch.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switches/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switches/all.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switches/clear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switches/clear.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switches/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switches/debug.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switches/force.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switches/force.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switches/installed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switches/installed.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switches/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switches/json.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switches/msbuild-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switches/msbuild-props.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switches/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switches/normalize.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switches/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switches/project.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/cli/switches/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/cli/switches/version.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/constants.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/eslint.config.mjs -------------------------------------------------------------------------------- /vcpkg-artifacts/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/exports.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/fs/acquire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/fs/acquire.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/fs/filesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/fs/filesystem.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/fs/http-filesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/fs/http-filesystem.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/fs/local-filesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/fs/local-filesystem.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/fs/streams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/fs/streams.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/fs/unified-filesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/fs/unified-filesystem.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/fs/vsix-local-filesystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/fs/vsix-local-filesystem.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/header.txt -------------------------------------------------------------------------------- /vcpkg-artifacts/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/i18n.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/installers/espidf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/installers/espidf.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/installers/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/installers/git.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/installers/nuget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/installers/nuget.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/installers/untar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/installers/untar.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/installers/unzip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/installers/unzip.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/installers/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/installers/util.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/collections.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/error-kind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/error-kind.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/events.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/metadata/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/metadata/contact.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/metadata/demands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/metadata/demands.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/metadata/exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/metadata/exports.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/metadata/installers/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/metadata/installers/git.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/metadata/installers/tar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/metadata/installers/tar.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/metadata/installers/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/metadata/installers/zip.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/validation-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/validation-message.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/interfaces/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/interfaces/validation.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/locales/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/locales/messages.json -------------------------------------------------------------------------------- /vcpkg-artifacts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/main.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/mediaquery/character-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/mediaquery/character-codes.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/mediaquery/media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/mediaquery/media-query.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/mediaquery/scanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/mediaquery/scanner.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/package-lock.json -------------------------------------------------------------------------------- /vcpkg-artifacts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/package.json -------------------------------------------------------------------------------- /vcpkg-artifacts/registries/ArtifactRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/registries/ArtifactRegistry.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/registries/LocalRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/registries/LocalRegistry.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/registries/RemoteRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/registries/RemoteRegistry.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/registries/artifact-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/registries/artifact-index.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/registries/indexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/registries/indexer.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/registries/registries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/registries/registries.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/session.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test-resources/cmake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test-resources/cmake.json -------------------------------------------------------------------------------- /vcpkg-artifacts/test-resources/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcpkg-artifacts/test-resources/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test-resources/errors.json -------------------------------------------------------------------------------- /vcpkg-artifacts/test-resources/example-artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test-resources/example-artifact.json -------------------------------------------------------------------------------- /vcpkg-artifacts/test-resources/large-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test-resources/large-file.txt -------------------------------------------------------------------------------- /vcpkg-artifacts/test-resources/sample1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test-resources/sample1.json -------------------------------------------------------------------------------- /vcpkg-artifacts/test-resources/small-file.txt: -------------------------------------------------------------------------------- 1 | this is a small file. 2 | 3 | -------------------------------------------------------------------------------- /vcpkg-artifacts/test-resources/validation-errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test-resources/validation-errors.json -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/SuiteLocal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/SuiteLocal.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/amf-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/amf-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/index-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/index-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/linq-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/linq-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/local-file-system-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/local-file-system-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/media-query-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/media-query-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/msbuild-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/msbuild-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/registry-resolver-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/registry-resolver-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/regression-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/regression-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/sample-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/sample-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/stream-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/stream-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/uniqueTempFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/uniqueTempFolder.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/core/uri-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/core/uri-tests.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/test/sequence-equal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/test/sequence-equal.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/tsconfig.json -------------------------------------------------------------------------------- /vcpkg-artifacts/util/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/channels.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/checks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/checks.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/curly-replacements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/curly-replacements.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/exceptions.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/exec-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/exec-cmd.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/hash.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/intersect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/intersect.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/linq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/linq.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/manual-promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/manual-promise.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/percentage-scaler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/percentage-scaler.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/promise.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/text.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/util/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/util/uri.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/vcpkg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/vcpkg.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/BaseMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/BaseMap.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/Coerce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/Coerce.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/CustomScalarMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/CustomScalarMap.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/Entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/Entity.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/EntityMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/EntityMap.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/EntitySequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/EntitySequence.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/Options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/Options.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/ScalarMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/ScalarMap.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/ScalarSequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/ScalarSequence.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/strings.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/yaml-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/yaml-types.ts -------------------------------------------------------------------------------- /vcpkg-artifacts/yaml/yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-artifacts/yaml/yaml.ts -------------------------------------------------------------------------------- /vcpkg-init/lock-versions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-init/lock-versions.ps1 -------------------------------------------------------------------------------- /vcpkg-init/mint-standalone-bundle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-init/mint-standalone-bundle.ps1 -------------------------------------------------------------------------------- /vcpkg-init/update-scripts-sha.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-init/update-scripts-sha.ps1 -------------------------------------------------------------------------------- /vcpkg-init/vcpkg-cmd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-init/vcpkg-cmd.cmd -------------------------------------------------------------------------------- /vcpkg-init/vcpkg-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-init/vcpkg-init -------------------------------------------------------------------------------- /vcpkg-init/vcpkg-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg-init/vcpkg-init.ps1 -------------------------------------------------------------------------------- /vcpkg-init/vcpkg-scripts-sha.txt: -------------------------------------------------------------------------------- 1 | 3af1d1e60af2b2abf55760538cd607829029b07a 2 | -------------------------------------------------------------------------------- /vcpkg.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vcpkg-tool/HEAD/vcpkg.natvis --------------------------------------------------------------------------------