launchSettings.json 760 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "profiles": {
  3. "IIS Express": {
  4. "commandName": "IISExpress",
  5. "launchBrowser": true,
  6. "launchUrl": "weatherforecast",
  7. "environmentVariables": {
  8. "ASPNETCORE_ENVIRONMENT": "Development"
  9. }
  10. },
  11. "ApiProcess": {
  12. "commandName": "Project",
  13. "launchUrl": "weatherforecast",
  14. "environmentVariables": {
  15. "ASPNETCORE_ENVIRONMENT": "Development"
  16. },
  17. "applicationUrl": "http://localhost:8989",
  18. "nativeDebugging": true
  19. }
  20. },
  21. "$schema": "http://json.schemastore.org/launchsettings.json",
  22. "iisSettings": {
  23. "windowsAuthentication": false,
  24. "anonymousAuthentication": true,
  25. "iisExpress": {
  26. "applicationUrl": "http://localhost:8989",
  27. "sslPort": 0
  28. }
  29. }
  30. }