launchSettings.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "profiles": {
  3. "UICatalog": {
  4. "commandName": "Project"
  5. },
  6. "UICatalog --driver NetDriver": {
  7. "commandName": "Project",
  8. "commandLineArgs": "--driver NetDriver"
  9. },
  10. "UICatalog --driver WindowsDriver": {
  11. "commandName": "Project",
  12. "commandLineArgs": "--driver WindowsDriver"
  13. },
  14. "WSL: UICatalog": {
  15. "commandName": "Executable",
  16. "executablePath": "wsl",
  17. "commandLineArgs": "dotnet UICatalog.dll",
  18. "distributionName": ""
  19. },
  20. "WSL: UICatalog --driver NetDriver": {
  21. "commandName": "Executable",
  22. "executablePath": "wsl",
  23. "commandLineArgs": "dotnet UICatalog.dll --driver NetDriver",
  24. "distributionName": ""
  25. },
  26. "Benchmark All": {
  27. "commandName": "Project",
  28. "commandLineArgs": "--benchmark"
  29. },
  30. "Benchmark All --driver NetDriver": {
  31. "commandName": "Project",
  32. "commandLineArgs": "--driver NetDriver --benchmark"
  33. },
  34. "WSL: Benchmark All": {
  35. "commandName": "Executable",
  36. "executablePath": "wsl",
  37. "commandLineArgs": "dotnet UICatalog.dll --benchmark",
  38. "distributionName": ""
  39. },
  40. "Docker": {
  41. "commandName": "Docker"
  42. },
  43. "All Views Tester": {
  44. "commandName": "Project",
  45. "commandLineArgs": "\"All Views Tester\" -b -t 5000"
  46. },
  47. "Charmap": {
  48. "commandName": "Project",
  49. "commandLineArgs": "Bars -b"
  50. }
  51. }
  52. }