Make an Installation program for C# applications a

2019-01-01 04:33发布

I've finished my C# application, but I have a little problem:

When I try to run my application in another PC, I need always to Install .NET Framework 4.0.

Is there something to do to make it work without installing the framework from internet?

I tried before InnoSetup for a VB6 application, but I'm not sure if it's going to work for .NET 4.0!

Any ideas?

4条回答
余生请多指教
2楼-- · 2019-01-01 05:18

WiX is the way to go for new installers. If WiX alone is too complicated or not flexible enough on the GUI side consider using SharpSetup - it allows you to create installer GUI in WinForms of WPF and has other nice features like translations, autoupdater, built-in prerequisites, improved autocompletion in VS and more.

(Disclaimer: I am the author of SharpSetup.)

查看更多
忆尘夕之涩
3楼-- · 2019-01-01 05:21

Use Visual Studio Setup project. Setup project can automatically include .NET framework setup in your installation package:

Here is my step-by-step for windows forms application:

  1. Create setup project. You can use Setup Wizard.

    enter image description here

  2. Select project type.

    enter image description here

  3. Select output.

    enter image description here

  4. Hit Finish.

  5. Open setup project properties.

    enter image description here

  6. Chose to include .NET framework.

    enter image description here

  7. Build setup project

  8. Check output

    enter image description here


Note: The Visual Studio Installer projects are no longer pre-packed with Visual Studio. However, in Visual Studio 2013 you can download them by using Tools > Extensions and Updates > Online (search) > Visual Studio Installer Projects

查看更多
余生无你
4楼-- · 2019-01-01 05:30

You need to create installer, which will check if user has required .NET Framework 4.0. You can use WiX to create installer. It's very powerfull and customizable. Also you can use ClickOnce to create installer - it's very simple to use. It will allow you with one click add requirement to install .NET Framework 4.0.

查看更多
萌妹纸的霸气范
5楼-- · 2019-01-01 05:38

Include an Setup Project (New Project > Other Project Types > Setup and Deployment > Visual Studio Installer) in your solution. It has options to include the framework installer. Check out this Deployment Guide MSDN post.

查看更多
登录 后发表回答