CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2010
    Posts
    2

    C Sharp and Deploying an App

    Hello,

    I developed a windows app in C sharp. I am now ready to deploy and have other users use it. I am finding it's not a simple task to move it/ copy it to another computer. Can anyone advise how I can copy my app from my laptop and copy it to another computer or server? I was planning to just copy it to my thumb drive. Please help.

  2. #2
    Join Date
    Apr 2002
    Location
    Egypt
    Posts
    2,210

    Re: C Sharp and Deploying an App

    There are many options:

    • If you prefer xcopy deployment, just zip the application and put it on a share.
    • You can use click once deployment, in this case you also place the application on a shared location (or http server). This will make it possible for the application to automatically check for updates.
    • Use MSI and let the users download the application and install it.
    Hesham A. Amin
    My blog , Articles


    <a rel=https://twitter.com/HeshamAmin" border="0" /> @HeshamAmin

  3. #3
    Join Date
    Jun 2001
    Location
    Melbourne/Aus (C# .Net 4.0)
    Posts
    686

    Re: C Sharp and Deploying an App

    It is possible to create a Setup project within the same solution. When you build this project, you will get a app.msi file which you can distribute.

    When a user executes that file, it will install your programme on their computer, as well as prompt them to download the required version of the .NET Runtime should they not already have it installed.
    Rob
    -
    Ohhhhh.... Old McDonald was dyslexic, E O I O EEEEEEEEEE.......

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

Featured