Skip to content

Commit 805939f

Browse files
authored
Merge pull request #2662 from Microsoft/seanmcm/0_19_1_insiders2_merge
Seanmcm/0 19 1 insiders2 merge
2 parents 7545345 + 0e1cd2b commit 805939f

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Extension/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# C/C++ for Visual Studio Code Change Log
22

3-
## Version 0.19.1-insiders2: October 11th, 2018
3+
## Version 0.19.1-insiders2: October 12, 2018
44
* Add IntegratedTerminal support for Linux and Windows. [#35](https://github.com/microsoft/vscode-cpptools/issues/35)
55
* Unify Visual Studio Code debug protocol parsing by using a shared library with Visual Studio.
6+
* Fix `-isystem` without a space after getting ignored in `compile_comamands.json`. [#2629](https://github.com/Microsoft/vscode-cpptools/issues/2629)
7+
* Fix Insiders update channel installation failure on Windows/Mac. [#2636](https://github.com/Microsoft/vscode-cpptools/issues/2636)
8+
* Fix IntelliSense-based `Go to Declaration` falling back to the Tag Parser if the definition is also in the TU. [#2642](https://github.com/Microsoft/vscode-cpptools/issues/2642)
69

7-
## Version 0.19.1-insiders: October 9th, 2018
10+
## Version 0.19.1-insiders: October 9, 2018
811
* Fix IntelliSense-based `Go to Definition` on overloads. [#1071](https://github.com/Microsoft/vscode-cpptools/issues/1071)
912
* Fix IntelliSense failing if recursive includes removes all paths. [#2442](https://github.com/Microsoft/vscode-cpptools/issues/2442)
1013
* Fix incorrect IntelliSense errors with MinGW (stop using `-fms-extensions` by default). [#2443](https://github.com/Microsoft/vscode-cpptools/issues/2443), [#2623](https://github.com/Microsoft/vscode-cpptools/issues/2623)
@@ -515,7 +518,7 @@
515518
* Switch between header and source.
516519
* Control which files are processed under include path.
517520

518-
## Version 0.6.1: June 03, 2016
521+
## Version 0.6.1: June 3, 2016
519522
* Bug fixes.
520523

521524
## Version 0.6.0: May 24, 2016

Extension/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Extension/src/Support/copyDebuggerDependencies.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ function copyBinaryDependencies(): void {
118118
copy(miEngineRoot, DebugAdapterBinPath, "Microsoft.MIDebugEngine.dll");
119119
copy(miEngineRoot, DebugAdapterBinPath, "Microsoft.MIDebugEngine.dll.mdb");
120120
copy(miEngineRoot, DebugAdapterBinPath, "osxlaunchhelper.scpt");
121+
copy(miEngineRoot, DebugAdapterBinPath, "Microsoft.VisualStudio.Debugger.Interop.15.0.dll");
121122

122123
copy(openDebugRoot, DebugAdapterBinPath, "Microsoft.VisualStudio.Debugger.Interop.10.0.dll");
123124
copy(openDebugRoot, DebugAdapterBinPath, "Microsoft.VisualStudio.Debugger.Interop.11.0.dll");

0 commit comments

Comments
 (0)