launchSettings.json 820 B

12345678910111213141516171819202122232425262728293031323334
  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:5252"
  11. },
  12. "IIS Express": {
  13. "commandName": "IISExpress",
  14. "launchBrowser": true,
  15. "environmentVariables": {
  16. "ASPNETCORE_ENVIRONMENT": "Development"
  17. }
  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:29850",
  31. "sslPort": 0
  32. }
  33. }
  34. }