launchSettings.json 786 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": false,
  4. "anonymousAuthentication": true,
  5. "iisExpress": {
  6. "applicationUrl": "http://localhost:10176/",
  7. "sslPort": 44304
  8. }
  9. },
  10. "$schema": "http://json.schemastore.org/launchsettings.json",
  11. "profiles": {
  12. "IIS Express": {
  13. "commandName": "IISExpress",
  14. "launchBrowser": true,
  15. "launchUrl": "swagger",
  16. "environmentVariables": {
  17. "ASPNETCORE_ENVIRONMENT": "Development"
  18. }
  19. },
  20. "KnowledgeBase": {
  21. "commandName": "Project",
  22. "launchBrowser": true,
  23. "launchUrl": "swagger",
  24. "environmentVariables": {
  25. "ASPNETCORE_ENVIRONMENT": "Development"
  26. },
  27. "dotnetRunMessages": "true",
  28. "applicationUrl": "http://localhost:5000"
  29. }
  30. }
  31. }