From 28205c8a17418779e0f8cf87e41b7174c48f6454 Mon Sep 17 00:00:00 2001 From: "Pierson Lee (PIE)" Date: Wed, 10 Oct 2018 17:46:14 -0700 Subject: [PATCH] Update CHANGELOG.md and copyDebuggerDependencies Update for VSCodeDebugProtocol dll and for the Integratedterminal Work. --- Extension/CHANGELOG.md | 4 ++++ Extension/src/Support/copyDebuggerDependencies.ts | 2 ++ 2 files changed, 6 insertions(+) diff --git a/Extension/CHANGELOG.md b/Extension/CHANGELOG.md index ad01af2d8..bdfc0ef6b 100644 --- a/Extension/CHANGELOG.md +++ b/Extension/CHANGELOG.md @@ -1,5 +1,9 @@ # C/C++ for Visual Studio Code Change Log +## Version 0.19.1-insiders2: October 11th, 2018 +* Add IntegratedTerminal support for Linux and Windows. [#35](https://github.com/microsoft/vscode-cpptools/issues/35) +* Unify Visual Studio Code debug protocol parsing by using a shared library with Visual Studio. + ## Version 0.19.1-insiders: October 9th, 2018 * Fix IntelliSense-based `Go to Definition` on overloads. [#1071](https://github.com/Microsoft/vscode-cpptools/issues/1071) * Fix IntelliSense failing if recursive includes removes all paths. [#2442](https://github.com/Microsoft/vscode-cpptools/issues/2442) diff --git a/Extension/src/Support/copyDebuggerDependencies.ts b/Extension/src/Support/copyDebuggerDependencies.ts index 2482dde74..fe8d03569 100644 --- a/Extension/src/Support/copyDebuggerDependencies.ts +++ b/Extension/src/Support/copyDebuggerDependencies.ts @@ -129,6 +129,8 @@ function copyBinaryDependencies(): void { copy(openDebugRoot, DebugAdapterBinPath, "OpenDebugAD7.exe.config"); copy(openDebugRoot, DebugAdapterBinPath, "OpenDebugAD7.exe.mdb"); copy(openDebugRoot, DebugAdapterBinPath, "Newtonsoft.Json.dll"); + copy(openDebugRoot, DebugAdapterBinPath, "WindowsDebugLauncher.exe"); + copy(openDebugRoot, DebugAdapterBinPath, "Microsoft.VisualStudio.Shared.VSCodeDebugProtocol.dll"); } function copyMonoDependencies(): void {