码迷,mamicode.com
首页 > 其他好文 > 详细

如何在ClickOnce 应用中使用 GitVersion

时间:2019-11-03 10:55:02      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:property   tps   quit   val   rect   lis   imp   file   depend   

https://github.com/GitTools/GitVersion/issues/1153

 

 

I‘m using GitVersion in an internal ClickOnce application. It‘s quite easy to setup. I‘ve added following target in my .csproj file:

<Target Name="MyApp_SetClickOnceVersion" AfterTargets="UpdateAssemblyInfo" DependsOnTargets="GetVersion" BeforeTargets="_DeploymentComputeClickOnceManifestInfo">
  <CreateProperty Value="$(GitVersion_AssemblySemVer)">
    <Output TaskParameter="Value" PropertyName="ApplicationVersion" />
  </CreateProperty>
  <!-- for VSTO -->
  <CreateProperty Value="$(ApplicationVersion)">
    <Output TaskParameter="Value" PropertyName="PublishVersion" />
  </CreateProperty>
  <Message Text="ApplicationVersion: $(ApplicationVersion)" Importance="High" />
</Target>

This will set the properties ApplicationVersion and PublishVersion dynamically to the correct value.

如何在ClickOnce 应用中使用 GitVersion

标签:property   tps   quit   val   rect   lis   imp   file   depend   

原文地址:https://www.cnblogs.com/MysticBoy/p/11785036.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!