|
9 | 9 | "type": "coreclr", |
10 | 10 | "request": "launch", |
11 | 11 | "program": "${workspaceFolder}/src/FsAutoComplete/bin/Debug/net6.0/fsautocomplete.dll", |
12 | | - "args": [ |
13 | | - "--mode", |
14 | | - "lsp" |
15 | | - ], |
| 12 | + "args": ["--mode", "lsp"], |
16 | 13 | "cwd": "${workspaceFolder}", |
17 | 14 | "console": "internalConsole", |
18 | 15 | "stopAtEntry": false, |
19 | | - "internalConsoleOptions": "openOnSessionStart" |
| 16 | + "internalConsoleOptions": "openOnSessionStart", |
| 17 | + "preLaunchTask": "build debug" |
20 | 18 | }, |
21 | 19 | { |
22 | 20 | "name": ".NET Core Attach", |
|
49 | 47 | } |
50 | 48 | }, |
51 | 49 | "enableStepFiltering": false, |
52 | | - "args": [ |
53 | | - "--debug", |
54 | | - "--filter", |
55 | | - "FSAC.lsp.${input:loader}.${input:compiler}.${input:testName}" |
56 | | - ] |
| 50 | + "args": ["--debug", "--filter", "FSAC.lsp.${input:loader}.${input:compiler}.${input:testName}"], |
| 51 | + "preLaunchTask": "build debug" |
57 | 52 | }, |
58 | 53 | { |
59 | 54 | "name": "Pick General tests", |
|
74 | 69 | } |
75 | 70 | }, |
76 | 71 | "enableStepFiltering": false, |
77 | | - "args": [ |
78 | | - "--debug", |
79 | | - "--filter", |
80 | | - "FSAC.general.${input:testName}" |
81 | | - ] |
| 72 | + "args": ["--debug", "--filter", "FSAC.general.${input:testName}"], |
| 73 | + "preLaunchTask": "build debug" |
82 | 74 | } |
83 | 75 | ], |
84 | 76 | "inputs": [ |
85 | 77 | { |
86 | 78 | "id": "tfm", |
87 | 79 | "description": "The TFM of the test to run", |
88 | | - "options": [ |
89 | | - "net6.0", |
90 | | - "net7.0" |
91 | | - ], |
| 80 | + "options": ["net6.0", "net7.0"], |
92 | 81 | "default": "net7.0", |
93 | 82 | "type": "pickString" |
94 | 83 | }, |
95 | 84 | { |
96 | 85 | "id": "loader", |
97 | 86 | "description": "The loader to use for the test", |
98 | | - "options": [ |
99 | | - "Ionide WorkspaceLoader", |
100 | | - "MSBuild Project Graph WorkspaceLoader" |
101 | | - ], |
| 87 | + "options": ["Ionide WorkspaceLoader", "MSBuild Project Graph WorkspaceLoader"], |
102 | 88 | "default": "WorkspaceLoader", |
103 | 89 | "type": "pickString" |
104 | 90 | }, |
105 | 91 | { |
106 | 92 | "id": "compiler", |
107 | 93 | "description": "The compiler to use", |
108 | | - "options": [ |
109 | | - "BackgroundCompiler", |
110 | | - "TransparentCompiler" |
111 | | - ], |
| 94 | + "options": ["BackgroundCompiler", "TransparentCompiler"], |
112 | 95 | "default": "BackgroundCompiler", |
113 | | - "type": "pickString", |
| 96 | + "type": "pickString" |
114 | 97 | }, |
115 | 98 | { |
116 | 99 | "id": "testName", |
|
0 commit comments