Simple question... is there a way to change the Assembly Version of a compiled .NET assembly?
I\'d actually be fine with a way to change the Assembly File Version.>
Old topic but here are my 5 dimes...
Disassemble
ildasm my.exe /output:my.il /metadata
Edit my.il to change version information. There are several places to look into:
.custom instance void [mscorlib]System.Reflection.AssemblyFileVersionAttribute::.ctor(string) = ( 01 00 07 35 2E 31 2E 33 2E 30 00 00 ) // ...5.1.3.0..
Edit my.res to change version information. Double click and edit with visual studio. Pretty straight forward procedure.
Assemble
ilasm my.il /res:my.res