launchSettings.json 752 B

12345678910111213141516171819202122232425
  1. {
  2. "$schema": "http://json.schemastore.org/launchsettings.json",
  3. "profiles": {
  4. "http": {
  5. "commandName": "Project",
  6. "dotnetRunMessages": true,
  7. "launchBrowser": true,
  8. "launchUrl": "http://localhost:5292/v1/status",
  9. "applicationUrl": "http://localhost:5292",
  10. "environmentVariables": {
  11. "ASPNETCORE_ENVIRONMENT": "Development"
  12. }
  13. },
  14. "https": {
  15. "commandName": "Project",
  16. "dotnetRunMessages": true,
  17. "launchBrowser": true,
  18. "launchUrl": "https://localhost:7169/v1/status",
  19. "applicationUrl": "https://localhost:7169;http://localhost:5292",
  20. "environmentVariables": {
  21. "ASPNETCORE_ENVIRONMENT": "Development"
  22. }
  23. }
  24. }
  25. }