Родитель
8dd5db1bc3
Коммит
db895b0de7
|
@ -2,7 +2,7 @@
|
||||||
"name": "azure-iot-toolkit",
|
"name": "azure-iot-toolkit",
|
||||||
"displayName": "Azure IoT Hub Toolkit",
|
"displayName": "Azure IoT Hub Toolkit",
|
||||||
"description": "Interact with Azure IoT Hub, IoT Device Management, IoT Edge Management, IoT Hub Device Simulation, IoT Hub Code Generation",
|
"description": "Interact with Azure IoT Hub, IoT Device Management, IoT Edge Management, IoT Hub Device Simulation, IoT Hub Code Generation",
|
||||||
"version": "2.9.0-rc",
|
"version": "2.9.0-rc2",
|
||||||
"publisher": "vsciot-vscode",
|
"publisher": "vsciot-vscode",
|
||||||
"aiKey": "0caaff90-cc1c-4def-b64c-3ef33615bc9b",
|
"aiKey": "0caaff90-cc1c-4def-b64c-3ef33615bc9b",
|
||||||
"icon": "logo.png",
|
"icon": "logo.png",
|
||||||
|
|
|
@ -27,9 +27,8 @@ export class SnippetManager extends BaseExplorer {
|
||||||
}
|
}
|
||||||
let document = editor.document;
|
let document = editor.document;
|
||||||
let text = document.getText();
|
let text = document.getText();
|
||||||
let config = Utility.getConfiguration();
|
this.connectionStringKeys.forEach(async (connectionStringKey) => {
|
||||||
this.connectionStringKeys.forEach((connectionStringKey) => {
|
let connectionStringValue = await Utility.getConnectionStringWithId(connectionStringKey);
|
||||||
let connectionStringValue = config.get<string>(connectionStringKey);
|
|
||||||
let connectionStringKeyWithAngleBracket = this.getTextWithAngleBracket(connectionStringKey);
|
let connectionStringKeyWithAngleBracket = this.getTextWithAngleBracket(connectionStringKey);
|
||||||
if (changedText.indexOf(connectionStringKeyWithAngleBracket) > -1
|
if (changedText.indexOf(connectionStringKeyWithAngleBracket) > -1
|
||||||
&& connectionStringValue && !connectionStringValue.startsWith("<<insert")) {
|
&& connectionStringValue && !connectionStringValue.startsWith("<<insert")) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче