Versioning .NET builds

后端 未结 8 1394
萌比男神i
萌比男神i 2020-12-14 22:27

Just wondering what\'s the best approach to versioning of .NET builds?

I use:

  • TFS 2013 for version control
  • TFS gated check-ins
  • Wix 3.
8条回答
  •  盖世英雄少女心
    2020-12-14 22:58

    I'm working on a project that has similar, but not identical requirements. Th major and minor versions are kept in AssemblyInfo as any standard .net project would have them. On our build server, we have a wrapper MsBuild script that invokes the .sln build, but it also does some setup tasks including generating additional build information. This build file is only executed on our build server. Developers building through Visual Studio will only build the .sln, and not get that additional behavior.

提交回复
热议问题