In iOS I have 5 application which use same code. I was able to refer the common classes and separate the application name, theme and color using the values from the Prefix.pch file. My Prefix file has these,
#define APPLICATION_NAME @"Application01"
#define APPLICATION_THEME @"Brown"
By using these macros defined my prefix file, in my program I can say
#if APPPLICATION_THEME = @"Brown"
-perform this-
I would like to follow the same approach in WP8. I don't know where do I define these macro values and to use them in the code. Please help me in achieving this.