launchSettings.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "profiles": {
  3. "FNZCM.BlazorWasm": {
  4. "commandName": "Project",
  5. "environmentVariables": {
  6. "ASPNETCORE_ENVIRONMENT": "Development"
  7. },
  8. "dotnetRunMessages": true,
  9. "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
  10. "applicationUrl": "http://localhost:57625"
  11. },
  12. "IIS Express": {
  13. "commandName": "IISExpress",
  14. "environmentVariables": {
  15. "ASPNETCORE_ENVIRONMENT": "Development"
  16. },
  17. "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
  18. "dotnet": {
  19. "commandName": "Project",
  20. "hotReloadProfile": "aspnetcore"
  21. }
  22. },
  23. "HotLoad": {
  24. "commandName": "Executable",
  25. "executablePath": "dotnet",
  26. "commandLineArgs": "watch",
  27. "workingDirectory": ".",
  28. "environmentVariables": {
  29. "DOTNET_WATCH_SUPPRESS_LAUNCH_BROWSER": "1"
  30. }
  31. }
  32. },
  33. "iisSettings": {
  34. "windowsAuthentication": false,
  35. "anonymousAuthentication": true,
  36. "iisExpress": {
  37. "applicationUrl": "http://localhost:5263",
  38. "sslPort": 0
  39. }
  40. }
  41. }