I would like to get the AssemblyCompany attribute from a WinForm project inside of my C# class library. In WinForms, I can get to this information by using:
Application.CompanyName;
However, I can’t seem to find a way to get at that same information using a class library. Any help you could provide would be great!
To get the assembly in which your current code (the class library code) actually resides, and read its company attribute: