I have defined the AssemblyConfiguration attribute in my AssemblyInfo.cs file, but at runtime I am not able to retrieve the value How is this done in the Compact Framework
Thanks
Harry
I have defined the AssemblyConfiguration attribute in my AssemblyInfo.cs file, but at runtime I am not able to retrieve the value How is this done in the Compact Framework
Thanks
Harry
How do I get the AssemblyConfiguration attribute?
WinFXGuy
I am coding this with CF V1, and GetCustomAttributes() is not a member of GetExecutingAssembly().
Thanks
Harry
JD Prasad
You should be able to do this with the
System.Reflection.Assembly.GetExecutingAssembly().GetCustomAttributes() method
Peter