launchSettings.json 989 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "profiles": {
  3. "http": {
  4. "commandName": "Project",
  5. "launchBrowser": true,
  6. "environmentVariables": {
  7. "ASPNETCORE_ENVIRONMENT": "Development"
  8. },
  9. "dotnetRunMessages": true,
  10. "applicationUrl": "http://localhost:5259"
  11. },
  12. "https": {
  13. "commandName": "Project",
  14. "launchBrowser": true,
  15. "environmentVariables": {
  16. "ASPNETCORE_ENVIRONMENT": "Development"
  17. },
  18. "dotnetRunMessages": true,
  19. "applicationUrl": "https://localhost:7293;http://localhost:5259"
  20. },
  21. "IIS Express": {
  22. "commandName": "IISExpress",
  23. "launchBrowser": true,
  24. "environmentVariables": {
  25. "ASPNETCORE_ENVIRONMENT": "Development"
  26. }
  27. }
  28. },
  29. "$schema": "http://json.schemastore.org/launchsettings.json",
  30. "iisSettings": {
  31. "windowsAuthentication": false,
  32. "anonymousAuthentication": true,
  33. "iisExpress": {
  34. "applicationUrl": "http://localhost:4741",
  35. "sslPort": 44344
  36. }
  37. }
  38. }