launchSettings.json 987 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "profiles": {
  3. "Deathwatch": {
  4. "commandName": "Project",
  5. "launchBrowser": true,
  6. "environmentVariables": {
  7. "ASPNETCORE_ENVIRONMENT": "Development"
  8. },
  9. "dotnetRunMessages": true,
  10. "applicationUrl": "https://localhost:7120;http://localhost:5135"
  11. },
  12. "IIS Express": {
  13. "commandName": "IISExpress",
  14. "launchBrowser": true,
  15. "environmentVariables": {
  16. "ASPNETCORE_ENVIRONMENT": "Development"
  17. }
  18. },
  19. "Container (Dockerfile)": {
  20. "commandName": "Docker",
  21. "launchBrowser": true,
  22. "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}",
  23. "environmentVariables": {
  24. "ASPNETCORE_URLS": "https://+:443;http://+:80"
  25. },
  26. "publishAllPorts": true,
  27. "useSSL": true
  28. }
  29. },
  30. "iisSettings": {
  31. "windowsAuthentication": false,
  32. "anonymousAuthentication": true,
  33. "iisExpress": {
  34. "applicationUrl": "http://localhost:49239",
  35. "sslPort": 44345
  36. }
  37. }
  38. }