launchSettings.json 1022 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": false,
  4. "anonymousAuthentication": true,
  5. "iisExpress": {
  6. "applicationUrl": "http://localhost:48614",
  7. "sslPort": 44373
  8. }
  9. },
  10. "profiles": {
  11. "IIS Express": {
  12. "commandName": "IISExpress",
  13. "launchBrowser": true,
  14. "environmentVariables": {
  15. "ASPNETCORE_ENVIRONMENT": "Development",
  16. "ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"
  17. }
  18. },
  19. "LotteryWebApp": {
  20. "commandName": "Project",
  21. "launchBrowser": true,
  22. "environmentVariables": {
  23. "ASPNETCORE_ENVIRONMENT": "Development",
  24. "ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"
  25. },
  26. "applicationUrl": "http://localhost:8800"
  27. },
  28. "Docker": {
  29. "commandName": "Docker",
  30. "launchBrowser": true,
  31. "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}",
  32. "publishAllPorts": true,
  33. "useSSL": true
  34. }
  35. }
  36. }