From 58724b4ee1fc88cecf5b1739634f57fb3f92fb8e Mon Sep 17 00:00:00 2001 From: Gregg Miskelly Date: Mon, 25 Jul 2016 16:12:05 -0700 Subject: [PATCH] Remove System.Diagnostics.StackTrace from debugger install The debugger was installing System.Diagnostics.StackTrace which it doesn't appear to actually need and, in the dev install scenarios at least, was causing a problem with pulling in the wrong version of System.Reflection.Metadata. This removes it so the the dev and shipping code pulls in the same set of assemblies. --- src/coreclr-debug/install.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/coreclr-debug/install.ts b/src/coreclr-debug/install.ts index 8f6cd38fbc..31e9f5a78c 100644 --- a/src/coreclr-debug/install.ts +++ b/src/coreclr-debug/install.ts @@ -171,7 +171,6 @@ export class DebugInstaller "System.Collections.Specialized": "4.0.1", "System.Collections.Immutable": "1.2.0", "System.Diagnostics.Process" : "4.1.0", - "System.Diagnostics.StackTrace": "4.0.1", "System.Dynamic.Runtime": "4.0.11", "Microsoft.CSharp": "4.0.1", "System.Threading.Tasks.Dataflow": "4.6.0",