Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can we add an extra character with the minor value of the assembly version?

Is it possible to add a character to the assembly version? ex 10.1.1.1a ?

like image 560
Tanya Avatar asked Feb 18 '13 11:02

Tanya


People also ask

What is the difference between assembly version and assembly file version?

AssemblyVersion: Specifies the version of the assembly being attributed. AssemblyFileVersion: Instructs a compiler to use a specific version number for the Win32 file version resource.

What is assembly versioning explain with example?

Assembly informational version The text-based informational version corresponds to the product's marketing literature, packaging, or product name and is not used by the runtime. For example, an informational version could be "Common Language Runtime version 1.0" or "NET Control SP 2".

How do I change the version number in Visual Studio?

Open the project's Property Pages dialog box. For details, see Set C++ compiler and build properties in Visual Studio. Select the Configuration Properties > Linker > General property page. Modify the Version property.

Where do I put assembly version?

You can set the assembly version using the AssemblyVersionAttribute. Assembly attributes are usually applied in the AssemblyInfo.


1 Answers

No. Assembly versions (specified by AssemblyVersionAttribute) follow the System.Version system, which is strictly four numbers.

However, you can use AssemblyInformationalVersionAttribute to give more information.

like image 52
Jon Skeet Avatar answered Oct 21 '22 14:10

Jon Skeet