Question on Application.CompanyName and Application.ProductName

  • Thread starter Thread starter Tony Lin
  • Start date Start date
T

Tony Lin

I have noticed that the CompanyName and ProductName properties of the
System.Windows.Forms.Application class return the first and the second
segment of the application's full assembly name.



Is this the only way to set CompanyName and ProductName, or is there an
alternate way to set CompanyName and ProductName?



What happens to CompanyName and ProductName if the full assembly name has 3
or 4 segments?



Tony Lin

Fremont, CA
 
Got it! Thanks for the tip!

Tony Lin


Kairi Zikpin said:
if using visual studio.net, look at the assemblyinfo file. i use vb.net
so the file is called assemblyinfo.vb

in there are the values show below (along with others):
<Assembly: AssemblyTitle("")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("")>
<Assembly: AssemblyProduct("")>

update as necessary
 
Back
Top