In iOS applications we use same code. I was able to refer the common classes and separate the application name, theme,color etc using the values from the Prefix.pch file.
#define APPLICATION_NAME @"ABC"
#define APPLICATION_THEME @"RED"
#define SUPPORTS_ICLOUD 0
By using these macros defined my prefix file, in my program I can say
#if SUPPORTS_ICLOUD = 0
-do this stuff-
I would like to follow the same approach in WP8.
I found that we can just set it in the project properties in the menu Build->Conditional compilation Symbols:
.
But i have around 50+ macros defined and its hard to add it in Build->Conditional compilation Symbols
to add and delete it.
So What is the best approach that i can follow ?