Hi there... I have 2 big projects that have 3 variants of compilation... When I build my app I launch an IDE script that do something like this
SelectWindow "Gest 2010.rbp" PropertyValue("App.MacOSXAppName") = "Gest-L autonoleggi" PropertyValue("App.WindowsAppName") = "Gest-L autonoleggi" ConstantValue("MAS.Trasporti") = "False" ConstantValue("MAS.Autonoleggio") = "True" ConstantValue("Server.ServerMode") = "False" ConstantValue("BundleID.MyBundleID") = "com.system-i.gestlautonol" PropertyValue("App.Application Identifier") = "com.system-i.gestlautonol" DoCommand "BuildApp" SelectWindow "Gest 2010.rbp" PropertyValue("App.MacOSXAppName") = "Gest-L trasporti" PropertyValue("App.WindowsAppName") = "Gest-L trasporti" ConstantValue("MAS.Autonoleggio") = "False" ConstantValue("MAS.Trasporti") = "True" ConstantValue("Server.ServerMode") = "False" ConstantValue("BundleID.MyBundleID") = "com.system-i.gestltrasp" PropertyValue("App.Application Identifier") = "com.system-i.gestltrasp" DoCommand "BuildApp" SelectWindow "Gest 2010.rbp" PropertyValue("App.MacOSXAppName") = "Gest-L" PropertyValue("App.WindowsAppName") = "Gest-L" ConstantValue("MAS.Trasporti") = "False" ConstantValue("Server.ServerMode") = "False" ConstantValue("BundleID.MyBundleID") = "com.system-i.gestl" PropertyValue("App.Application Identifier") = "com.system-i.gestl" DoCommand "BuildApp"
So now that script is unusable, because the IDE, before every build, delete all the build folder content... Until 2018R3 in my build folder (after the build process) I can see my 3 subfolders with my builds... Is there any explanation for this? Is there a workaround or a solution?