asp.net mvc deployment

Posted by Casey on Stack Overflow See other posts from Stack Overflow or by Casey
Published on 2010-05-09T01:04:38Z Indexed on 2010/05/09 1:08 UTC
Read the original article Hit count: 405

Filed under:
|

I've been dealing with a legacy asp.net 2.0 web site that was originally setup to deploy everything (source uncompiled) to the target server. I've been looking at doing some major upgrades and want to move to asp.net mvc.

I'm coming from mostly a Java background where we typically deploy everything inside of a Web ARchive (war file) and the application server takes it from there. Is there a similar concept in the .net world? Right now in my mvc test app, I just put the compiled code into the deployed bin folder and the rest of the script/view files there as well.

From what I have been reading it seems that most use the Publish feature of VS.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about asp.net-mvc