launchSettings.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "iisSettings": {
  3. //#if (WindowsAuth)
  4. "windowsAuthentication": true,
  5. "anonymousAuthentication": false,
  6. //#else
  7. "windowsAuthentication": false,
  8. "anonymousAuthentication": true,
  9. //#endif
  10. "iisExpress": {
  11. "applicationUrl": "http://localhost:8080",
  12. //#if (HasHttpsProfile)
  13. "sslPort": 44300
  14. //#else
  15. "sslPort": 0
  16. //#endif
  17. }
  18. },
  19. "profiles": {
  20. "http": {
  21. "commandName": "Project",
  22. "dotnetRunMessages": true,
  23. "launchBrowser": true,
  24. "applicationUrl": "http://localhost:5000",
  25. "environmentVariables": {
  26. "ASPNETCORE_ENVIRONMENT": "Development"
  27. }
  28. },
  29. //#if (HasHttpsProfile)
  30. "https": {
  31. "commandName": "Project",
  32. "dotnetRunMessages": true,
  33. "launchBrowser": true,
  34. "applicationUrl": "https://localhost:5001;http://localhost:5000",
  35. "environmentVariables": {
  36. "ASPNETCORE_ENVIRONMENT": "Development"
  37. }
  38. },
  39. //#endif
  40. "IIS Express": {
  41. "commandName": "IISExpress",
  42. "launchBrowser": true,
  43. "environmentVariables": {
  44. "ASPNETCORE_ENVIRONMENT": "Development"
  45. }
  46. }
  47. }
  48. }