Address PR feedback.
This commit is contained in:
parent
d2188cd95a
commit
baf28233f4
6 changed files with 5 additions and 7 deletions
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.5.0-rc3-24113-00",
|
||||
"Microsoft.NETCore.Runtime": "1.0.2-rc3-24113-00",
|
||||
"Microsoft.CSharp": "4.0.1-rc3-24113-00",
|
||||
"System.Dynamic.Runtime": "4.0.11-rc3-24113-00",
|
||||
"System.Reflection.Metadata": "1.3.0-rc3-24113-00",
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.5.0-rc3-24113-00",
|
||||
"Microsoft.NETCore.Runtime": "1.0.2-rc3-24113-00",
|
||||
"Microsoft.CSharp": "4.0.1-rc3-24113-00",
|
||||
"System.Dynamic.Runtime": "4.0.11-rc3-24113-00",
|
||||
"System.Reflection.Metadata": "1.3.0-rc3-24113-00",
|
||||
|
|
|
@ -12,7 +12,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
{
|
||||
private string _coreClrVersion;
|
||||
private string _crossGenPath;
|
||||
private List<string> _excludedLibraries = new List<string>()
|
||||
private static readonly string[] s_excludedLibraries =
|
||||
{
|
||||
"mscorlib.dll",
|
||||
"mscorlib.ni.dll"
|
||||
|
@ -100,7 +100,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
{
|
||||
string fileName = Path.GetFileName(file);
|
||||
|
||||
if (_excludedLibraries.Any(lib => String.Equals(lib, fileName, StringComparison.OrdinalIgnoreCase))
|
||||
if (s_excludedLibraries.Any(lib => String.Equals(lib, fileName, StringComparison.OrdinalIgnoreCase))
|
||||
|| !PEUtils.HasMetadata(file))
|
||||
{
|
||||
continue;
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
"description": "Build scripts for dotnet-cli",
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.5.0-rc3-24113-00",
|
||||
"Microsoft.NETCore.Runtime": "1.0.2-rc3-24113-00",
|
||||
"Microsoft.CSharp": "4.0.1-rc3-24113-00",
|
||||
"System.Dynamic.Runtime": "4.0.11-rc3-24113-00",
|
||||
"System.Reflection.Metadata": "1.3.0-rc3-24113-00",
|
||||
|
|
|
@ -41,8 +41,6 @@
|
|||
"Microsoft.Extensions.Testing.Abstractions": {
|
||||
"target": "project"
|
||||
},
|
||||
"Microsoft.NETCore.ConsoleHost": "1.0.0-rc3-24113-00",
|
||||
"Microsoft.NETCore.TestHost": "1.0.0-rc3-24113-00",
|
||||
"Microsoft.NETCore.App": {
|
||||
"type": "platform",
|
||||
"version": "1.0.0-rc3-*"
|
||||
|
|
|
@ -5,8 +5,7 @@
|
|||
"emitEntryPoint": true
|
||||
},
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "1.5.0-rc3-24113-00",
|
||||
"Microsoft.NETCore.Runtime": "1.0.2-rc3-24113-00",
|
||||
"Microsoft.NETCore.App": "1.0.0-rc3-*",
|
||||
"Microsoft.DotNet.ProjectModel": {
|
||||
"target": "project"
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue