C# Windows form project deployment problem

  • Thread starter Thread starter Jason Huang
  • Start date Start date
J

Jason Huang

Hi,

I would like to deploy my C# Windows Form application to my client, so that
application will show up on the client's My Desktop and Program Files.
How to do that?
Thanks for help.



Jason
 
you need setup and deployment project.
take a look at them

it will create .msi file (Windows Insaller )

take a look at it

hope this helps
Galin Iliev[MCSD.NET]
www.galcho.com
 
Hi Jason,

Like Galcho suggested, Visual Studio provides wizards for Setup and
Deployment projects. After you create one, you are able to alter the file
structure for your application's installer. You can also create shortcuts to
certain executables or other files on the Desktop, for example.
 
Back
Top