PLEASE HELP - Executable properties - right click

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
 
P

Peter Macej

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top