From 2ace2ab24aa172c70b500a51d92f8518f51181fd Mon Sep 17 00:00:00 2001 From: SteVen Batten Date: Mon, 27 Apr 2020 09:50:19 -0700 Subject: [PATCH] fixes #93939 --- src/vs/workbench/api/browser/viewsExtensionPoint.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vs/workbench/api/browser/viewsExtensionPoint.ts b/src/vs/workbench/api/browser/viewsExtensionPoint.ts index 926816edf38..b4f4a445602 100644 --- a/src/vs/workbench/api/browser/viewsExtensionPoint.ts +++ b/src/vs/workbench/api/browser/viewsExtensionPoint.ts @@ -54,7 +54,8 @@ const viewsContainerSchema: IJSONSchema = { description: localize('vscode.extension.contributes.views.containers.icon', "Path to the container icon. Icons are 24x24 centered on a 50x40 block and have a fill color of 'rgb(215, 218, 224)' or '#d7dae0'. It is recommended that icons be in SVG, though any image file type is accepted."), type: 'string' } - } + }, + required: ['id', 'title', 'icon'] }; export const viewsContainersContribution: IJSONSchema = {