How to create a set up project for a C# windows application, in VS 2005?
HI, I have a C# windows application. I need to create a set 开发者_如何学Pythonup project for this solution. Can someone kindly help me with steps to create a set up project. I need to create and add a set up project to the solution, where my windows application sits. This is the 1st time I am creating a set up project.
Thnaks in advance.
Here's how you add a setup project to an existing solution:
- Right-click on your solution in the Solution Explorer.
- From the context menu, point to "Add" and select "New Project".
- In the "Add New Project" dialog, expand "Other Project Types" in the left-hand treeview, expand "Setup and Deployment", and select "Visual Studio Installer".
- Select "Setup Wizard" in the list of choices on the right.
- Type a name for your setup project at the bottom, and then click "OK".
- A wizard will appear that will guide you through creating a setup project for your application.
http://msdn.microsoft.com/en-us/library/19x10e5c(v=VS.100).aspx
To create a new setup project
- On the File menu, point to Add Project, and then click New Project.
- In the resulting Add New Project dialog box, select the Setup and Deployment Projects folder.
- Choose Setup Project for a standard setup, or Web Setup Project for a Web.
精彩评论