Installation of VB.NET Program

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jordan Marton

    Installation of VB.NET Program

    Let's say now that I have my program finished. How do I go about writing a
    setup program that would install the required directories, and place my
    files where they need to be?

    For starters, I have my exe file, and two jpg files that I want to bundle in
    an install program that will just create a folder on the desktop, and then
    create those files automatically. How could I do that?

    Also, what's the difference between Build Solution, Rebuild Solution, Build
    ProjectName, Rebuild ProjectName?

    Thanks
    Jordan


  • James J. Foster

    #2
    Re: Installation of VB.NET Program

    For an installation program, use Visual Studio.NET and select Add Project.
    Then select Setup and Deployment Projects, and you can choose the project
    type that suits your needs to build a windows installer program.

    Build Solution builds all projects in the solution with changes since the
    last build
    Rebuild Solution cleans the build output first, and builds all the projects
    Build Project builds the project if changes are detected
    Rebuild Project cleans the project output first, and then builds the project

    --
    James J. Foster, DotNetCoders
    格安SIMデビューしたいけど、自分の使っている機種をそのまま使えるの?それとも話題の格安スマホやSIMフリースマホを購入すべき?初めてのことで、購入するにもどこでどのように買えばいいか分らない!といった疑問をまるっとお答えします!



    "Jordan Marton" <JMarton@NOSPAM marketaxess.com > wrote in message
    news:uaanNAlYDH A.1900@TK2MSFTN GP10.phx.gbl...[color=blue]
    > Let's say now that I have my program finished. How do I go about writing a
    > setup program that would install the required directories, and place my
    > files where they need to be?
    >
    > For starters, I have my exe file, and two jpg files that I want to bundle[/color]
    in[color=blue]
    > an install program that will just create a folder on the desktop, and then
    > create those files automatically. How could I do that?
    >
    > Also, what's the difference between Build Solution, Rebuild Solution,[/color]
    Build[color=blue]
    > ProjectName, Rebuild ProjectName?
    >
    > Thanks
    > Jordan
    >
    >[/color]


    Comment

    Working...