From: Rodrigo Kumpera Date: Wed, 1 Mar 2017 00:27:14 +0000 (-0800) Subject: [tools] Update nuget hash extractor so we don't block SIOC 4.3.0. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;ds=sidebyside;h=9a09cb3ca5e45b55ef30ec77cd3290c13fb77d0d;p=mono.git [tools] Update nuget hash extractor so we don't block SIOC 4.3.0. --- 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