move api to azdata (#6517)

* move api to azdata

* comments
This commit is contained in:
Alan Ren
2019-07-30 19:06:46 -07:00
committed by GitHub
parent 3f5bdb86cd
commit 892a8b5ced
7 changed files with 5339 additions and 5287 deletions

View File

@@ -47,3 +47,16 @@ Registry.as<IConfigurationRegistry>(ConfigExtensions.Configuration).registerConf
}
}
});
Registry.as<IConfigurationRegistry>(ConfigExtensions.Configuration).registerConfiguration({
'id': 'enableObsoleteApiUsageNotification',
'title': nls.localize('enableObsoleteApiUsageNotificationTitle', "Obsolete API Notification"),
'type': 'object',
'properties': {
'workbench.enableObsoleteApiUsageNotification': {
'type': 'boolean',
'default': true,
'description': nls.localize('enableObsoleteApiUsageNotification', "Enable/disable obsolete API usage notification")
}
}
});