launchSettings.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. {
  2. "profiles": {
  3. "UICatalog": {
  4. "commandName": "Project",
  5. "commandLineArgs": "--debug-log-level Debug"
  6. },
  7. "UICatalog --driver windows": {
  8. "commandName": "Project",
  9. "commandLineArgs": "--driver windows -dl Trace"
  10. },
  11. "UICatalog --driver dotnet": {
  12. "commandName": "Project",
  13. "commandLineArgs": "--driver dotnet -dl Trace"
  14. },
  15. "WSL: UICatalog": {
  16. "commandName": "Executable",
  17. "executablePath": "wsl",
  18. "commandLineArgs": "dotnet UICatalog.dll",
  19. "distributionName": ""
  20. },
  21. "WSL: UICatalog --driver dotnet": {
  22. "commandName": "Executable",
  23. "executablePath": "wsl",
  24. "commandLineArgs": "dotnet UICatalog.dll --driver dotnet",
  25. "distributionName": ""
  26. },
  27. "WSL: UICatalog --driver unix": {
  28. "commandName": "Executable",
  29. "executablePath": "wsl",
  30. "commandLineArgs": "dotnet UICatalog.dll --driver unix",
  31. "distributionName": ""
  32. },
  33. "WSL-Gnome: UICatalog": {
  34. "commandName": "Executable",
  35. "executablePath": "wsl",
  36. "commandLineArgs": "bash -c 'while [ ! -e \"$XDG_RUNTIME_DIR/bus\" ]; do sleep 0.1; done; gnome-terminal --wait -- bash -l -c \"dotnet UICatalog.dll; exec bash\"'",
  37. "distributionName": ""
  38. },
  39. "WSL-Gnome: UICatalog --driver dotnet": {
  40. "commandName": "Executable",
  41. "executablePath": "wsl",
  42. "commandLineArgs": "bash -c 'while [ ! -e \"$XDG_RUNTIME_DIR/bus\" ]; do sleep 0.1; done; gnome-terminal --wait -- bash -l -c \"dotnet UICatalog.dll --driver dotnet; exec bash\"'",
  43. "distributionName": ""
  44. },
  45. "WSL-Gnome: UICatalog --driver unix": {
  46. "commandName": "Executable",
  47. "executablePath": "wsl",
  48. "commandLineArgs": "bash -c 'dbus-run-session -- gnome-terminal --wait -- bash -l -c \"dotnet UICatalog.dll --driver unix; exec bash\"'",
  49. "distributionName": ""
  50. },
  51. "Benchmark All": {
  52. "commandName": "Project",
  53. "commandLineArgs": "--benchmark"
  54. },
  55. "Benchmark All --driver dotnet": {
  56. "commandName": "Project",
  57. "commandLineArgs": "--driver dotnet --benchmark"
  58. },
  59. "Benchmark All --driver windows": {
  60. "commandName": "Project",
  61. "commandLineArgs": "--driver windows --benchmark"
  62. },
  63. "WSL: Benchmark All": {
  64. "commandName": "Executable",
  65. "executablePath": "wsl",
  66. "commandLineArgs": "dotnet UICatalog.dll --benchmark",
  67. "distributionName": ""
  68. },
  69. "WSL: Benchmark All --driver unix": {
  70. "commandName": "Executable",
  71. "executablePath": "wsl",
  72. "commandLineArgs": "dotnet UICatalog.dll --driver unix --benchmark",
  73. "distributionName": ""
  74. },
  75. "WSL: Benchmark All --driver dotnet": {
  76. "commandName": "Executable",
  77. "executablePath": "wsl",
  78. "commandLineArgs": "dotnet UICatalog.dll --driver dotnet --benchmark",
  79. "distributionName": ""
  80. },
  81. "Docker": {
  82. "commandName": "Docker"
  83. },
  84. "All Views Tester": {
  85. "commandName": "Project",
  86. "commandLineArgs": "\"All Views Tester\" -b -t 5000"
  87. },
  88. "UICatalog --disable-cm": {
  89. "commandName": "Project",
  90. "commandLineArgs": "--disable-cm\r\n"
  91. },
  92. "UICatalog --disable-cm --driver windows": {
  93. "commandName": "Project",
  94. "commandLineArgs": "--disable-cm --driver windows"
  95. },
  96. "Themes": {
  97. "commandName": "Project",
  98. "commandLineArgs": "Themes"
  99. }
  100. }
  101. }