Exclude System.Private.CoreLib from crossgen

This commit is contained in:
Livar Cunha 2016-05-23 18:06:34 -07:00
parent 78bea7df84
commit d7a8860041

View file

@ -15,7 +15,9 @@ namespace Microsoft.DotNet.Cli.Build
private static readonly string[] s_excludedLibraries = private static readonly string[] s_excludedLibraries =
{ {
"mscorlib.dll", "mscorlib.dll",
"mscorlib.ni.dll" "mscorlib.ni.dll",
"System.Private.CoreLib",
"System.Private.CoreLib.ni.dll"
}; };
// This is not always correct. The version of crossgen we need to pick up is whatever one was restored as part // This is not always correct. The version of crossgen we need to pick up is whatever one was restored as part