HelloWorld.Main.dll から NuGet パッケージを作成するための NuGet nuspec ファイルがあり、HelloWorld.Main プロジェクトに変更を加えるたびにパッケージ バージョンがインクリメントされます。
ソリューション内の他のプロジェクトに変更を加えるたびにバージョンをインクリメントしたい場合はどうすればよいですか。
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>HelloWorld.Main</id>
<version>$version$</version>
<title>$title$</title>
<authors>$author$</authors>
<owners>$author$</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes />
<copyright>Copyright 2013</copyright>
<tags>HelloWorld</tags>
<dependencies>
<dependency id="HelloWorld.Helpers" version="[0.0.7,0.1)" />
</dependencies>
</metadata>
</package>