launchSettings.json 747 B

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