How can the setup files and prerequisite files from a vs2019 setup project be distributed as one .exe?
setup.exe
Setup1.msi
DotNetFX40Client/dotNetFx40_Client_x86_x64.exe
I know I could just zip/archive, but I was hoping to have a simple Installer.exe, which would include the above. I'm aware of basic binders which would merge them as one, but
setup.exe
needs to be the initial executed file, and then setup1.msi & dotnetfx40 are just references for setup.exe.
Mostly looking for recommendations, as I'm aware some routes raise false flags on avs & that's something I wish to avoid.