I created a C # / application. Net using visual studio. I also created an installer project that issues two files:
In my installer project projects, I installed .Net 3.5 as a prerequisite.
I would like my installer to do the following:
- Place one file (MSI / exe / whatever), which also includes the .NET Framework prerequisites.
- The installer should check if the .Net infrastructure is installed on the target machine. If not, he should install it from his own attached copy.
Now my installer sends people to the Internet to receive .Net. This is not the user experience I want. I need to distribute my application on machines that may not be available on the network and may not have been saved up to date. Unfortunately, for a bloated world, my clients need a solution, not a lecture.
Thanks for your help.
-Raj
source share