From 3738723dd22fcba69c3f16497d4696aee0f48b51 Mon Sep 17 00:00:00 2001 From: ras0219 <533828+ras0219@users.noreply.github.com> Date: Tue, 18 May 2021 23:15:29 -0700 Subject: Update versioning.getting-started.md (#18000) --- docs/examples/versioning.getting-started.md | 36 ----------------------------- 1 file changed, 36 deletions(-) (limited to 'docs') diff --git a/docs/examples/versioning.getting-started.md b/docs/examples/versioning.getting-started.md index e523af592..d723c2942 100644 --- a/docs/examples/versioning.getting-started.md +++ b/docs/examples/versioning.getting-started.md @@ -4,42 +4,6 @@ Vcpkg lets you take control of which version of packages to install in your projects using manifests. -## Enabling versions - -To start using [versioning](../users/versioning.md), first you need to enable the `versions` feature flag in any of the following manners: - -* Setting the `VCPKG_FEATURE_FLAGS` environment variable - -```PowerShell -# Example for PowerShell -$env:VCPKG_FEATURE_FLAGS="versions" -``` -```bash -# Example for bash -export VCPKG_FEATURE_FLAGS=versions -``` -```cmd -REM Example for cmd -SET VCPKG_FEATURE_FLAGS=versions -``` - -* Passing the feature flags in the vcpkg command line -```bash -./vcpkg install --feature-flags=versions -``` - -* Setting `VCPKG_FEATURE_FLAGS` before your `project()` CMake directive -```cmake -set(VCPKG_FEATURE_FLAGS versions) -project(myapp) -``` -* Setting `VcpkgAdditionalInstallOptions` (Project Properties -> Vcpkg -> Additional Options) in your MSBuild project -```xml - - --feature-flags=versions - -``` - ## Using versions with manifests With the `versions` feature flag enabled you can start adding version constraints to your dependencies. -- cgit v1.2.3