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:
authorMarek Safar <marek.safar@gmail.com>2017-01-30 19:40:32 +0300
committerMarek Safar <marek.safar@gmail.com>2017-01-30 19:47:29 +0300
commite3a6168dc24f425bace4d80a6b89e0cf0759c25c (patch)
treea3cedeb07d3b1b800cc883ba16ef8c3b357c25e4 /tools
parent74ca13ad75fcb16b03c517627cb18722663a46b4 (diff)
[mono] Update ignored assemblies list to include System.ValueTuple
Diffstat (limited to 'tools')
-rwxr-xr-xtools/nuget-hash-extractor/download.sh3
-rw-r--r--tools/nuget-hash-extractor/nuget-hash-extractor.cs1
2 files changed, 4 insertions, 0 deletions
diff --git a/tools/nuget-hash-extractor/download.sh b/tools/nuget-hash-extractor/download.sh
index 7ebd03996bd..f79ee5f351c 100755
--- a/tools/nuget-hash-extractor/download.sh
+++ b/tools/nuget-hash-extractor/download.sh
@@ -30,4 +30,7 @@ wget https://www.nuget.org/api/v2/package/System.Reflection.DispatchProxy/4.3.0
wget https://www.nuget.org/api/v2/package/System.Reflection.DispatchProxy/4.0.1 -O nugets/system.reflection.dispatchproxy.4.0.1.nupkg
wget https://www.nuget.org/api/v2/package/System.Reflection.DispatchProxy/4.0.0 -O nugets/system.reflection.dispatchproxy.4.0.0.nupkg
+#System.ValueTuple
+wget https://www.nuget.org/api/v2/package/System.ValueTuple/4.3.0 -O nugets/system.valuetuple.4.3.0.nupkg
+
#System.Security.Cryptography.OpenSsl when .net 4.6.2 + 1 is out \ No newline at end of file
diff --git a/tools/nuget-hash-extractor/nuget-hash-extractor.cs b/tools/nuget-hash-extractor/nuget-hash-extractor.cs
index b1fd6cf401d..9a69cc80b97 100644
--- a/tools/nuget-hash-extractor/nuget-hash-extractor.cs
+++ b/tools/nuget-hash-extractor/nuget-hash-extractor.cs
@@ -72,6 +72,7 @@ class DoParse : MarshalByRefObject {
case "System.Net.Http.dll": return "SYS_NET_HTTP";
case "System.Text.Encoding.CodePages.dll": return "SYS_TEXT_ENC_CODEPAGES";
case "System.Reflection.DispatchProxy.dll": return "SYS_REF_DISP_PROXY";
+ case "System.ValueTuple.dll": return "SYS_VALUE_TUPLE";
default: throw new Exception ($"No idea what to do with {name}");
}
}