Skip to content

Instantly share code, notes, and snippets.

@Gimly
Created November 13, 2015 14:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gimly/5f6b1b8f9c2e29655c20 to your computer and use it in GitHub Desktop.
Save Gimly/5f6b1b8f9c2e29655c20 to your computer and use it in GitHub Desktop.
A nuspec file that can be used to generate nuget packages used for Squirrel.Windows
<?xml version="1.0"?>
<package >
<metadata>
<id>ApplicationId</id>
<version>$version$</version>
<authors>Your company name</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Your application description.</description>
<copyright>Copyright 2015</copyright>
</metadata>
<files>
<file src="MyApp\bin\Release\*.dll" target="lib\net45" />
<file src="MyApp\bin\Release\*.exe" target="lib\net45" />
<file src="MyApp\bin\Release\*.config" target="lib\net45" />
<file src="MyApp\bin\Release\Utils\*.*" target="lib\net45\Utils" />
</files>
</package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment