I need to access the assembly of my project in C# .NET2.0.
I can see the GUID in the \'Assembly Information\' dialog in under project properties, and at the moment
Or, just as easy:
string assyGuid = Assembly.GetExecutingAssembly().GetCustomAttribute().Value.ToUpper();
Works for me...