launchSettings.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "profiles": {
  3. "http": {
  4. "commandName": "Project",
  5. "launchBrowser": true,
  6. "environmentVariables": {
  7. "ASPNETCORE_ENVIRONMENT": "Development"
  8. },
  9. "dotnetRunMessages": true,
  10. "applicationUrl": "http://localhost:5234"
  11. },
  12. "https": {
  13. "commandName": "Project",
  14. "launchBrowser": true,
  15. "environmentVariables": {
  16. "ASPNETCORE_ENVIRONMENT": "Development"
  17. },
  18. "dotnetRunMessages": true,
  19. "applicationUrl": "https://localhost:7236;http://localhost:5234"
  20. },
  21. "IIS Express": {
  22. "commandName": "IISExpress",
  23. "launchBrowser": true,
  24. "environmentVariables": {
  25. "ASPNETCORE_ENVIRONMENT": "Development"
  26. }
  27. },
  28. "Container (Dockerfile)": {
  29. "commandName": "Docker",
  30. "launchBrowser": true,
  31. "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}",
  32. "environmentVariables": {
  33. "ASPNETCORE_HTTPS_PORTS": "8081",
  34. "ASPNETCORE_HTTP_PORTS": "8080"
  35. },
  36. "publishAllPorts": true,
  37. "useSSL": true
  38. }
  39. },
  40. "$schema": "http://json.schemastore.org/launchsettings.json",
  41. "iisSettings": {
  42. "windowsAuthentication": false,
  43. "anonymousAuthentication": true,
  44. "iisExpress": {
  45. "applicationUrl": "http://localhost:10216",
  46. "sslPort": 44362
  47. }
  48. }
  49. }