Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple projects sharing same code without circular reference

I have a C# and F# project. Both are supposed to be a service layer code. But sometimes, code from both project need to access code in the other project.

Can each project reference the other without any problems?

like image 640
Shawn Mclean Avatar asked Mar 15 '11 05:03

Shawn Mclean


1 Answers

You can't have circular assembly references. This will require refactoring the parts used by both assemblies into a third assembly, which can then be referenced from both.

like image 125
Daniel Avatar answered Sep 29 '22 08:09

Daniel