0
votes

Edit:

I am deploying my ASP.NET MVC entity framework using azure, but faced with a problem. I have two projects to publish, one of them is a class library, but seems class library is not published.

Reading this post, Deploying web site to Azure as well as class library, I found that it is related to the model DLL files. Should the model file be located in the Web Application project's bin folder? or the class library's bin folder? What is potentially causing the issue?

test1.png

1

1 Answers

1
votes

Add a reference to you class library from the MVC web application. So when you build .dll of your class library will be copied to /bin folder of the web application.