Created
November 13, 2015 14:47
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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