launchSettings.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "profiles": {
  3. "IIS Express": {
  4. "commandName": "IISExpress",
  5. "launchBrowser": true,
  6. "launchUrl": "api/Staff/getAll",
  7. "environmentVariables": {
  8. "ASPNETCORE_ENVIRONMENT": "Development"
  9. }
  10. },
  11. "wispro.sp.api": {
  12. "commandName": "Project",
  13. "launchBrowser": true,
  14. "launchUrl": "api/Staff/getAll",
  15. "environmentVariables": {
  16. "ASPNETCORE_ENVIRONMENT": "Development"
  17. },
  18. "applicationUrl": "http://localhost:5000"
  19. },
  20. "WSL": {
  21. "commandName": "WSL2",
  22. "launchBrowser": true,
  23. "launchUrl": "http://localhost:5000/api/Staff/getAll",
  24. "environmentVariables": {
  25. "ASPNETCORE_ENVIRONMENT": "Development",
  26. "ASPNETCORE_URLS": "http://localhost:5000"
  27. },
  28. "distributionName": ""
  29. }
  30. },
  31. "$schema": "http://json.schemastore.org/launchsettings.json",
  32. "iisSettings": {
  33. "windowsAuthentication": false,
  34. "anonymousAuthentication": true,
  35. "iisExpress": {
  36. "applicationUrl": "http://localhost:39476",
  37. "sslPort": 0
  38. }
  39. }
  40. }