Results 1 to 2 of 2

Thread: deploying project

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2002
    Posts
    14

    deploying project

    How do you get the installer to put the program on the start > programs and in the start > startup folders?

    PLus how do you get the version number so I can display it on a form?
    Last edited by vlitim; Aug 5th, 2002 at 05:07 AM.

  2. #2
    Lively Member
    Join Date
    Aug 2001
    Posts
    65
    I don't know about the deploying project bit.

    Do you mean you just want to get the version number of your program? if so you double-click on the AssemblyInfo file in your project and set the variables there such as Title, Company name and Version, ect.

    You then have to call it like this:
    Code:
    Major = System.Diagnostics.FileVersionInfo.GetVersionInfo(System.Reflection.Assembly.GetExecutingAssembly.Location).ProductMajorPart()
    This will get the Major number, i'll leave it up to you to get the others.
    Last edited by SAS-Trooper; Aug 5th, 2002 at 06:53 AM.

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