I want the "actual" version of a DLL to remain constant (1.0.0.0 in this case) to avoid reference/versioning problems. However, I'd like to embed the build/revision number into the DLL for debugging purposes.
It seems like "assembly version" & "file version" are what I want. From what I've read, "assembly version" is what .net uses when looking at the DLL, and "file version" is more or less a private info-only property - .net does not use or reference this at all when finding a DLL.
I compile a .net DLL with this in the AssemblyInfo.cs:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.536")]
When I view properties of the DLL in explorer, I see what I expect: "Assembly Version" is "1.0.0.0", and "File Version" is "1.0.0.536". Now I want to read & output the file version in a consumer asp.net app.
However, when I go to read the file version, it always returns the assembly version. I've used code like this:
temp = "";
temp += "Executing Assembly Info:\n";
Assembly assembly = Assembly.GetExecutingAssembly();
temp += "assembly.FullName: " + assembly.FullName + "\n";
temp += "assembly.GetName().Version: " + assembly.GetName().Version + "\n";
AssemblyVersionAttribute version = (AssemblyVersionAttribute)Attribute.GetCustomAttribute(assembly, typeof(AssemblyVersionAttribute));
if (version != null) {
temp += "version.Version: " + version.Version + "\n";
}
AssemblyFileVersionAttribute fileVersion = (AssemblyFileVersionAttribute)Attribute.GetCustomAttribute(assembly, typeof(AssemblyFileVersionAttribute));
if (version != null) {
temp += "fileVersion.Version: " + fileVersion.Version + "\n";
}
temp += "\n";
temp += "Referenced Assemblies:\n";
AssemblyName[] referencedAssemblyNames = assembly.GetReferencedAssemblies();
foreach (AssemblyName referencedAssemblyName in referencedAssemblyNames) {
if (referencedAssemblyName.FullName.Contains(MY_DLL_NAME)) {
temp += "referencedAssemblyName.FullName: " + referencedAssemblyName.FullName + "\n";
temp += "referencedAssemblyName.Version: " + referencedAssemblyName.Version + "\n";
}
}
temp += "\n";
temp += "AppDomain.CurrentDomain.GetAssemblies():\n";
foreach (Assembly assembly2 in AppDomain.CurrentDomain.GetAssemblies()) {
if (assembly2.FullName.Contains(MY_DLL_NAME)) {
temp += "FullName: " + assembly2.FullName + "\n";
temp += "assembly2.GetName().Name: " + assembly2.GetName().Name + "\n";
temp += "assembly2.GetName().Version: " + assembly2.GetName().Version + "\n";
temp += "assembly2.GetName().FullName: " + assembly2.GetName().FullName + "\n";
version = (AssemblyVersionAttribute)Attribute.GetCustomAttribute(assembly2, typeof(AssemblyVersionAttribute));
if (version != null) {
temp += "version.Version: " + version.Version + "\n";
}
fileVersion = (AssemblyFileVersionAttribute)Attribute.GetCustomAttribute(assembly2, typeof(AssemblyFileVersionAttribute));
if (version != null) {
temp += "fileVersion.Version: " + fileVersion.Version + "\n";
}
}
}
temp += "\n";
And I get output like this:
Executing Assembly Info:
assembly.FullName: [WEB_APPLICATION_NAME], Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
assembly.GetName().Version: 1.0.0.0
Referenced Assemblies:
referencedAssemblyName.FullName: [DLL_NAME], Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
referencedAssemblyName.Version: 1.0.0.0
AppDomain.CurrentDomain.GetAssemblies():
FullName: [DLL_NAME], Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
assembly2.GetName().Name: [DLL_NAME]
assembly2.GetName().Version: 1.0.0.0
assembly2.GetName().FullName: [DLL_NAME], Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
Ideally, I'd like to know how to just query a referenced DLL for the "File Version" (not the Assembly version, as I'm getting), and show that string for debugging/info purposes. Explorer's properties window shows both, so I'm guessing it's possible.
I've read a bunch of the other questions on stackoverflow, but I still haven't seemed to get to the functionality I'm looking for. Am I going about this the wrong way? Or, is there a better way to do this (instead of using File Version)? Thanks!