launchSettings.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "profiles": {
  3. "http": {
  4. "commandName": "Project",
  5. "launchBrowser": true,
  6. "environmentVariables": {
  7. "ASPNETCORE_ENVIRONMENT": "Development"
  8. },
  9. "dotnetRunMessages": true,
  10. "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
  11. "applicationUrl": "http://0.0.0.0:5201"
  12. },
  13. "HotLoad": {
  14. "commandName": "Executable",
  15. "executablePath": "dotnet",
  16. "commandLineArgs": "watch",
  17. "workingDirectory": ".",
  18. "environmentVariables": {
  19. "DOTNET_WATCH_SUPPRESS_LAUNCH_BROWSER": "1"
  20. }
  21. },
  22. "WSL": {
  23. "commandName": "WSL2",
  24. "launchBrowser": true,
  25. "launchUrl": "http://localhost:5201",
  26. "environmentVariables": {
  27. "ASPNETCORE_ENVIRONMENT": "Development",
  28. "ASPNETCORE_URLS": "http://localhost:5201"
  29. },
  30. "distributionName": ""
  31. },
  32. "IIS Express": {
  33. "commandName": "IISExpress",
  34. "launchBrowser": true,
  35. "environmentVariables": {
  36. "ASPNETCORE_ENVIRONMENT": "Development"
  37. },
  38. "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}"
  39. }
  40. },
  41. "iisSettings": {
  42. "windowsAuthentication": false,
  43. "anonymousAuthentication": true,
  44. "iisExpress": {
  45. "applicationUrl": "http://localhost:63687",
  46. "sslPort": 0
  47. }
  48. }
  49. }