How to get around circular references in Visual Studio Web Project?

Posted by joebeazelman on Stack Overflow See other posts from Stack Overflow or by joebeazelman
Published on 2010-03-31T23:41:05Z Indexed on 2010/03/31 23:43 UTC
Read the original article Hit count: 237

Filed under:
|

I am trying to create a set of WCF web services for an existing website that uses web site instead of a web application project. I would like to create a DLL that I drop into the Bin folder instead of writing all my code inside the App_Code directory. Ideally, I want to create a project and reference it from the web site, but I am running into a difficult situation.

The DLL will need to reference configuration and other DLLs located inside the bin folder of the website causing a circular reference. How do I get around this issue?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about visual-studio-2008