@@ -30,15 +30,15 @@ export interface LaunchTarget {
30
30
description : string ;
31
31
directory : string ;
32
32
target : string ;
33
- kind : LaunchTargetKind ;
33
+ workspaceKind : LaunchTargetKind ;
34
34
}
35
35
36
36
export const vslsTarget : LaunchTarget = {
37
37
label : "VSLS" ,
38
38
description : "Visual Studio Live Share" ,
39
39
directory : "" ,
40
40
target : "" ,
41
- kind : LaunchTargetKind . LiveShare
41
+ workspaceKind : LaunchTargetKind . LiveShare
42
42
} ;
43
43
44
44
/** Live share scheme */
@@ -144,7 +144,7 @@ export function resourcesAndFolderMapToLaunchTargets(resources: vscode.Uri[], wo
144
144
description : vscode . workspace . asRelativePath ( dirname ) ,
145
145
target : resource . fsPath ,
146
146
directory : path . dirname ( resource . fsPath ) ,
147
- kind : LaunchTargetKind . Solution
147
+ workspaceKind : LaunchTargetKind . Solution
148
148
} ) ;
149
149
}
150
150
// Add project.json files
@@ -156,7 +156,7 @@ export function resourcesAndFolderMapToLaunchTargets(resources: vscode.Uri[], wo
156
156
description : vscode . workspace . asRelativePath ( dirname ) ,
157
157
target : dirname ,
158
158
directory : dirname ,
159
- kind : LaunchTargetKind . ProjectJson
159
+ workspaceKind : LaunchTargetKind . ProjectJson
160
160
} ) ;
161
161
}
162
162
// Add .csproj files
@@ -170,7 +170,7 @@ export function resourcesAndFolderMapToLaunchTargets(resources: vscode.Uri[], wo
170
170
description : vscode . workspace . asRelativePath ( dirname ) ,
171
171
target : dirname ,
172
172
directory : dirname ,
173
- kind : LaunchTargetKind . Project
173
+ workspaceKind : LaunchTargetKind . Project
174
174
} ) ;
175
175
}
176
176
else {
@@ -198,7 +198,7 @@ export function resourcesAndFolderMapToLaunchTargets(resources: vscode.Uri[], wo
198
198
description : 'All contained projects' ,
199
199
target : folderPath ,
200
200
directory : folderPath ,
201
- kind : LaunchTargetKind . Folder
201
+ workspaceKind : LaunchTargetKind . Folder
202
202
} ) ;
203
203
}
204
204
@@ -209,7 +209,7 @@ export function resourcesAndFolderMapToLaunchTargets(resources: vscode.Uri[], wo
209
209
description : path . basename ( folderPath ) ,
210
210
target : folderPath ,
211
211
directory : folderPath ,
212
- kind : LaunchTargetKind . Csx
212
+ workspaceKind : LaunchTargetKind . Csx
213
213
} ) ;
214
214
}
215
215
@@ -220,7 +220,7 @@ export function resourcesAndFolderMapToLaunchTargets(resources: vscode.Uri[], wo
220
220
description : path . basename ( folderPath ) ,
221
221
target : folderPath ,
222
222
directory : folderPath ,
223
- kind : LaunchTargetKind . Cake
223
+ workspaceKind : LaunchTargetKind . Cake
224
224
} ) ;
225
225
}
226
226
@@ -230,7 +230,7 @@ export function resourcesAndFolderMapToLaunchTargets(resources: vscode.Uri[], wo
230
230
description : '' ,
231
231
target : folderPath ,
232
232
directory : folderPath ,
233
- kind : LaunchTargetKind . Folder
233
+ workspaceKind : LaunchTargetKind . Folder
234
234
} ) ;
235
235
}
236
236
} ) ;
0 commit comments