From: AA2e72E on
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.
From: Arne Vajhøj on
On 14-05-2010 05:22, AA2e72E wrote:
> 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