mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Credentials and Serilization shouldn't register for all features (#833)
* change credentials and serilization so they don't register for all features * vbump dataprotocol
This commit is contained in:
@@ -501,10 +501,8 @@ function prepareXlfFiles(projectName, extensionName) {
|
||||
}
|
||||
exports.prepareXlfFiles = prepareXlfFiles;
|
||||
var editorProject = 'vscode-editor', workbenchProject = 'vscode-workbench', extensionsProject = 'vscode-extensions', setupProject = 'vscode-setup';
|
||||
|
||||
// {{SQL CARBON EDIT}}
|
||||
var sqlopsProject = 'sqlops-core';
|
||||
|
||||
function getResource(sourceFile) {
|
||||
var resource;
|
||||
if (/^vs\/platform/.test(sourceFile)) {
|
||||
@@ -533,12 +531,9 @@ function getResource(sourceFile) {
|
||||
else if (/^vs\/workbench/.test(sourceFile)) {
|
||||
return { name: 'vs/workbench', project: workbenchProject };
|
||||
}
|
||||
|
||||
// {{SQL CARBON EDIT}}
|
||||
else if (/^sql/.test(sourceFile)) {
|
||||
return { name: 'sql', project: sqlopsProject };
|
||||
}
|
||||
|
||||
else if (/^sql/.test(sourceFile)) {
|
||||
return { name: 'sql', project: sqlopsProject };
|
||||
}
|
||||
throw new Error("Could not identify the XLF bundle for " + sourceFile);
|
||||
}
|
||||
exports.getResource = getResource;
|
||||
|
||||
Reference in New Issue
Block a user