views:

154

answers:

1

I am looking to deploy an ASP.NET MVC application using the Web Deployment Tool along the lines of this post. The way I've gotten that to work is by getting everything first working on localhost. But there's one catch. The way I've gotten things to run on local IIS is via the Visual Studio web tab, which requires setting up a Virtual Directory. The catch with that is that I'll ultimately want to deploy the application to the root of my website. I don't want to get involved with change path references like /Content. Any suggestions? Thanks!

A: 

I answered my own question. Rather than running on localhost in the way I described, I simply needed to Publish to there. noob mistake.

Vince