From 12bc6be78dd475b8cb2d57873105266a0b099a1f Mon Sep 17 00:00:00 2001 From: Maruthan G Date: Thu, 16 Apr 2026 20:55:52 +0530 Subject: [PATCH] fix(tasks): add hover description for required property in taskDefinitions contribution schema (#275670) --- src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.ts b/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.ts index 153e1af45ff34..7f48c40dce3f4 100644 --- a/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.ts +++ b/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.ts @@ -27,6 +27,7 @@ const taskDefinitionSchema: IJSONSchema = { }, required: { type: 'array', + markdownDescription: nls.localize('TaskDefinition.required', 'The names of the properties from the `properties` object that must be provided for a task of this type to be considered a match. Used by VS Code to associate a `tasks.json` entry with a registered task provider.'), items: { type: 'string' }