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