I have an Asp.Net 5 solution with a web project: "WebAngular" and a class library project "DataAccess" that only have an EDMX file with a model which has only some tables with NO Code written in DataAccess Project at all, the references node of this data access class library previously had a DataAccess in it, that I removed compiled the class library, and re-referenced in the web project. BUT I still get the:
"Circular dependency detected DataAccess -> DataAccess"
Error when I want to publish the web project. I can't detect any problem because the projects compile and the web page with DB functionality is loaded for me.
What do I do?
Thank you.