Results 1 to 3 of 3

Thread: VB.NET Project Property. { RESOLVED }

  1. #1

    Thread Starter
    ^:^...ANGEL...^:^ wrack's Avatar
    Join Date
    Mar 2002
    Location
    Melbourne, AUSTRALIA
    Posts
    2,695

    Thumbs up VB.NET Project Property. { RESOLVED }

    I can't find any option to set project property like we set it in VB 6. Compnay Name, Version and those stuff.

    Cheers.
    Last edited by wrack; Sep 10th, 2003 at 07:19 AM.

  2. #2
    Frenzied Member MerrionComputin's Avatar
    Join Date
    Apr 2001
    Location
    Dublin, Ireland
    Posts
    1,616
    In your project there will be a file called AssemblyInfo.vb which contains this information.

    e.g.:
    VB Code:
    1. Imports System.Reflection
    2. Imports System.Runtime.InteropServices
    3.  
    4. ' General Information about an assembly is controlled through the following
    5. ' set of attributes. Change these attribute values to modify the information
    6. ' associated with an assembly.
    7.  
    8. ' Review the values of the assembly attributes
    9.  
    10. <Assembly: AssemblyTitle("SpoolViewer")>
    11. <Assembly: AssemblyDescription("Spooled Print Job Viewer Utility")>
    12. <Assembly: AssemblyCompany("Merrion Computing Ltd")>
    13. <Assembly: AssemblyProduct("MCL PrintQueueWatch")>
    14. <Assembly: AssemblyCopyright("(c) 2003 Merrion Computing Ltd")>
    15. <Assembly: AssemblyTrademark("")>
    16. <Assembly: CLSCompliant(True)>
    17.  
    18. 'The following GUID is for the ID of the typelib if this project is exposed to COM
    19. <Assembly: Guid("74A2410B-0A85-453C-9530-B7060331F6AC")>
    20.  
    21. ' Version information for an assembly consists of the following four values:
    22. '
    23. '      Major Version
    24. '      Minor Version
    25. '      Build Number
    26. '      Revision
    27. '
    28. ' You can specify all the values or you can default the Build and Revision Numbers
    29. ' by using the '*' as shown below:
    30.  
    31. <Assembly: AssemblyVersion("1.0.*")>
    ----8<---------------------------------------
    NEW - The .NET printer queue monitor component
    ----8<---------------------------------------
    Now with Examples of use

  3. #3

    Thread Starter
    ^:^...ANGEL...^:^ wrack's Avatar
    Join Date
    Mar 2002
    Location
    Melbourne, AUSTRALIA
    Posts
    2,695
    TA M8...Appreciate it.

    Cheers.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width