Dear experts,
My project contains several #define build directives that define the product's name depends on our customer's requirements. For example:
--------------------------------------------
#define Customer1
//#define Customer2 //<----------commented out when compiling for customer 1
.....
#ifdef Customer1
this.Text = "Customer 1's Product Name";
#elif defined Customer2
this.Text = "Customer 2's Product Name";
...
#endif
--------------------------------------------
Each time there is an update in our code, we'll have to build each individual customer's code. Is there any possible way that this process can be automated that the project will build for all customers using different #define directive combination Or perhaps there is a better way to do this besides using #define
Thanks in advance!