launchSettings.json 679 B

12345678910111213141516171819202122232425
  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:5033",
  11. "hotReloadEnabled": true
  12. },
  13. "https": {
  14. "commandName": "Project",
  15. "launchBrowser": true,
  16. "environmentVariables": {
  17. "ASPNETCORE_ENVIRONMENT": "Development"
  18. },
  19. "dotnetRunMessages": true,
  20. "applicationUrl": "https://localhost:7205;http://localhost:5033",
  21. "hotReloadEnabled": true
  22. }
  23. },
  24. "$schema": "https://json.schemastore.org/launchsettings.json"
  25. }