launchSettings.json 878 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": false,
  4. "anonymousAuthentication": true,
  5. "iisExpress": {
  6. "applicationUrl": "http://localhost:7001",
  7. "sslPort": 0
  8. }
  9. },
  10. "profiles": {
  11. "IIS Express": {
  12. "commandName": "IISExpress",
  13. "launchBrowser": true,
  14. "environmentVariables": {
  15. "ASPNETCORE_ENVIRONMENT": "Development"
  16. }
  17. },
  18. "XYY.API.Tracking": {
  19. "commandName": "Project",
  20. "launchBrowser": true,
  21. "environmentVariables": {
  22. "ASPNETCORE_ENVIRONMENT": "Development"
  23. },
  24. "dotnetRunMessages": "true",
  25. "applicationUrl": "https://localhost:5001;http://localhost:5000"
  26. },
  27. "Docker": {
  28. "commandName": "Docker",
  29. "launchBrowser": true,
  30. "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}",
  31. "publishAllPorts": true,
  32. "useSSL": true
  33. }
  34. }
  35. }