launchSettings.json 1.4 KB

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