I am using an asp.net 3.5 web solution with js which contains 2 projects ProjectA and ProjectB. ProjectA has a reference to ProjectB. Now I would like to use a class that sits in ProjectA from somewhere in ProjectB? Vs.net wont let me refer to ProjectA now because of a circular reference? Do I have to refactor of is there a way?
Share
Move common code to Project C and add reference to it from Projects A & B.
Or merge both projects into one.