Consolidated ASP Classic MVC framework from best components
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lignes
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.