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-05-13 10:31:59 +0300
committerMarek Safar <marek.safar@gmail.com>2017-05-13 17:27:45 +0300
commit62bc1b229ee0501b706f3ea39524180c0ae7fc26 (patch)
tree3f4f4830a71b93ad54cc29ece0963e42f561c3b6 /tools
parentc31458a5adcc4e140f4f0e969d5c4f3d54334175 (diff)
[runtime] Remove System.ValueTuple from denied assemblies. It's not needed
anymore because we have reference assemblies and it didn't work for mobile tools (e.g. linker)
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, 0 insertions, 4 deletions
diff --git a/tools/nuget-hash-extractor/download.sh b/tools/nuget-hash-extractor/download.sh
index 783e463bc8b..5a6acc86ad4 100755
--- a/tools/nuget-hash-extractor/download.sh
+++ b/tools/nuget-hash-extractor/download.sh
@@ -31,9 +31,6 @@ 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.Threading.Overlapped
wget https://www.nuget.org/api/v2/package/System.Threading.Overlapped/4.3.0 -O nugets/system.threading.overlapped.4.3.0.nupkg
wget https://www.nuget.org/api/v2/package/System.Threading.Overlapped/4.0.1 -O nugets/system.threading.overlapped.4.0.1.nupkg
diff --git a/tools/nuget-hash-extractor/nuget-hash-extractor.cs b/tools/nuget-hash-extractor/nuget-hash-extractor.cs
index df3304b2c4e..d4e7763f574 100644
--- a/tools/nuget-hash-extractor/nuget-hash-extractor.cs
+++ b/tools/nuget-hash-extractor/nuget-hash-extractor.cs
@@ -83,7 +83,6 @@ class DoParse : MarshalByRefObject {
case "System.Text.Encoding.CodePages.dll": return "SYS_TEXT_ENC_CODEPAGES";
case "System.Reflection.DispatchProxy.dll": return "SYS_REF_DISP_PROXY";
case "System.Threading.Overlapped.dll": return "SYS_THREADING_OVERLAPPED";
- case "System.ValueTuple.dll": return "SYS_VALUE_TUPLE";
default: throw new Exception ($"No idea what to do with {name}");
}
}