launchSettings.json 848 B

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