error BC30652: Reference required to assembly
-
This is about a weird compilation error I'm having: I have 3 projects in a solution: project A (VB) is reference by projet B (C#) and project C (VB) referes both. I get an error while trying to use type of A in C ???
error BC30652: Reference required to assembly 'A' containing the type 'A.iTraceFile'. Add one to your project.
Anyone faced this ? Jonathan de Halleux.
www.dotnetwiki.org -
This is about a weird compilation error I'm having: I have 3 projects in a solution: project A (VB) is reference by projet B (C#) and project C (VB) referes both. I get an error while trying to use type of A in C ???
error BC30652: Reference required to assembly 'A' containing the type 'A.iTraceFile'. Add one to your project.
Anyone faced this ? Jonathan de Halleux.
www.dotnetwiki.orgYeah. Fixed by adding a Reference in Project C, to Project A. In Project C, right click on the References folder, click Add Reference. Then click on the Projects tab and select the project you want to reference, A in your case. Click Select, then OK. RageInTheMachine9532