launchSettings.json 631 B

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