I have a Setup and Deployment project in Visual Studio 2013 that creates an .msi installer for my solution. I also have a C# WinForms app that launches in the Install Custom Action. If a user launches the .msi from the command line, is there any way to pass the command-line arguments to the app that runs during the install custom action?
I know that I can supply the Install Custom Action app arguments using the CustomActionData parameter, so can I somehow dynamically set that to whatever the .msi arguments are? Or is there an easier/better way to do this?
Any help would be appreciated.