Specify publish version with MSBuild command line as assembly version of project

后端 未结 3 2004
轮回少年
轮回少年 2021-02-07 19:05

I have a simple batch file that I\'m running from a DOS command line that is used for building a small C# application that publishes a ClickOnce project. One line is this:

3条回答
  •  攒了一身酷
    2021-02-07 19:16

    In order to correctly update the version declared in the deployment manifest you need to modify the ApplicationVersion at the "AfterCompile" step rather than the "BeforePublish" step, since the application manifest is generated at build time. But then you can't rely on the $(TargetPath) property to point to the assembly and instead use the following path: $(ProjectDir)obj\$(ConfigurationName)\$(TargetFileName)

    So here's the updated Target code snippet that you can add to the .csproj file:

    
      
         
      
      
        %(AssemblyInfo.Version)
      
    
    

提交回复
热议问题