From 9916f7dec4f475552d693ddaaccd2c7e1cce303e Mon Sep 17 00:00:00 2001 From: Vance Morrison Date: Tue, 10 Oct 2017 11:59:29 -0700 Subject: [PATCH] Turn on source link support (#14399) * Use Portable PDBs and turn on SourceLink This makes us uniform. Allows VSCode (which does not suport MSPdbs) use on Windows. * Allow DebugType to be overridden (on the command line) * Turn off portable PDB support for now --- dir.props | 8 ++++++++ src/mscorlib/System.Private.CoreLib.csproj | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/dir.props b/dir.props index 277512f..5a9700c 100644 --- a/dir.props +++ b/dir.props @@ -10,6 +10,14 @@ $(OS) + + + + true + + 4 diff --git a/src/mscorlib/System.Private.CoreLib.csproj b/src/mscorlib/System.Private.CoreLib.csproj index 4919269..ca4b19e 100644 --- a/src/mscorlib/System.Private.CoreLib.csproj +++ b/src/mscorlib/System.Private.CoreLib.csproj @@ -73,14 +73,14 @@ true false true - full + full DBG;_DEBUG;_LOGGING;DEBUG;TRACE;$(DefineConstants) CODE_ANALYSIS;$(DefineConstants) true true - pdbOnly + pdbOnly TRACE;$(DefineConstants) -- 2.7.4