launchSettings.json 781 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "profiles": {
  3. "Safeguard": {
  4. "commandName": "Project",
  5. "launchBrowser": true,
  6. "launchUrl": "swagger",
  7. "environmentVariables": {
  8. "ASPNETCORE_ENVIRONMENT": "Development"
  9. },
  10. "dotnetRunMessages": true,
  11. "applicationUrl": "http://localhost:5185"
  12. },
  13. "IIS Express": {
  14. "commandName": "IISExpress",
  15. "launchBrowser": true,
  16. "launchUrl": "swagger",
  17. "environmentVariables": {
  18. "ASPNETCORE_ENVIRONMENT": "Development"
  19. }
  20. }
  21. },
  22. "$schema": "https://json.schemastore.org/launchsettings.json",
  23. "iisSettings": {
  24. "windowsAuthentication": false,
  25. "anonymousAuthentication": true,
  26. "iisExpress": {
  27. "applicationUrl": "http://localhost:49939/",
  28. "sslPort": 44370
  29. }
  30. }
  31. }