From 597a7996c5a7d2a0b52e0c9b404f6fbff0d34aad Mon Sep 17 00:00:00 2001 From: Vance Morrison Date: Fri, 7 Jul 2017 15:02:12 -0700 Subject: [PATCH] Restore missing native *.ni.pdb file from the Microsoft.NETCore.Runtime.CoreCLR (#12677) * Restore missing native *.ni.pdb file from the Microsoft.NETCore.Runtime.CoreCLR package DLLs that have native code, need both the *.pdb (for IL information) and the *.ni.pdb (for native information). When System.Private.Corlib was renamed from System.Private.Corlib.ni.pdb to System.Private.Corlib, the logic that decides what goes into the Microsoft.NETCore.Runtime.CoreCLR package lost the *.ni.pdb for System.Private.Corlib. This change basically causes this logic to search both for *.ni.pdb as well as the *.pdb file and thus fixes this issue. * Remove unnecessary condition (review feedback) --- src/.nuget/dir.targets | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/.nuget/dir.targets b/src/.nuget/dir.targets index 447b071..fe7938d 100644 --- a/src/.nuget/dir.targets +++ b/src/.nuget/dir.targets @@ -51,6 +51,8 @@ + +