launchSettings.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "profiles": {
  3. "IIS Express": {
  4. "commandName": "IISExpress",
  5. "launchBrowser": true,
  6. "environmentVariables": {
  7. "ASPNETCORE_ENVIRONMENT": "Development"
  8. }
  9. },
  10. "Admin.NET.Web.Entry": {
  11. "commandName": "Project",
  12. "launchBrowser": true,
  13. "environmentVariables": {
  14. "ASPNETCORE_ENVIRONMENT": "Development"
  15. },
  16. "dotnetRunMessages": true,
  17. "applicationUrl": "https://localhost:5001;http://localhost:5000"
  18. },
  19. "Docker": {
  20. "commandName": "Docker",
  21. "launchBrowser": true,
  22. "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}",
  23. "publishAllPorts": true,
  24. "useSSL": true
  25. }
  26. },
  27. "iisSettings": {
  28. "windowsAuthentication": false,
  29. "anonymousAuthentication": true,
  30. "iisExpress": {
  31. "applicationUrl": "https://localhost:44326",
  32. "sslPort": 44326
  33. }
  34. }
  35. }