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
No luck here with the other answers but managed to work it out with this nice one liner:
((GuidAttribute)(AppDomain.CurrentDomain.DomainManager.EntryAssembly).GetCustomAttributes(typeof(GuidAttribute), true)[0]).Value
Hope this helps!