I'am Working On windows forms application now i want to create single EXE File that includes my application EXE and also the prerequisites for my application. i.e my application has .net framework and sql sever express 2008 as prerequisites.now i want to install .net framework followed by sql sever followed by my application all the exe's need to package in single EXE file(sql server need to install only after successful instalation of .net framework). please help how can i achieve this. thanks
Asked
Active
Viewed 1,629 times
-1
-
I think what you are looking for is a windows installer (which is in the VS Templates). But last I checked you could not deploy .Net framework from your custom installer. I could be wrong though. – Evan L Mar 14 '14 at 18:59
-
It will probably be a very large .exe file. Why don't you use an installer? Like nullsoft installer: [NSIS](http://nsis.sourceforge.net/Main_Page) – thepirat000 Mar 14 '14 at 19:02
-
Or innosetup is good too – Steven Martin Mar 14 '14 at 19:03