I have a standard C # application that acts as a GUI for the "R" statistics engine. An "R" consists of approximately 600 files in approximately 50 different folders and can be "installed" on the machine through xcopy deployment.
I would like to pack both the R engine and my C # gui into one setup.exe file so that the user does not need to install R first and then my C # application.
I know that I can create an installation project and then add the R files one at a time, but adding all 600 files will be very tedious!
Is there an easier way to do what I want? Can I add a separate R folder and automatically add subfolders and files to save me by adding them one at a time? Or maybe follow the unpacking procedure in my configuration project, which will unzip the R engine at a time?
source
share