Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to have an ASP .NET MVC 3 project compiled into an assembly that an IIS site will import? I'd like to keep the .cs files off of the web server if I can help it. Ideally I would like to compile the views as resources into the assembly as well unless that can't (or shouldn't) be done.

So can MVC be separated this way?

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes publish your app .... You should never deploy your .cs files .... Ever I would however keep your views as files.... Why take any additional overhead as compiled resources even if you could?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.