MaxCoder88
MaxCoder88

Reputation: 2428

How can I create to my own setup.exe file in C#?

I'm developing an application using the C# programming language. How can I create to my own setup file in C# ?I don't want a commercial software. How can I do that?

Upvotes: 2

Views: 9683

Answers (5)

Reinderien
Reinderien

Reputation: 15231

If you're absolutely determined to write your own .exe that's compatible with the Microsoft installer stuff, then you pretty much need to read this chapter cover-to-cover:

http://msdn.microsoft.com/en-us/library/cc185688%28v=VS.85%29.aspx

Upvotes: 1

Tae-Sung Shin
Tae-Sung Shin

Reputation: 20643

Actually, you can do that in Visual Studio by going New Project -> Other Project Type -> Setup and Deployment Visual Studio Installer.

Upvotes: 1

Chris Shain
Chris Shain

Reputation: 51329

In the File menu, click New->Project, and then in the dialog select Other Project Types->Setup and Deployment in the tree on the left. Select InstallShield LE or Visual Studio Installer, as you prefer.

Personally I'd recommend Visual Studio Installer->Setup Wizard for beginners.

Upvotes: 2

Jalal Said
Jalal Said

Reputation: 16162

Just create a new Setup Project

Upvotes: 4

Reinderien
Reinderien

Reputation: 15231

Try the Nullsoft installer: http://nsis.sourceforge.net/

Upvotes: 2

Related Questions