Tagged Questions

9
votes
4answers
775 views

.NET: Large revision numbers in AssemblyVersionAttribute

We have the convention of versioning our builds as [major].[minor].[micro].[revision], e.g. 2.1.2.33546. Our build-script automatically updates an AssemblyInfo.cs file containing [assembly: ...
7
votes
5answers
1k views

What is the AssemblyFileVersion used for in C#?

In the assemblyInfo.cs I have AssemblyVersion and AssemblyFileVersion. Normally I just increment the AssemblyVersion like this. 1st digit: Major change 2nd digit: Minor change 3rd digit: bug fixes ...
0
votes
1answer
596 views

Why is Assembly.GetCustomAttributes suddenly throwing TypeLoadException on build machine with Silverlight 4?

A short while back i had to display the current version of our Silverlight app. After some googling the following code gave me the desired result: var fileVersionAttributes = ...
0
votes
1answer
123 views

How do I read the AssemblyFileVersion of a C# DLL from Visual Basic?

I am invoking a C# object from a Visual Basic 6.0 sub routine (don't ask). How do I get the AssemblyFileVersion from Visual Basic?