Accessing attributes from AssemblyInfo on CF

  • Thread starter Thread starter Waldek
  • Start date Start date
W

Waldek

Is possible to access attributes from AssemblyInfo file like
"AssemblyTitle","AssemblyDescription"
etc.

Code below causes NotSupportedException :
Dim att As System.Reflection.AssemblyTitleAttribute

att =
System.Reflection.AssemblyTitleAttribute.GetCustomAttribute(System.Reflectio
n.Assembly.GetExecutingAssembly(),
GetType(System.Reflection.AssemblyTitleAttribute))

MsgBox(att.Title)
 
Ok, thanks for info but ... ildasm display in MANIFEST thoes attributes. Is
no way to get values, even using some GetType/GetField sequence ?
 
Back
Top