Die Assembly Attribute kannst Du über die GetCustomAttributes Methode des Assembly abfragen:
Dim lGuid As System.Runtime.InteropServices.GuidAttribute
lGuid = DirectCast(System.Reflection.Assembly.GetExecutingAssembly().GetCustomAttributes( _
GetType(System.Runtime.InteropServices.GuidAttribute), False)(0), _
System.Runtime.InteropServices.GuidAttribute)
Console.WriteLine(lGuid.Value)
Thorsten Dörfler
Microsoft MVP Visual Basic