Assembly version 1.00.001
Hi:
I need one help regarding assembly versioning.
.NET follows the standard of versioning dll's or exe with following four values:
1. Major Version.
2. Minor Version
3. Build Number
4. Revision
If any one of the above values are missing, it defaults to 0. Suppose say, if we specify
[assembly: AssemblyVersion("1.00.001")] in AssemblyInfo.cs file,
by default it takes it as 1.0.1.0, which is not the customer wanted instead it should display as
1.00.001.
how can i create an assembly with the version as 1.00.001 in .Net