Visual studio. AssemblyVersion with * don't work

后端 未结 2 1023
梦毁少年i
梦毁少年i 2020-12-13 12:00

I can\'t use * in assembly version

Represents text as sequence of UTF-16 code units.To browse the .NET Framework source code for this type, see the Reference Source

2条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-13 13:03

    Add tag with false value and use * for the 3'rd part of AssemblyVersion inside in .csproj file:

    
        true
        1.0.0
        1.0.*
        false
    
    

提交回复
热议问题