launchSettings.json 852 B

12345678910111213141516171819202122232425
  1. {
  2. "$schema": "https://json.schemastore.org/launchsettings.json",
  3. "profiles": {
  4. "http": {
  5. "commandName": "Project",
  6. "dotnetRunMessages": true,
  7. "launchBrowser": true,
  8. "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
  9. "applicationUrl": "http://localhost:5296",
  10. "environmentVariables": {
  11. "ASPNETCORE_ENVIRONMENT": "Development"
  12. }
  13. },
  14. "https": {
  15. "commandName": "Project",
  16. "dotnetRunMessages": true,
  17. "launchBrowser": true,
  18. "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
  19. "applicationUrl": "https://localhost:7164;http://localhost:5296",
  20. "environmentVariables": {
  21. "ASPNETCORE_ENVIRONMENT": "Development"
  22. }
  23. }
  24. }
  25. }