I am currently evaluating Advanced Installer. I've hit a snag pretty early in the going - Is it possible to specify a variable in the Source Path to a file that gets installed? Imagine I have two build configurations, Debug and Release. When I build the Debug config, I want to include the file:
..\build\Debug\bin\my_app.exe
When I build the Release config, I want it instead to include the file:
..\build\Release\bin\my_app.exe
I have created an Install Parameter - BUILDCONFIG - that is set to "Release" in the Release build configuration and to "Debug" in the debug build configuration. I'd love to be able to somehow inject this Install Parameter into the source path for my_app.exe, thusly:
..\build\[|BUILDCONFIG]\bin\my_app.exe
So that the correct version of the binary is included in the MSI. Is this possible? If not, my company cannot use Advanced Installer unfortunately.