Tagged Questions
The AssemblyVersionAttribute class is used by the .Net framework to specify the version number of an assembly.
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
...
4
votes
3answers
1k views
GetCustomAttribute() returns null for AssemblyVersionAttribute
I'm adding an About dialog to my .NET application and I'm querying the assembly's attributes for information to display. When I attempt to retrieve my assembly's AssemblyVersionAttribute using ...
3
votes
2answers
286 views
VB.Net - What is the difference between AssemblyFileVersion & AssemblyFileVersionAttribute and AssemblyVersion & AssemblyVersionAttribute
I've inherited a VB.Net codebase which was VB 2005 and upgraded to VB 2008 consisting of around 100 projects
I'm trying to re-version all of the components but have discovered some of the ...
3
votes
1answer
556 views
Version information missing from .NET assembly (Compact Framework 3.5/VS2008)
I am building an executable using VS2008 and .NET compact framework 3.5, targetting Windows Mobile 6 professional, but whenever I compile the project, everything that I have specified in the ...
1
vote
3answers
86 views
AssemblyFileVersion attribute is being ignored
I am having a problem getting the AssemblyVersion to be different from the AssemblyFileVersion attributes in a class library I am working on.
So, I've tried creating an empty (apart from Class1.cs) ...
0
votes
1answer
9 views
Two Web Deployment projects on single Web Application project — how many compiles?
I've got one Web Application project and two Web Deployment projects against that one Web Application project: WebApplication1, WebApplication1.csproj_deploy1, and WebApplication1.csproj_deploy2.
...
0
votes
2answers
172 views
Incrementing build number with Hudson build
Here is what I am trying to achieve. I currently use Hudson build to do builds for me on a remote computer. I currently have to open my solution and manually update the [assembly: ...
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?
0
votes
2answers
58 views
Can SourceSafe be configured to update AsemblyInfo
At work we have an (reasonable) agreement, that every time a project is updated, no matter how small change is, that is reflected in the Revision value of Assembly Information. This way we always know ...