launchSettings.json 800 B

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