<version>$version$</version> no longer works in nuget 1.6
description
Having a nuspec file that identifies the version number should come from the assemblyinfo of the project
<version>$version$</version>
This is now ignored in version 1.6 of the command line exe.
Nuget.exe pack myproj.csproj -Build -Verbose -OutputDirectory .\bin\ -Properties Configuration=Release
When the nuspec is configured as: <version>$version$</version>
The resulting output is MyProj 1.0
If I manually set the version in the nuspec file it will generate the correct version.
For reference, my assembly info has the following attributes:
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyInformationalVersion("1.0")]