launchSettings.json 982 B

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