-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVisualCppBuildTools.nuspec
43 lines (37 loc) · 2.55 KB
/
VisualCppBuildTools.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>VisualCppBuildTools</id>
<version>14.0.25420.1</version>
<title>Visual C++ Build Tools 2015</title>
<authors>Microsoft</authors>
<owners>Jivko Kolev, Kenneth Berntsen, Jordi Garcia</owners>
<licenseUrl>http://msdn.microsoft.com/en-US/cc300389.aspx</licenseUrl>
<projectUrl>https://www.visualstudio.com/downloads/download-visual-studio-vs</projectUrl>
<iconUrl>https://github.com/jivkok/Chocolatey-Packages/raw/master/VisualStudioCommon/VS2015.png</iconUrl>
<packageSourceUrl>https://github.com/KennethB/Chocolatey_VisualStudio2015/tree/master/VisualCppBuildTools</packageSourceUrl>
<docsUrl>https://msdn.microsoft.com/library</docsUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>### Overview
Visual C++ Build Tools 2015 provides the essential tools for building C++ applications and libraries targeting Windows desktop. If you want to build your C++ projects targeting Windows desktop without having Visual Studio installed on your computer, Visual C++ Build Tools 2015 provides the requisite C++ compilers, libraries, build scripts, and Windows SDKs.
### Customizations
You can customize the installation either by adding optional available features or by specifying own installation configuration file.
#### Adding optional features
Optional features (Phone tools, etc.) are available but not installed by default.
You can provide optional parameters to include them during the install.
Here is example that includes the Android and iOS build tools:
choco install VisualCppBuildTools -packageParameters "--Features Win81SDK_CppBuildSKUV1,Win10_EmulatorV1"
##### Available features: see AdminDeployment.xml
#### Using own configuration file
Specifying the optional features above modifies the configuration file used during installation (AdminDeployment.xml). If that is not enough you can provide this file on your own.
Example:
choco install VisualCppBuildTools -packageParameters "--AdminFile c:\path to your\AdminDeployment.xml"
choco install VisualCppBuildTools -packageParameters "--AdminFile http://path/to/your/AdminDeployment.xml"</description>
<summary>Build tools (compiler, SDKs, no IDE) from VS 2015</summary>
<tags>Microsoft Visual C++ Build Tools 2015 admin</tags>
<releaseNotes>- Updated to latest version with new logic including cheksum validation</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>