nuget pack Trial.nuspecYou may recieve the following error:
Attempting to build package from 'Trial.nuspec'.This will be likely if you are using tokens in the nuspec file. Example:
The replacement token 'id' has no value.
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>$author$</authors>
<owners>$author$</owners>
<licenseUrl>http://localhost</licenseUrl>
<projectUrl>http://localhost</projectUrl>
<iconUrl>http://locahost</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>Initial release.</releaseNotes>
<copyright>Copyright 2015</copyright>
<tags></tags>
</metadata>
<files>
<file src="bin\$configuration$\*" target="" />
</files>
</package>
If this is the case, run the same command prompt but pass in the csproj file instead.
nuget pack Trial.csproj
No comments:
Post a Comment