我正在使用XML Manifest File,我希望项目构建版本在输出文件名中连接
例如:library-1.0.0.js
是否有可能或有任何解决方法?
答案 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" />