Iin my visual studio express, i have two projects in a single solution. What i want to know is that how can i differentiate both the projects??
FYI - I have added the seond project by the steps given in this link
Iin my visual studio express, i have two projects in a single solution. What i want to know is that how can i differentiate both the projects??
FYI - I have added the seond project by the steps given in this link
Not sure about the question. If I understood well you just need to add reference to the projects from your main project and you can use resources from them.
Can you please provide more info about what you really need?
Here is how you can use conditional compilation:
Set a conditional compilation symbol on each project (go to the project settings, "build" tab). For example add the compilation symbol "APP1".
Then in your code, use the following syntax:
#if APP1
// This is APP1 code
#endif