The assemblyinfo.cs file has the AssemblyVersion attribute, but when I run the following:
Attribute[] y = Assembly.GetExecutingAssembly().GetCustomAttributes();
I get:
System.Runtime.InteropServices.ComVisibleAttribute
System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
System.Runtime.CompilerServices.CompilationRelaxationsAttribute
System.Runtime.InteropServices.GuidAttribute
System.Diagnostics.DebuggableAttribute
System.Reflection.AssemblyTrademarkAttribute
System.Reflection.AssemblyCopyrightAttribute
System.Reflection.AssemblyCompanyAttribute
System.Reflection.AssemblyConfigurationAttribute
System.Reflection.AssemblyFileVersionAttribute
System.Reflection.AssemblyProductAttribute
System.Reflection.AssemblyDescriptionAttribute
and yet I have checked countless times that this attribute is present in my code:
[assembly: AssemblyVersion("5.5.5.5")]
...and if I try to access it directly I get an exception:
Attribute x = Attribute.GetCustomAttribute(Assembly.GetExecutingAssembly(), typeof(AssemblyVersionAttribute)); //exception
I guess I won't be able to use that attribute, but how come .NET isn't reading it?
Assemblyalready has aVersionproperty. – ashes999 Feb 14 at 2:17GetName()examplevar y = Assembly.GetExecutingAssembly().GetName().Version;– sa_ddam213 Feb 14 at 2:26