如何在输出文件名中包含版本号?

时间:2014-01-21 20:43:55

标签: microsoft-ajax-minifier ajaxmin

我正在使用XML Manifest File,我希望项目构建版本在输出文件名中连接

例如:library-1.0.0.js

是否有可能或有任何解决方法?

1 个答案:

答案 0 :(得分:0)

使用https://msbuildextensionpack.codeplex.com/

 <MSBuild.ExtensionPack.Framework.Assembly TaskAction="GetInfo" NetAssembly="$(OutputPath)\xxx.dll" >
     <Output TaskParameter="OutputItems" ItemName="Info" />
     </MSBuild.ExtensionPack.Framework.Assembly>
     <Message Text="Version: %(Info.AssemblyVersion)" Importance="high" />