From 9a09cb3ca5e45b55ef30ec77cd3290c13fb77d0d Mon Sep 17 00:00:00 2001 From: Rodrigo Kumpera Date: Tue, 28 Feb 2017 16:27:14 -0800 Subject: [PATCH] [tools] Update nuget hash extractor so we don't block SIOC 4.3.0. --- tools/nuget-hash-extractor/nuget-hash-extractor.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/nuget-hash-extractor/nuget-hash-extractor.cs b/tools/nuget-hash-extractor/nuget-hash-extractor.cs index 9a69cc80b97..19c450fc2b9 100644 --- a/tools/nuget-hash-extractor/nuget-hash-extractor.cs +++ b/tools/nuget-hash-extractor/nuget-hash-extractor.cs @@ -90,6 +90,10 @@ class DoParse : MarshalByRefObject { var str = FileToEnum (name); string ver_str = version + " " + FileToMoniker (fullname); + + if (name == "System.IO.Compression.dll" && version == "4.3.0") + Console.Write ($"//System.IO.Compression.dll net46 4.3.0 has a fully managed impl. not ignoring\n//"); + Console.WriteLine ($"IGNORED_ASSEMBLY (0x{hash_code}, {str}, \"{id}\", \"{ver_str}\"),"); } } \ No newline at end of file -- 2.25.1