Deploying a .Net Project

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I want to create a setup of my application.
I am aware of the setup and deployment project in .NET framework.But I want
to do a professional product setup.
I want the shortcuts to be created on the desktop after installation.I want
to install a couple of Services during the installation of my Main project.
How can I do all this using VS.NET.
Can anyone plese guide me through the steps.
Thanks and Reagrds.
 
You can do all those things with a Visual Studio setup&deployment project.
The Services would be installed with custom actions in Installer classes,
the shortcuts on the desktop are straightforward. For a list of tools, see
here:
http://installsite.org/pages/en/msi/authoring.htm
This should help with Visual Studio:
http://msdn.microsoft.com/library/d...us/vsintro7/html/vbconDeploymentScenarios.asp
Something about installing Services here:
http://msdn.microsoft.com/library/d...allerstoyourserviceapplication.asp?frame=true
and here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/csharpmsmq.asp
 
Back
Top