Skip to content

Instantly share code, notes, and snippets.

@tmori3y2
Last active April 7, 2016 10:54
Show Gist options
  • Save tmori3y2/cac0e4bc518431b4927e to your computer and use it in GitHub Desktop.
Save tmori3y2/cac0e4bc518431b4927e to your computer and use it in GitHub Desktop.
.nuspec template
<?xml version="1.0"?>
<package>
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>$author$</authors>
<owners>$author$</owners>
<licenseUrl>http://LICENSE_URL_HERE_OR_DELETE_THIS_LINE</licenseUrl>
<projectUrl>http://PROJECT_URL_HERE_OR_DELETE_THIS_LINE</projectUrl>
<iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<developmentDependency>false</developmentDependency>
<description>$description$</description>
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
<copyright>$copyright$</copyright>
<tags>Tag1 Tag2</tags>
<!--
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Windows.Interactivity" targetFramework="net45" />
</frameworkAssemblies>
-->
</metadata>
<!--
<files>
<file src="bin\Release\$id$.pdb" target="lib\portable-net45+win+wpa81+wp80" />
</files>
-->
</package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment