Assembly Name

  • Thread starter Thread starter AA2e72E
  • Start date Start date
A

AA2e72E

How can I retrieve the 'Assembly Name' programatically, as it appears in the
'Assembly Name' box on the 'Application' tab of the project's properties?

Thanks.
 
How can I retrieve the 'Assembly Name' programatically, as it appears in the
'Assembly Name' box on the 'Application' tab of the project's properties?

Start with:
Assembly.GetExecutingAssembly().FullName

Arne
 
Back
Top