launchSettings.json 1007 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "$schema": "http://json.schemastore.org/launchsettings.json",
  3. "profiles": {
  4. "http": {
  5. "commandName": "Project",
  6. "dotnetRunMessages": true,
  7. "launchBrowser": true,
  8. "launchUrl": "swagger",
  9. "applicationUrl": "http://localhost:5172",
  10. "environmentVariables": {
  11. "ASPNETCORE_ENVIRONMENT": "Development"
  12. }
  13. },
  14. "demo.larcanum.net": {
  15. "commandName": "Project",
  16. "dotnetRunMessages": true,
  17. "launchBrowser": false,
  18. "launchUrl": "swagger",
  19. "applicationUrl": "http://0.0.0.0:8765",
  20. "environmentVariables": {
  21. "ASPNETCORE_ENVIRONMENT": "Development"
  22. }
  23. },
  24. "https": {
  25. "commandName": "Project",
  26. "dotnetRunMessages": true,
  27. "launchBrowser": true,
  28. "launchUrl": "swagger",
  29. "applicationUrl": "https://localhost:7098;http://localhost:5172",
  30. "environmentVariables": {
  31. "ASPNETCORE_ENVIRONMENT": "Development"
  32. }
  33. }
  34. }
  35. }