Updating the version number of all assemblies in a solution

前端 未结 6 1925
清歌不尽
清歌不尽 2020-12-08 03:00

I\'ve got a rather large solution in Visual Studio. Is there a way to update the Major / Minor version numbers for all the assemblies in the solution in one go?

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-08 03:04

    We have a single AssemblyInfoCommon.cs which has the version numbers, and is included in each project by reference. The other AssemblyInfo.cs files remain but only contain the assembly-specific information (title and description). So we only have one file to update for every C# project.

提交回复
热议问题