Наиболее простой способ:
Step 1: Select the “Tools->External Tools” menu option in VS or Visual Web Developer. This will allow you to configure and add new menu items to your Tools menu.
Step 2: Click the “Add” button to add a new external tool menu item. Name it “WebServer on Port 8080” (or anything else you want).
Step 3: For the “Command” textbox setting enter this value: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\WebDev.WebServer.EXE (note: this points to the web-server that VS usually automatically runs).
Step 4: For the “Arguments” textbox setting enter this value: /port:8080 /path:$(ProjectDir)
Step 5: Select the “Use Output Window” checkbox (this will prevent the command-shell window from popping up.
Перевод:
Выбираем в меню visual studio "tools" - "external toools"
Создаем новый элемент "add", выбираем любое имя
Command: C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\WebDev.WebServer.EXE (это путь к серверу в .net framework 2.0, для четвертого фреймворка он будет другой)
Arguments: /port:{выбранный нами порт} /path:{путь к каталогу с сайтом}
Выбрать use output window
Все, теперь можно выбирать в меню tools - наше выбранное имя