|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<!-- Read this before creating packages: https://chocolatey.org/docs/create-packages --> |
| 3 | +<!-- It is especially important to read the above link to understand additional requirements when publishing packages to the community feed aka dot org (https://chocolatey.org/packages). --> |
| 4 | + |
| 5 | +<!-- Test your packages in a test environment: https://github.com/chocolatey/chocolatey-test-environment --> |
| 6 | + |
| 7 | +<!-- |
| 8 | +This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Reference. Chocolatey uses a special version of NuGet.Core that allows us to do more than was initially possible. As such there are certain things to be aware of: |
| 9 | +
|
| 10 | +* the package xmlns schema url may cause issues with nuget.exe |
| 11 | +* Any of the following elements can ONLY be used by choco tools - projectSourceUrl, docsUrl, mailingListUrl, bugTrackerUrl, packageSourceUrl, provides, conflicts, replaces |
| 12 | +* nuget.exe can still install packages with those elements but they are ignored. Any authoring tools or commands will error on those elements |
| 13 | +--> |
| 14 | + |
| 15 | +<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. --> |
| 16 | +<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> |
| 17 | + <metadata> |
| 18 | + <!-- == PACKAGE SPECIFIC SECTION == --> |
| 19 | + <id>nvs</id> |
| 20 | + <version>1.4.2</version> |
| 21 | + <packageSourceUrl>https://github.com/jasongin/nvs</packageSourceUrl> |
| 22 | + <owners>jasongin molant</owners> |
| 23 | + <!-- ============================== --> |
| 24 | + |
| 25 | + <!-- == SOFTWARE SPECIFIC SECTION == --> |
| 26 | + <!-- This section is about the software itself --> |
| 27 | + <title>nvs</title> |
| 28 | + <authors>jasongin</authors> |
| 29 | + <projectUrl>https://github.com/jasongin/nvs</projectUrl> |
| 30 | + <!--<iconUrl>http://cdn.rawgit.com/__REPLACE_YOUR_REPO__/master/icons/nvs.png</iconUrl>--> |
| 31 | + <copyright>Microsoft 2018</copyright> |
| 32 | + <!-- If there is a license Url available, it is required for the community feed --> |
| 33 | + <licenseUrl>https://github.com/jasongin/nvs/blob/master/LICENSE.txt</licenseUrl> |
| 34 | + <requireLicenseAcceptance>true</requireLicenseAcceptance> |
| 35 | + <projectSourceUrl>https://github.com/jasongin/nvs</projectSourceUrl> |
| 36 | + <docsUrl>https://github.com/jasongin/nvs/tree/master/doc</docsUrl> |
| 37 | + <bugTrackerUrl>https://github.com/jasongin/nvs/issues</bugTrackerUrl> |
| 38 | + <tags>nvs nodejs node</tags> |
| 39 | + <summary>Node Version Switcher - A cross-platform tool for switching between versions and forks of Node.js </summary> |
| 40 | + <description>NVS is a cross-platform utility for switching between different versions and forks of [Node.js](http://nodejs.org/). NVS is itself written in node JavaScript. |
| 41 | +This tool is obviously inspired by other node version manager tools, especially [nvm](https://github.com/creationix/nvm), from which it borrows a lot of ideas and some command-line syntax.</description> |
| 42 | + </metadata> |
| 43 | + <files> |
| 44 | + <!-- this section controls what actually gets packaged into the Chocolatey package --> |
| 45 | + <file src="tools\**" target="tools" /> |
| 46 | + </files> |
| 47 | +</package> |
0 commit comments