launchSettings.json 913 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "iisSettings": {
  3. "windowsAuthentication": false,
  4. "anonymousAuthentication": true,
  5. "iis": {
  6. "applicationUrl": "http://localhost/WK_KLI_LAPS_COMMONTOOL_Service",
  7. "sslPort": 0
  8. },
  9. "iisExpress": {
  10. "applicationUrl": "http://localhost:44379",
  11. "sslPort": 44300
  12. }
  13. },
  14. "$schema": "http://json.schemastore.org/launchsettings.json",
  15. "profiles": {
  16. "IIS Express": {
  17. "commandName": "IISExpress",
  18. "launchBrowser": true,
  19. "launchUrl": "api/values",
  20. "environmentVariables": {
  21. "ASPNETCORE_ENVIRONMENT": "Development"
  22. }
  23. },
  24. "WK_KLI_LAPS_COMMONTOOL_Service": {
  25. "commandName": "IISExpress",
  26. "launchBrowser": true,
  27. "launchUrl": "api/values",
  28. "environmentVariables": {
  29. "ASPNETCORE_ENVIRONMENT": "Development"
  30. },
  31. "applicationUrl": "https://localhost:5001;http://localhost:5000"
  32. }
  33. }
  34. }