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

前端 未结 5 1957
遇见更好的自我
遇见更好的自我 2020-12-20 00:43

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?

相关标签:
5条回答
  • 2020-12-20 01:25

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

    0 讨论(0)
  • 2020-12-20 01:26

    Just create a new Setup Project

    0 讨论(0)
  • 2020-12-20 01:31

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

    0 讨论(0)
  • 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

    0 讨论(0)
  • 2020-12-20 01:46

    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.

    0 讨论(0)
提交回复
热议问题