PLEASE HELP - Executable properties - right click

  • Thread starter Thread starter Larry
  • Start date Start date
L

Larry

When I browse to a file in a directory in Windows and RIGHT CLICK ON My
executable,
on the version tab of an executable's properties, how do you set the
following fields? PLEASE EXPLAIN HOW TO DO THIS IN THE DEVELOPMENT
ENVIRONMENT IN DETAIL. I'M TRYING TO SHIP A PRODUCT. THANKS IN ADVANCE
Description
copyright
comments
company
Legal Trademarks
Product name
Product Version
 
Everything is in AssemblyInfo.vb file which is automatically generated
for each VB project. So just open AssemblyInfo.vb in IDE and enter the
values of attributes:
<Assembly: AssemblyTitle("VSdocman")>
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("Helixoft")>
<Assembly: AssemblyProduct("")>
<Assembly: AssemblyCopyright("")>
<Assembly: AssemblyTrademark("")>
<Assembly: CLSCompliant(True)>
<Assembly: Guid("CC781A57-5C02-45D2-A1DA-B81C87062BD9")>
<Assembly: AssemblyVersion("2.0.*")>

Maybe there are also other attributes you can use. Just search MSDN.
 
Back
Top