launchSettings.json 594 B

1234567891011121314151617181920212223242526
  1. {
  2. "profiles": {
  3. "IIS Express": {
  4. "commandName": "IISExpress",
  5. "environmentVariables": {
  6. "ASPNETCORE_ENVIRONMENT": "Development"
  7. }
  8. },
  9. "Business.Host": {
  10. "commandName": "Project",
  11. "launchBrowser": true,
  12. "environmentVariables": {
  13. "ASPNETCORE_ENVIRONMENT": "Development"
  14. },
  15. "applicationUrl": "http://localhost:51186"
  16. }
  17. },
  18. "iisSettings": {
  19. "windowsAuthentication": false,
  20. "anonymousAuthentication": true,
  21. "iisExpress": {
  22. "applicationUrl": "http://localhost:51186",
  23. "sslPort": 0
  24. }
  25. }
  26. }