vote up 2 vote down star

I have in my assemblyinfo.cs class the code:

[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.*")]

Calling System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString() works fine and gives the updated version, however, when i look at the generated dll in windows explorer, right click properties, click the 'details' tab, the fileversion says "1.0.0.0" even though the output above says 1.0.3489.17621 ?

flag

50% accept rate
What version of Visual Studio? – Patrick McDonald Jul 21 at 10:28
Visual studio 2008, doh! – maxp Jul 21 at 11:10

2 Answers

vote up 3 vote down check

In Visual Studio 2005 you cannot use 1.0.* to auto-increment the AssemblyFileVersion, only the AssemblyVersion. It's possibly the same in Visual Studio 2008.

Comment out the following line

[assembly: AssemblyFileVersion("1.0.*")]

and the File Version will take the same number as the Assembly Version.

link|flag
Works, im using vs2008 so it seems to have carried over. – maxp Jul 21 at 11:10
Horrible situation, caught me out myself last year, fingers crossed for 2010! – Patrick McDonald Jul 21 at 11:12
vote up 1 vote down

Patrick already gave the correct answer, but here is just a little advice. If you look into AssemblyInfo.cs you'll find the following block at the end:

// Version information for an assembly consists of the following four values:
//
//      Major Version
//      Minor Version 
//      Build Number
//      Revision
//
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
//[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Now go on and flip the comment from the last three lines as follows:

[assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("1.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]

And everything works as expected... :-)

link|flag
Excellente, gave the answer tag to Patrick but would've given it twice if i could :D – maxp Jul 21 at 11:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.