This commit is contained in:
Sandeep Somavarapu
2018-04-23 16:35:42 +02:00
parent 77082177db
commit 3b951162e9

View File

@@ -79,7 +79,7 @@ class ViewsContainersExtensionHandler implements IWorkbenchContribution {
for (let extension of extensions) {
const { value, collector } = extension;
if (!extension.description.enableProposedApi) {
collector.error(localize({ key: 'proposed', comment: ['Contribution refers to those that an extension contributes to VS Code through an extension/contribution point. '] }, "'{0}' contribution is only available when running out of dev or with the following command line switch: --enable-proposed-api {1}", 'viewsContainer', extension.description.id));
collector.error(localize({ key: 'proposed', comment: ['Contribution refers to those that an extension contributes to VS Code through an extension/contribution point. '] }, "'viewsContainer' contribution is only available when running out of dev or with the following command line switch: --enable-proposed-api {0}", extension.description.id));
continue;
}
forEach(value, entry => {