Click to See Complete Forum and Search --> : creating setups


nit
November 13th, 2002, 11:37 PM
How can i create Setup for my web project in .Net

Thanks in advance
Regards
Nit

Athley
November 14th, 2002, 03:32 AM
There are good examples in the help about how to do this. If you use the Search tool to search for "Deployment Walkthroughs" and search in titles only you will find a couple of reasonable walkthroughs.

/Leyan

ultim8
November 14th, 2002, 04:58 AM
Step by step:

1.
in vs.net, open your application
go to view menu and select solution explorer
right click windows applicarion solution, select add, then new project

2.
select setup & deployment projects (left pane)
select setup project (rigth pane)
give it a name eg YourApplication_setup, click OK

3.
In solution explorer, right click your new application, select project Output, and select primary output.
(all dependancies are now automatically added to setup)

4.
Build setup appliaction by highlighting your new application, and select build menu, build YourApplication_setup (or whatever you have called it).


As Leyan said, MSDN has walkthroughs with more info.

Regards
Steve.