I'm working on a deployment plan for a C# Winforms application and would like to use a self-extracting .zip file to distribute all of the required files. Here is the file structure of the SFX:
Setup.exe
app.exe
app2.exe
readme.txt
manual.pdf
After the user runs the SFX, I want Setup.exe
to take control and copy app.exe
, app2.exe
, readme.txt
, and manual.pdf
to location x
. The path they are copied to will depend on choices the user makes from the UI of Setup.exe
, system properties, etc.
How would I go about writing Setup.exe
in C#?