asp.net - Deploying a Website and a MVC4 web application as a single IIS site with a virtual app inside with msbuild/msdeploy -
i have 2 web projects in solution:
- our marketing/public site, small website build asp.net webpages 2.
- our admin application mvc4 application.
they deployed in iis 7.0
/wwwmywebsitecom (root public website)
---/admin (root mvc4 app)
---/content
---/scripts
..etc
the reasons separate public site admin part make sure first load fast , doesn't wait heavy setup mechanism triggered mvc4 app (bundles & minification, webapi routes, index creation, initial setup, etc).
my goal package these apps , deploy our test server using msbuild , msdeploy. right i'm doing hand obvious reasons need automate process. (planning on including ci server after have part figured out).
i have read several posts none of them address type of nested scenario.
is possible?
more appreciated.
thanks, r.
assuming admin
folder on remote server marked "application", should able deploy both sites 1 after another.
Comments
Post a Comment