launchSettings.json 712 B

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