Khemka
Khemka

Reputation: 108

Winforms Application Setup Creation in VS2010

I know that this is a very stupid question, but I have not been able to find a definitive Guide to creating a basic Installer for my windows forms application. I know we have to use Setup and Deployment Projects in VS2010 but have not been able to find any step by step guide for it.

If possible please guide me regarding the same. Thanks

Upvotes: 1

Views: 3696

Answers (2)

Harag
Harag

Reputation: 1582

I'm currently learning how to do setup projects as well.. I found a couple of sites that helped me to get off the ground and have a basic installer. I know the first link is from way back in 2005, but it still helped.

http://www.simple-talk.com/dotnet/visual-studio/getting-started-with-setup-projects/

http://www.eggheadcafe.com/tutorials/aspnet/dcc5ab62-b875-4852-9e34-8bc2794e4fb8/c--create-setup-project.aspx

Upvotes: 0

Hans Passant
Hans Passant

Reputation: 941217

Many Winforms projects don't require an installer. Just copy the files in the Release folder, formally named "XCopy deployment". The walkthrough for a Setup and Deployment project is here.

Upvotes: 1

Related Questions