Skip to content

Commit

Permalink
fix issue: #159 (#527)
Browse files Browse the repository at this point in the history
Image placeholder and Dockerfile path verification error persists after renaming deployment.template.json/module.json
  • Loading branch information
SLdragon committed Jan 10, 2020
1 parent e8353b3 commit e1edff7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/extension.ts
Expand Up @@ -75,6 +75,7 @@ export function activate(context: vscode.ExtensionContext) {
// https://github.com/Microsoft/vscode/issues/27100
context.subscriptions.push(vscode.window.onDidChangeActiveTextEditor((event) => { if (event) { configDiagnosticProvider.updateDiagnostics(event.document, diagCollection); } }));
context.subscriptions.push(vscode.workspace.onDidSaveTextDocument((document) => configDiagnosticProvider.updateDiagnostics(document, diagCollection)));
context.subscriptions.push(vscode.workspace.onDidCloseTextDocument((document) => diagCollection.delete(document.uri)));
context.subscriptions.push(outputChannel);

context.subscriptions.push(vscode.debug.registerDebugConfigurationProvider("edge-coreclr", {resolveDebugConfiguration}));
Expand Down

0 comments on commit e1edff7

Please sign in to comment.