Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MVC3 Publishing, why models/controllers don't get published

I am attempting to publish an MVC3 Site in Visual Studio 2010 using the "File System" publish method. The MVC site does not work, but I'm almost positive that this has something to do with my current server configuration, so my question is not why won't the site work. My question is when i publish the site, it does not publish the "Models" or "Controllers" folders; is this normal? If so how does the site function without these two elements being built to the server?

like image 820
aaronmallen Avatar asked Oct 04 '13 01:10

aaronmallen


1 Answers

Yes, it is normal. Your models and controller are compiled and placed in folder called "bin". There should be a DLL in that folder with the name of your project.

like image 149
aspiring.algorist Avatar answered Sep 27 '22 23:09

aspiring.algorist