Here is the script that starts the Development Web Server (Cassini) inside Visual Studio 2010 using Powershell.
1 2 3 4 5 6 7 8 9 | param( $rootpath , $port = 8383, $virtualpath = '/' ) Kill -name WebDev.WebServer*; & 'C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0\WebDev.WebServer40.EXE' /path: "$rootpath" /port: $port /vpath: "$virtualpath " |
Here is an easy copy and paste line that you can throw into a Powershell console or Package Manager Console inside Visual Studio 2010.
1 2 | Kill -name WebDev.WebServer*;& 'C:\Program Files (x86)\Common Files\microsoft shared\DevServer\10.0\WebDev.WebServer40.EXE' /path: "C:\TFS\<tfsproject>\Main\Source\<servicename>" /port:8383 /vpath: "/" ; </servicename></tfsproject> |
No comments:
Post a Comment