Is it possible to add an extra character with a lower build version value?

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

+5
source share
2 answers

No. Assembly versions (indicated AssemblyVersionAttribute) follow System.Version, which is strictly four numbers.

However, you can use AssemblyInformationalVersionAttributeto get more information.

+6
source
<Not p> No:

AssemblyVersionAttribute :

All version components must be integers greater than or equal to 0.

0
source

All Articles