launchSettings.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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:5088"
  11. },
  12. "https": {
  13. "commandName": "Project",
  14. "launchBrowser": true,
  15. "environmentVariables": {
  16. "ASPNETCORE_ENVIRONMENT": "Development"
  17. },
  18. "dotnetRunMessages": true,
  19. "applicationUrl": "https://localhost:7109;http://localhost:5088"
  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_URLS": "https://+:443;http://+:80"
  34. },
  35. "publishAllPorts": true,
  36. "useSSL": true
  37. }
  38. },
  39. "iisSettings": {
  40. "windowsAuthentication": false,
  41. "anonymousAuthentication": true,
  42. "iisExpress": {
  43. "applicationUrl": "http://localhost:63318",
  44. "sslPort": 44321
  45. }
  46. }
  47. }