Automatic deploy remote debugging Visual Studio via Projucer

I do a fair bit of remote debugging from Visual Studio and this requires the “deploy” setting in the configuration manager. Unfortunately the Projucer overwrites the setting and I can’t find a way of modifying it “normally”, so I ended up patching the Projucer (v5.4.7). The patch is in juicer_ProjectExport_MSVC.h @ line 1688 and is as follows:

// Old version - for (auto& suffix : { “ActiveCfg”, “Build.0” })
for (auto& suffix : { “ActiveCfg”, “Build.0”, “Deploy.0” })

Obviously this isn’t a complete solution because you no longer have the option, but it works for me