diff options
| author | ras0219 <533828+ras0219@users.noreply.github.com> | 2021-05-18 23:15:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-18 23:15:29 -0700 |
| commit | 3738723dd22fcba69c3f16497d4696aee0f48b51 (patch) | |
| tree | 3ba70c2f909aef89f725ea94f8673ddd632c060e /docs/examples | |
| parent | 5554e3f268e295392a68b60290ec12e924f08fa9 (diff) | |
| download | vcpkg-3738723dd22fcba69c3f16497d4696aee0f48b51.tar.gz vcpkg-3738723dd22fcba69c3f16497d4696aee0f48b51.zip | |
Update versioning.getting-started.md (#18000)
Diffstat (limited to 'docs/examples')
| -rw-r--r-- | docs/examples/versioning.getting-started.md | 36 |
1 files changed, 0 insertions, 36 deletions
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
-<PropertyGroup>
- <VcpkgAdditionalInstallOptions>--feature-flags=versions</VcpkgAdditionalInstallOptions>
-</PropertyGroup>
-```
-
## Using versions with manifests
With the `versions` feature flag enabled you can start adding version constraints to your dependencies.
|
