views:

38

answers:

2

Hello everybody,

I'm rather new to C# development so that's why I ask that question: I have several projects in my solution. Most of them are UserControls. Some of them depends on mine other UC projects (included in the solution). For the sake of simplicity let's say the dependecies of projects are like that: A->B->C

A is a main app., B&C are UCs.

How shall I configure my projects to allow: 1) making changes to C when it has been used alread in B or A 2) have no problems with using B or C after they change.

Thanks for you advices.

+1  A: 

Right click on the solution and configure the "Project Dependencies". Configure A to depend on B and C, and then configure B to depend on C.

Am
+2  A: 
Asad Butt
+1 for illustration.
Vadim