|
#1
|
|||
|
|||
Found it!
Microsoft created an AssemblyInfoTask add-on that allows for the automatic increment of the build and revision numbers. It also allows for the manual setting of the major and minor version numbers in the project file. I just didn't realize to add:
<PropertyGroup> <AssemblyMajorVersion>8</AssemblyMajorVersion> <AssemblyMinorVersion>0</AssemblyMinorVersion> <AssemblyFileMajorVersion>8</AssemblyFileMajorVersion> <AssemblyFileMinorVersion>0</AssemblyFileMinorVersion> </PropertyGroup> the <PropertyGroup> portion. The solution is to "update" this file at that section to set the appropriate major and minor version numbers. Cool! The path for all that are interested is: http://www.gotdotnet.com/codegallery...9-16107919f93e I hope this helps. Martin A. Weinberger Butterflyvista http://www.butterflyvista.com/ |
|
|