Home All Groups Group Topic Archive Search About

PLEASE HELP - Executable properties - right click

Author
10 Oct 2006 5:35 AM
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
------------------------------
on the summary tab,
title
subject
author



*** Sent via Developersdex http://www.developersdex.com ***

Author
10 Oct 2006 7:23 AM
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.

--
Peter Macej
Helixoft - http://www.helixoft.com
VSdocman - Commenter and generator of class documentation for C#, VB
..NET and ASP .NET code