I have 2 build-specific configuration code blocks. The first one should be applied when the app is launched locally and the second one when I publish the site to the web. Now I comment/uncomment one of them when I need to publish. So I wonder is there any way to do something like this:
#if PUBLISH
anyConfig = "publish_config";
#else
anyConfig = "debug_config";
#endif
Thanks in advance!