visual studio 2013 - show nuget package release notes -


the nuspec reference says releasenotes tag

v1.5 description of changes made in each release of package. field shows when updates tab selected , package update installed package. displayed description displayed.

i created 2 nuspec files, both containing (with different version tags of course)

<?xml version="1.0"?> <package >   <metadata>     <id>testreleasenotes</id>     <version>1.0</version>     <authors>adrianm</authors>     <requirelicenseacceptance>false</requirelicenseacceptance>     <description>description</description>     <releasenotes>release notes</releasenotes>   </metadata>   <files>     <file src="test.cs" target="content" />   </files> </package> 

i installed 1.0 in vs2013 , selected update tab can't see release notes. nuget update

what missing?

found out myself.

the release notes displayed if open "manage nuget packages" dialog project. manage project
not when open solution.

the behaviour same own packages nuget.org


Comments