launchSettings.json 883 B

123456789101112131415161718192021222324252627
  1. {
  2. "profiles": {
  3. "http": {
  4. "commandName": "Project",
  5. "launchBrowser": false,
  6. "environmentVariables": {
  7. "ASPNETCORE_ENVIRONMENT": "Development"
  8. //"ASPNETCORE_URLS": ""
  9. },
  10. "dotnetRunMessages": true,
  11. "applicationUrl": "http://localhost:5033",
  12. "hotReloadEnabled": true
  13. },
  14. "https": {
  15. "commandName": "Project",
  16. "launchBrowser": false,
  17. "environmentVariables": {
  18. "ASPNETCORE_ENVIRONMENT": "Development"
  19. //"ASPNETCORE_URLS": ""
  20. },
  21. "dotnetRunMessages": true,
  22. "applicationUrl": "https://localhost:7205;http://localhost:5033",
  23. "hotReloadEnabled": true
  24. }
  25. },
  26. "$schema": "https://json.schemastore.org/launchsettings.json"
  27. }