Merge pull request #1282 from github/map-nuspec-to-xml

Add .nuspec extension to XML
This commit is contained in:
Arfon Smith
2014-06-19 16:02:36 +01:00
2 changed files with 22 additions and 0 deletions

View File

@@ -2296,6 +2296,7 @@ XML:
- .launch
- .mxml
- .nproj
- .nuspec
- .osm
- .plist
- .pluginspec

21
samples/XML/sample.nuspec Normal file
View File

@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Sample</id>
<title>Sample</title>
<version>0.101.0</version>
<authors>Hugh Bot</authors>
<owners>Hugh Bot</owners>
<summary>A package of nuget</summary>
<description>
It just works
</description>
<projectUrl>http://hubot.github.com</projectUrl>
<copyright/>
<licenseUrl>https://github.com/github/hubot/LICENSEmd</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
</metadata>
<files>
<file src="tools\**" target="tools"/>
</files>
</package>