Consolidated ASP Classic MVC framework from best components
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 wiersze
842B

  1. @echo off
  2. setlocal
  3. set "ASPC_STARTER_ROOT=%~dp0"
  4. set "IISEXPRESS=C:\Program Files\IIS Express\iisexpress.exe"
  5. rem IIS Express only runs ONE site per process, even when applicationhost.config
  6. rem defines several with serverAutoStart="true" (that attribute is honored by
  7. rem full IIS/W3SVC, not by a single ad-hoc iisexpress.exe invocation - per
  8. rem "iisexpress /?": "/config:config-file ... runs the first site in the
  9. rem specified configuration file"). So each site gets its own process here.
  10. echo Starting production site (http://localhost:8080/) ...
  11. start "IIS Express - Production (8080)" "%IISEXPRESS%" /config:"%~dp0applicationhost.config" /site:"Development Web Site"
  12. echo Starting tests site (http://localhost:8081/) ...
  13. start "IIS Express - Tests (8081)" "%IISEXPRESS%" /config:"%~dp0applicationhost.config" /site:"Tests Web Site"

Powered by TurnKey Linux.