launchSettings.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "profiles": {
  3. "UICatalog": {
  4. "commandName": "Project"
  5. },
  6. "WSL : UICatalog": {
  7. "commandName": "Executable",
  8. "executablePath": "wsl",
  9. "commandLineArgs": "dotnet UICatalog.dll",
  10. "distributionName": ""
  11. },
  12. "UICatalog -usc": {
  13. "commandName": "Project",
  14. "commandLineArgs": "-usc"
  15. },
  16. "WSL: UICatalog -usc": {
  17. "commandName": "Executable",
  18. "executablePath": "wsl",
  19. "commandLineArgs": "dotnet UICatalog.dll -usc",
  20. "distributionName": ""
  21. },
  22. "Wizards": {
  23. "commandName": "Project",
  24. "commandLineArgs": "Wizards"
  25. },
  26. "Dialogs": {
  27. "commandName": "Project",
  28. "commandLineArgs": "Dialogs"
  29. },
  30. "Buttons": {
  31. "commandName": "Project",
  32. "commandLineArgs": "Buttons"
  33. },
  34. "WizardAsView": {
  35. "commandName": "Project",
  36. "commandLineArgs": "WizardAsView"
  37. },
  38. "CollectionNavigatorTester": {
  39. "commandName": "Project",
  40. "commandLineArgs": "\"Search Collection Nav\""
  41. },
  42. "Charmap": {
  43. "commandName": "Project",
  44. "commandLineArgs": "\"Character Map\""
  45. },
  46. "All Views Tester": {
  47. "commandName": "Project",
  48. "commandLineArgs": "\"All Views Tester\""
  49. },
  50. "Windows & FrameViews": {
  51. "commandName": "Project",
  52. "commandLineArgs": "\"Windows & FrameViews\""
  53. }
  54. }
  55. }