Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRodrigo Kumpera <kumpera@gmail.com>2017-03-01 03:27:14 +0300
committerRodrigo Kumpera <kumpera@gmail.com>2017-03-01 03:27:14 +0300
commit9a09cb3ca5e45b55ef30ec77cd3290c13fb77d0d (patch)
tree21b2e102247b583653911ed97834965478f0f1ea /tools
parentf9dcaa74a99e1000b28ae89ab56ece6727bd28c0 (diff)
[tools] Update nuget hash extractor so we don't block SIOC 4.3.0.
Diffstat (limited to 'tools')
-rw-r--r--tools/nuget-hash-extractor/nuget-hash-extractor.cs4
1 files changed, 4 insertions, 0 deletions
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