From e56858b4b3e2469c4ea1578e744e051baffff68f Mon Sep 17 00:00:00 2001 From: Jared Parsons Date: Fri, 12 Feb 2016 14:28:05 -0800 Subject: [PATCH] Make Portable PDB the default on Windows VS 2015 Update 2 CTP has been released which has support for debugging portable PDBs. Now is a good time to make the transition so a) we can root out any remaining issues with portable PDBs and b) have larger dogfooding of the VS debugging experience here. closes #704 --- src/dotnet/commands/dotnet-compile-csc/Program.cs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/dotnet/commands/dotnet-compile-csc/Program.cs b/src/dotnet/commands/dotnet-compile-csc/Program.cs index 6d84fe0ce..500eceae0 100644 --- a/src/dotnet/commands/dotnet-compile-csc/Program.cs +++ b/src/dotnet/commands/dotnet-compile-csc/Program.cs @@ -128,13 +128,10 @@ namespace Microsoft.DotNet.Tools.Compiler.Csc var args = new List() { "-nostdlib", - "-nologo" + "-nologo", + "-debug:portable" }; - args.Add(RuntimeInformation.IsOSPlatform(OSPlatform.Windows) - ? "-debug:full" - : "-debug:portable"); - return args; }