launchSettings.json 833 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "profiles": {
  3. "IIS Express": {
  4. "commandName": "IISExpress",
  5. "launchBrowser": true,
  6. "environmentVariables": {
  7. "ASPNETCORE_ENVIRONMENT": "Development",
  8. "ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"
  9. }
  10. },
  11. "ProductionLineMonitor.Web": {
  12. "commandName": "Project",
  13. "launchBrowser": true,
  14. "environmentVariables": {
  15. "ASPNETCORE_ENVIRONMENT": "Development",
  16. "ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"
  17. },
  18. "applicationUrl": "http://localhost:5002"
  19. }
  20. },
  21. "iisSettings": {
  22. "windowsAuthentication": false,
  23. "anonymousAuthentication": true,
  24. "iisExpress": {
  25. "applicationUrl": "http://localhost:5001",
  26. "sslPort": 0
  27. }
  28. }
  29. }