launchSettings.json 1001 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "profiles": {
  3. "ERP": {
  4. "commandName": "Project",
  5. "launchBrowser": true,
  6. "launchUrl": "swagger",
  7. "environmentVariables": {
  8. "ASPNETCORE_ENVIRONMENT": "Development"
  9. },
  10. "dotnetRunMessages": true,
  11. "applicationUrl": "https://localhost:7131;http://localhost:5131"
  12. },
  13. "IIS Express": {
  14. "commandName": "IISExpress",
  15. "launchBrowser": true,
  16. "launchUrl": "swagger",
  17. "environmentVariables": {
  18. "ASPNETCORE_ENVIRONMENT": "Development"
  19. }
  20. },
  21. "Docker": {
  22. "commandName": "Docker",
  23. "launchBrowser": true,
  24. "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger",
  25. "publishAllPorts": true,
  26. "useSSL": true
  27. }
  28. },
  29. "$schema": "https://json.schemastore.org/launchsettings.json",
  30. "iisSettings": {
  31. "windowsAuthentication": false,
  32. "anonymousAuthentication": true,
  33. "iisExpress": {
  34. "applicationUrl": "http://localhost:29300",
  35. "sslPort": 44343
  36. }
  37. }
  38. }