launchSettings.json 647 B

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