Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating single file installer for .NET application

Tags:

c#

packaging

The installer for my .NET app consists of two file MyApp.msi and setup.exe. I want to have a single installer MyApp.exe (self extracting archive will do) with a specified icon. How can I do that? Is there any free tool available?

like image 273
softwarematter Avatar asked Dec 30 '22 21:12

softwarematter


1 Answers

InnoSetup and NSIS are free tools for creating application setups.

For InnoSetup, ISTool makes it very easy to create setup scripts.

like image 177
Alan Haggai Alavi Avatar answered Jan 01 '23 09:01

Alan Haggai Alavi