summaryrefslogtreecommitdiff
path: root/tests/src/Interop
diff options
context:
space:
mode:
authorBryan Arant <bryanar@microsoft.com>2015-10-20 16:03:04 -0700
committerBryan Arant <bryanar@microsoft.com>2015-10-20 16:59:34 -0700
commit8af5de08e22661b386eb517bea57fb8727b72485 (patch)
tree75c1ade1e5381d9061f55520ea51c63cb3b0d86d /tests/src/Interop
parent4be080ee4c52211247d720e24f71d87b657357ee (diff)
downloadcoreclr-8af5de08e22661b386eb517bea57fb8727b72485.tar.gz
coreclr-8af5de08e22661b386eb517bea57fb8727b72485.tar.bz2
coreclr-8af5de08e22661b386eb517bea57fb8727b72485.zip
Fixing some pri1 tests.
Diffstat (limited to 'tests/src/Interop')
-rw-r--r--tests/src/Interop/ICastable/Castable.cs224
-rw-r--r--tests/src/Interop/ICastable/Castable.csproj42
-rw-r--r--tests/src/Interop/ICastable/project.json30
-rw-r--r--tests/src/Interop/ICastable/project.lock.json1931
-rw-r--r--tests/src/Interop/NativeCallable/NativeCallableTest.cs153
-rw-r--r--tests/src/Interop/NativeCallable/NativeCallableTest.csproj41
-rw-r--r--tests/src/Interop/NativeCallable/project.json30
-rw-r--r--tests/src/Interop/NativeCallable/project.lock.json1931
8 files changed, 470 insertions, 3912 deletions
diff --git a/tests/src/Interop/ICastable/Castable.cs b/tests/src/Interop/ICastable/Castable.cs
new file mode 100644
index 0000000000..f7f94755aa
--- /dev/null
+++ b/tests/src/Interop/ICastable/Castable.cs
@@ -0,0 +1,224 @@
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Runtime.CompilerServices;
+
+public interface IRetArg<T>
+{
+ T ReturnArg(T t);
+}
+
+public interface IRetThis
+{
+ IRetThis ReturnThis();
+ Type GetMyType();
+}
+
+
+public interface IUnimplemented
+{
+ void UnimplementedMethod();
+}
+
+public interface IExtra
+{
+ int InnocentMethod();
+}
+
+public class CastableException : Exception {};
+
+
+public class RetArgImpl: IRetArg<string>
+{
+ public string ReturnArg(string t)
+ {
+ Console.WriteLine("ReturnArg has been called.");
+ return t;
+ }
+}
+
+public class GenRetArgImpl<T>: IRetArg<T>
+{
+ public T ReturnArg(T t)
+ {
+ Console.WriteLine("Generic ReturnArg has been called. My type is {0}", GetType());
+ return t;
+ }
+}
+
+
+public class RetThisImpl: IRetThis
+{
+ public IRetThis ReturnThis()
+ {
+ Console.WriteLine("RetThis has been called.");
+ return this;
+ }
+
+ public Type GetMyType()
+ {
+ Console.WriteLine("GetMyType has been called. My type is {0}", GetType());
+ return GetType();
+ }
+}
+
+
+public class Castable : ICastable, IExtra
+{
+ private Dictionary<Type, Type> _interface2impl;
+
+ public Castable(Dictionary<Type, Type> interface2impl)
+ {
+ _interface2impl = interface2impl;
+ }
+
+ public bool IsInstanceOfInterface(RuntimeTypeHandle interfaceType, out Exception castError)
+ {
+ Console.WriteLine("IsInstanceOfInterface has been called for type {0}", Type.GetTypeFromHandle(interfaceType));
+ if (_interface2impl == null)
+ {
+ castError = new CastableException();
+ return false;
+ }
+ castError = null;
+ return _interface2impl.ContainsKey(Type.GetTypeFromHandle(interfaceType));
+ }
+
+ public RuntimeTypeHandle GetImplType(RuntimeTypeHandle interfaceType)
+ {
+ Console.WriteLine("GetImplType has been called for type {0}", Type.GetTypeFromHandle(interfaceType));
+ return _interface2impl[Type.GetTypeFromHandle(interfaceType)].TypeHandle;
+ }
+
+ public int InnocentMethod()
+ {
+ Console.WriteLine("InnocentMethod has been called. My type is {0}", GetType());
+ return 3;
+ }
+}
+
+public class BadCastable : ICastable
+{
+ public bool IsInstanceOfInterface(RuntimeTypeHandle interfaceType, out Exception castError)
+ {
+ castError = null;
+ return true;
+ }
+
+ public RuntimeTypeHandle GetImplType(RuntimeTypeHandle interfaceType)
+ {
+ return default(RuntimeTypeHandle);
+ }
+}
+
+
+public class Program
+{
+ private static bool passed = true;
+
+ public static void Assert(bool value, string message)
+ {
+ if (!value)
+ {
+ Console.WriteLine("FAIL! " + message);
+ passed = false;
+ }
+ }
+
+ public static int Main()
+ {
+ //Console.WriteLine("Execution started. Attach debugger and press enter.");
+ //Console.ReadLine();
+
+ try
+ {
+ object implProxy = new Castable(
+ new Dictionary<Type, Type>()
+ {
+ { typeof(IRetArg<string>), typeof(RetArgImpl) },
+ { typeof(IRetArg<int>), typeof(GenRetArgImpl<int>) },
+ { typeof(IRetThis), typeof(RetThisImpl) },
+ { typeof(IExtra), null }, //we should never use it
+ }
+ );
+
+ // testing simple cases
+ Assert(implProxy is IRetThis, "implProxy should be castable to IRetThis via is");
+ Assert(!(implProxy is IUnimplemented), "implProxy should not be castable to IUnimplemented via is");
+ Assert((implProxy as IRetThis) != null, "implProxy should be castable to IRetThis is as");
+ Assert((implProxy as IUnimplemented) == null, "implProxy should not be castable to IUnimplemented is as");
+ var retThis = (IRetThis)implProxy;
+ Assert(object.ReferenceEquals(retThis.ReturnThis(), implProxy), "RetThis should return implProxy");
+ Assert(retThis.GetMyType() == typeof(Castable), "GetMyType should return typeof(Castable)");
+
+ Assert(!(implProxy is IUnimplemented), "implProxy should not be castable to IUnimplemented via is");
+ Assert((implProxy as IUnimplemented) == null, "implProxy should not be castable to IUnimplemented via as");
+
+
+ // testing generics
+ IRetArg<string> retArgStr = (IRetArg<string>)implProxy;
+ Assert(retArgStr.ReturnArg("hohoho") == "hohoho", "retArgStr.ReturnArg() should return arg");
+
+ IRetArg<int> retArgInt = (IRetArg<int>)implProxy;
+ Assert(retArgInt.ReturnArg(42) == 42, "retArgInt.ReturnArg() should return arg");
+
+
+ // testing Castable implemeting other interfaces
+ var extra = (IExtra)implProxy;
+ Assert(extra.InnocentMethod() == 3, "InnocentMethod() should be called on Castable and return 3");
+
+ // testing error handling
+ try
+ {
+ var _ = (IUnimplemented)implProxy;
+ Assert(false, "pProxy should not be castable to I1");
+ }
+ catch (InvalidCastException) {}
+
+ object nullCastable = new Castable(null);
+ try
+ {
+ var _ = (IRetThis)nullCastable;
+ Assert(false, "Exceptions should be thrown from IsInstanceOfInterface");
+ }
+ catch (CastableException) {}
+
+ Assert(!(nullCastable is IRetThis), "null castable shouldn't be allowed to be casted to anything");
+
+ var shouldBeNull = nullCastable as IRetThis;
+ Assert(shouldBeNull == null, "shouldBeNull should be assigned null");
+
+ object badCastable = new BadCastable();
+ try
+ {
+ var r = (IRetThis)badCastable;
+ r.ReturnThis();
+ Assert(false, "Exceptions should be thrown from ReturnThis()");
+ }
+ catch (EntryPointNotFoundException) {}
+
+ //delegate testing
+ Func<int> fInt = new Func<int>(extra.InnocentMethod);
+ Assert(fInt() == 3, "Delegate call to InnocentMethod() should return 3");
+
+ Func<IRetThis> func = new Func<IRetThis>(retThis.ReturnThis);
+ Assert(object.ReferenceEquals(func(), implProxy), "Delegate call to ReturnThis() should return this");
+ }
+ catch (Exception e)
+ {
+ Assert(false, e.ToString());
+ }
+
+ if (passed)
+ {
+ Console.WriteLine("Test PASSED!");
+ return 100;
+ }
+ else
+ {
+ Console.WriteLine("Test FAILED!");
+ return -1;
+ }
+
+ }
+} \ No newline at end of file
diff --git a/tests/src/Interop/ICastable/Castable.csproj b/tests/src/Interop/ICastable/Castable.csproj
new file mode 100644
index 0000000000..8ddad48b8b
--- /dev/null
+++ b/tests/src/Interop/ICastable/Castable.csproj
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <AssemblyName>Castable</AssemblyName>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <FileAlignment>512</FileAlignment>
+ <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+ <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages</ReferencePath>
+ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+
+ <NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp>
+ <DefineConstants>$(DefineConstants);STATIC</DefineConstants>
+ <ReferenceLocalMscorlib>true</ReferenceLocalMscorlib>
+ </PropertyGroup>
+ <!-- Default configurations to help VS understand the configurations -->
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
+ </PropertyGroup>
+ <ItemGroup>
+ <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
+ <Visible>False</Visible>
+ </CodeAnalysisDependentAssemblyPaths>
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="Castable.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="project.json" />
+ <None Include="app.config" />
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+</Project>
diff --git a/tests/src/Interop/ICastable/project.json b/tests/src/Interop/ICastable/project.json
index cd536cf30e..b04d32fae3 100644
--- a/tests/src/Interop/ICastable/project.json
+++ b/tests/src/Interop/ICastable/project.json
@@ -1,33 +1,7 @@
-{
+{
"dependencies": {
- "System.Diagnostics.Process": "4.0.0-beta-23302",
- "System.IO": "4.0.10-beta-23302",
- "System.IO.FileSystem": "4.0.0-beta-23302",
- "System.IO.FileSystem.Primitives": "4.0.0-beta-23302",
- "System.Runtime": "4.0.20-beta-23302",
- "System.Runtime.Extensions": "4.0.10-beta-23302",
- "System.Runtime.Handles": "4.0.0-beta-23302",
- "System.Runtime.Loader": "4.0.0-beta-23302",
- "System.Threading": "4.0.10-beta-23302",
- "System.Globalization.Calendars": "4.0.0-beta-23302",
- "System.Globalization": "4.0.10-beta-23302",
- "System.Text.Encoding": "4.0.10-beta-23302",
- "System.Runtime.InteropServices": "4.0.20-beta-23302",
- "System.Collections": "4.0.10-beta-23302",
- "System.Console": "4.0.0-beta-23302",
- "System.Reflection": "4.0.10-beta-23302",
- "System.Reflection.Primitives": "4.0.0-beta-23302",
- "System.ComponentModel": "4.0.1-beta-23302",
- "System.Xml.ReaderWriter": "4.0.11-beta-23302",
- "System.Collections.NonGeneric": "4.0.1-beta-23302",
- "System.Collections.Specialized": "4.0.1-beta-23302",
- "System.Linq": "4.0.1-beta-23302",
- "System.Linq.Queryable": "4.0.1-beta-23302",
- "System.Xml.XmlSerializer": "4.0.11-beta-23302",
- "System.Xml.XmlDocument": "4.0.1-beta-23302",
- "System.Xml.XDocument": "4.0.11-beta-23302"
},
"frameworks": {
"dnxcore50": {}
}
-} \ No newline at end of file
+}
diff --git a/tests/src/Interop/ICastable/project.lock.json b/tests/src/Interop/ICastable/project.lock.json
index 9860deb251..861d3c3d7f 100644
--- a/tests/src/Interop/ICastable/project.lock.json
+++ b/tests/src/Interop/ICastable/project.lock.json
@@ -2,1936 +2,11 @@
"locked": true,
"version": -9996,
"targets": {
- "DNXCore,Version=v5.0": {
- "Microsoft.Win32.Primitives/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20"
- },
- "compile": {
- "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
- },
- "runtime": {
- "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
- }
- },
- "Microsoft.Win32.Registry/4.0.0-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Runtime.Handles": "4.0.0",
- "System.Collections": "4.0.10",
- "System.Runtime.Extensions": "4.0.10",
- "System.Globalization": "4.0.10"
- },
- "compile": {
- "ref/dotnet/Microsoft.Win32.Registry.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/Microsoft.Win32.Registry.dll": {}
- }
- },
- "System.Collections/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20"
- },
- "compile": {
- "ref/dotnet/System.Collections.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Collections.dll": {}
- }
- },
- "System.Collections.NonGeneric/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Globalization": "4.0.10",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Runtime.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Collections.NonGeneric.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Collections.NonGeneric.dll": {}
- }
- },
- "System.Collections.Specialized/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Collections.NonGeneric": "4.0.0",
- "System.Globalization.Extensions": "4.0.0",
- "System.Runtime.Extensions": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Globalization": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Collections.Specialized.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Collections.Specialized.dll": {}
- }
- },
- "System.ComponentModel/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20"
- },
- "compile": {
- "ref/dotnet/System.ComponentModel.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.ComponentModel.dll": {}
- }
- },
- "System.Console/4.0.0-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.IO.FileSystem.Primitives": "4.0.0",
- "System.IO": "4.0.10",
- "System.Threading.Tasks": "4.0.10",
- "System.Text.Encoding": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Text.Encoding.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Console.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Console.dll": {}
- }
- },
- "System.Diagnostics.Debug/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Diagnostics.Debug.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Diagnostics.Debug.dll": {}
- }
- },
- "System.Diagnostics.Process/4.0.0-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Runtime.Handles": "4.0.0",
- "System.IO.FileSystem": "4.0.0",
- "Microsoft.Win32.Registry": "4.0.0-beta-23302",
- "Microsoft.Win32.Primitives": "4.0.0",
- "System.IO.FileSystem.Primitives": "4.0.0",
- "System.Threading.Thread": "4.0.0-beta-23302",
- "System.Text.Encoding": "4.0.10",
- "System.IO": "4.0.10",
- "System.Threading.Tasks": "4.0.10",
- "System.Collections": "4.0.10",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Threading.ThreadPool": "4.0.10-beta-23302",
- "System.Globalization": "4.0.10",
- "System.Text.Encoding.Extensions": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Runtime.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Diagnostics.Process.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Diagnostics.Process.dll": {}
- }
- },
- "System.Diagnostics.Tools/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Diagnostics.Tools.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
- }
- },
- "System.Globalization/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Globalization.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Globalization.dll": {}
- }
- },
- "System.Globalization.Calendars/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Globalization": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Globalization.Calendars.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Globalization.Calendars.dll": {}
- }
- },
- "System.Globalization.Extensions/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.Extensions": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Globalization.Extensions.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Globalization.Extensions.dll": {}
- }
- },
- "System.IO/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Text.Encoding": "4.0.0",
- "System.Threading.Tasks": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.IO.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.IO.dll": {}
- }
- },
- "System.IO.FileSystem/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.IO.FileSystem.Primitives": "4.0.0",
- "System.Runtime.Handles": "4.0.0",
- "System.Threading.Overlapped": "4.0.0",
- "System.Text.Encoding": "4.0.10",
- "System.IO": "4.0.10",
- "System.Collections": "4.0.10",
- "System.Threading.Tasks": "4.0.10",
- "System.Runtime.Extensions": "4.0.10",
- "System.Text.Encoding.Extensions": "4.0.10",
- "System.Threading": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.IO.FileSystem.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.IO.FileSystem.dll": {}
- }
- },
- "System.IO.FileSystem.Primitives/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.20"
- },
- "compile": {
- "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
- }
- },
- "System.Linq/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Collections": "4.0.10",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Runtime.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Linq.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Collections": "4.0.0",
- "System.Diagnostics.Debug": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.IO": "4.0.0",
- "System.Reflection.TypeExtensions": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Reflection.Emit": "4.0.0",
- "System.ObjectModel": "4.0.0",
- "System.Threading": "4.0.0",
- "System.Runtime.Extensions": "4.0.0",
- "System.Linq": "4.0.0",
- "System.Globalization": "4.0.0",
- "System.Reflection.Extensions": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Linq.Expressions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Linq.Expressions.dll": {}
- }
- },
- "System.Linq.Queryable/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Linq.Expressions": "4.0.10",
- "System.Linq": "4.0.0",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Reflection.Extensions": "4.0.0",
- "System.Reflection": "4.0.10",
- "System.Collections": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Linq.Queryable.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Linq.Queryable.dll": {}
- }
- },
- "System.ObjectModel/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.ObjectModel.dll": {}
- }
- },
- "System.Private.Uri/4.0.0": {
- "runtime": {
- "lib/DNXCore50/System.Private.Uri.dll": {}
- }
- },
- "System.Reflection/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.IO": "4.0.0",
- "System.Reflection.Primitives": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.dll": {}
- }
- },
- "System.Reflection.Emit/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Reflection.Emit.ILGeneration": "4.0.0",
- "System.IO": "4.0.0",
- "System.Reflection.Primitives": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.Emit.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.Emit.dll": {}
- }
- },
- "System.Reflection.Emit.ILGeneration/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Reflection.Primitives": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
- }
- },
- "System.Reflection.Extensions/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.Extensions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.Extensions.dll": {}
- }
- },
- "System.Reflection.Primitives/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.Primitives.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.Primitives.dll": {}
- }
- },
- "System.Reflection.TypeExtensions/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
- }
- },
- "System.Resources.ResourceManager/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Globalization": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Resources.ResourceManager.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
- }
- },
- "System.Runtime/4.0.20": {
- "dependencies": {
- "System.Private.Uri": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Runtime.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Runtime.dll": {}
- }
- },
- "System.Runtime.Extensions/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20"
- },
- "compile": {
- "ref/dotnet/System.Runtime.Extensions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Runtime.Extensions.dll": {}
- }
- },
- "System.Runtime.Handles/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Runtime.Handles.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Runtime.Handles.dll": {}
- }
- },
- "System.Runtime.InteropServices/4.0.20": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Runtime.Handles": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Runtime.InteropServices.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
- }
- },
- "System.Runtime.Loader/4.0.0-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.IO": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Runtime.Loader.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Runtime.Loader.dll": {}
- }
- },
- "System.Text.Encoding/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Text.Encoding.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Text.Encoding.dll": {}
- }
- },
- "System.Text.Encoding.Extensions/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Text.Encoding": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {}
- }
- },
- "System.Text.RegularExpressions/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Collections": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Runtime.Extensions": "4.0.10",
- "System.Threading": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Text.RegularExpressions.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Text.RegularExpressions.dll": {}
- }
- },
- "System.Threading/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Threading.Tasks": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Threading.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.dll": {}
- }
- },
- "System.Threading.Overlapped/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.Handles": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Threading.Overlapped.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.Overlapped.dll": {}
- }
- },
- "System.Threading.Tasks/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Threading.Tasks.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.Tasks.dll": {}
- }
- },
- "System.Threading.Thread/4.0.0-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Threading.Thread.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.Thread.dll": {}
- }
- },
- "System.Threading.ThreadPool/4.0.10-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.InteropServices": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Threading.ThreadPool.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
- }
- },
- "System.Xml.ReaderWriter/4.0.11-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Text.Encoding": "4.0.10",
- "System.IO": "4.0.10",
- "System.Threading.Tasks": "4.0.10",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.IO.FileSystem": "4.0.0",
- "System.IO.FileSystem.Primitives": "4.0.0",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Text.RegularExpressions": "4.0.10",
- "System.Collections": "4.0.10",
- "System.Runtime.Extensions": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Text.Encoding.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Xml.ReaderWriter.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Xml.ReaderWriter.dll": {}
- }
- },
- "System.Xml.XDocument/4.0.11-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.IO": "4.0.10",
- "System.Xml.ReaderWriter": "4.0.10",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Diagnostics.Tools": "4.0.0",
- "System.Collections": "4.0.10",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Text.Encoding": "4.0.10",
- "System.Reflection": "4.0.10",
- "System.Runtime.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Xml.XDocument.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Xml.XDocument.dll": {}
- }
- },
- "System.Xml.XmlDocument/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Xml.ReaderWriter": "4.0.10",
- "System.IO": "4.0.10",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Text.Encoding": "4.0.10",
- "System.Collections": "4.0.10",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Runtime.Extensions": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Threading": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Xml.XmlDocument.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Xml.XmlDocument.dll": {}
- }
- },
- "System.Xml.XmlSerializer/4.0.11-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Xml.XmlDocument": "4.0.0",
- "System.Reflection.TypeExtensions": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Reflection.Extensions": "4.0.0",
- "System.Linq": "4.0.0",
- "System.Collections": "4.0.10",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Reflection": "4.0.10",
- "System.Xml.ReaderWriter": "4.0.10",
- "System.IO": "4.0.10",
- "System.Text.RegularExpressions": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Runtime.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Xml.XmlSerializer.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Xml.XmlSerializer.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Microsoft.Win32.Primitives/4.0.0": {
- "serviceable": true,
- "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==",
- "files": [
- "Microsoft.Win32.Primitives.4.0.0.nupkg",
- "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512",
- "Microsoft.Win32.Primitives.nuspec",
- "lib/dotnet/Microsoft.Win32.Primitives.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/Microsoft.Win32.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/Microsoft.Win32.Primitives.dll",
- "ref/dotnet/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/de/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/es/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/fr/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/it/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/ja/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/ko/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/ru/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/Microsoft.Win32.Primitives.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "Microsoft.Win32.Registry/4.0.0-beta-23302": {
- "serviceable": true,
- "sha512": "63Vc0lDW+pMCSd6ygScz/XTiJE3Ou5Sr7yrZ0HE/Ym/Bi/mN0LMAJqUtAUSJxVBuqbozW/q39RpNLIZ+QlJvig==",
- "files": [
- "Microsoft.Win32.Registry.4.0.0-beta-23302.nupkg",
- "Microsoft.Win32.Registry.4.0.0-beta-23302.nupkg.sha512",
- "Microsoft.Win32.Registry.nuspec",
- "lib/DNXCore50/Microsoft.Win32.Registry.dll",
- "lib/net46/Microsoft.Win32.Registry.dll",
- "ref/dotnet/Microsoft.Win32.Registry.dll",
- "ref/net46/Microsoft.Win32.Registry.dll"
- ]
- },
- "System.Collections/4.0.10": {
- "serviceable": true,
- "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==",
- "files": [
- "System.Collections.4.0.10.nupkg",
- "System.Collections.4.0.10.nupkg.sha512",
- "System.Collections.nuspec",
- "lib/DNXCore50/System.Collections.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Collections.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Collections.dll",
- "ref/dotnet/System.Collections.xml",
- "ref/dotnet/de/System.Collections.xml",
- "ref/dotnet/es/System.Collections.xml",
- "ref/dotnet/fr/System.Collections.xml",
- "ref/dotnet/it/System.Collections.xml",
- "ref/dotnet/ja/System.Collections.xml",
- "ref/dotnet/ko/System.Collections.xml",
- "ref/dotnet/ru/System.Collections.xml",
- "ref/dotnet/zh-hans/System.Collections.xml",
- "ref/dotnet/zh-hant/System.Collections.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Collections.dll"
- ]
- },
- "System.Collections.NonGeneric/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "pSTpxEZ8/VRqmMnAP4Nfs7pdC8JpggNdnfGD225uIeEdNnc4m6xu3guu4BrFD3qrrBY1qSZCuNyY4DNJgq877A==",
- "files": [
- "System.Collections.NonGeneric.4.0.1-beta-23302.nupkg",
- "System.Collections.NonGeneric.4.0.1-beta-23302.nupkg.sha512",
- "System.Collections.NonGeneric.nuspec",
- "lib/dotnet/System.Collections.NonGeneric.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.NonGeneric.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Collections.NonGeneric.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.NonGeneric.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Collections.Specialized/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "v1eYdfSH6ttx2QYSbvArTqlumBamCij2R8iNtdA2tBq0QmWseW5Nc+H3Ut1JHa9T1q3jWuk0NR95zMBwty3Q+Q==",
- "files": [
- "System.Collections.Specialized.4.0.1-beta-23302.nupkg",
- "System.Collections.Specialized.4.0.1-beta-23302.nupkg.sha512",
- "System.Collections.Specialized.nuspec",
- "lib/dotnet/System.Collections.Specialized.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.Specialized.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Collections.Specialized.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.Specialized.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.ComponentModel/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "Ju+nhdZ8gMwZAXRIr/ACoME9I9SpxeS+Xw4Bouok4xTvbbwkjlT55Mr9gybqcGMp4F/hzS55RnQDIiRN70fEdg==",
- "files": [
- "System.ComponentModel.4.0.1-beta-23302.nupkg",
- "System.ComponentModel.4.0.1-beta-23302.nupkg.sha512",
- "System.ComponentModel.nuspec",
- "lib/dotnet/System.ComponentModel.dll",
- "lib/net45/_._",
- "lib/netcore50/System.ComponentModel.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.ComponentModel.dll",
- "ref/net45/_._",
- "ref/netcore50/System.ComponentModel.dll",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._"
- ]
- },
- "System.Console/4.0.0-beta-23302": {
- "serviceable": true,
- "sha512": "rpWEkJWW29TjVZdDz5zr8VnBv4IN9BQHmP4Ky9tEbvkdhkJRb0ZO59acXMpVD1tSM2VhGlLnq0kpdjOLNmejNA==",
- "files": [
- "System.Console.4.0.0-beta-23302.nupkg",
- "System.Console.4.0.0-beta-23302.nupkg.sha512",
- "System.Console.nuspec",
- "lib/DNXCore50/System.Console.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Console.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Console.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Console.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Diagnostics.Debug/4.0.10": {
- "serviceable": true,
- "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==",
- "files": [
- "System.Diagnostics.Debug.4.0.10.nupkg",
- "System.Diagnostics.Debug.4.0.10.nupkg.sha512",
- "System.Diagnostics.Debug.nuspec",
- "lib/DNXCore50/System.Diagnostics.Debug.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Diagnostics.Debug.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Diagnostics.Debug.dll",
- "ref/dotnet/System.Diagnostics.Debug.xml",
- "ref/dotnet/de/System.Diagnostics.Debug.xml",
- "ref/dotnet/es/System.Diagnostics.Debug.xml",
- "ref/dotnet/fr/System.Diagnostics.Debug.xml",
- "ref/dotnet/it/System.Diagnostics.Debug.xml",
- "ref/dotnet/ja/System.Diagnostics.Debug.xml",
- "ref/dotnet/ko/System.Diagnostics.Debug.xml",
- "ref/dotnet/ru/System.Diagnostics.Debug.xml",
- "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml",
- "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll"
- ]
- },
- "System.Diagnostics.Process/4.0.0-beta-23302": {
- "serviceable": true,
- "sha512": "FtflxzCJUdgw+4suLaWz82EOLxVa7X6DWbY4eSRIomDlMwYrsof8Ewz81XhKMWY0EOY/5Nx+r/oPTbFUECAiUg==",
- "files": [
- "System.Diagnostics.Process.4.0.0-beta-23302.nupkg",
- "System.Diagnostics.Process.4.0.0-beta-23302.nupkg.sha512",
- "System.Diagnostics.Process.nuspec",
- "lib/DNXCore50/System.Diagnostics.Process.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.Process.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Diagnostics.Process.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.Process.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Diagnostics.Tools/4.0.0": {
- "serviceable": true,
- "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==",
- "files": [
- "System.Diagnostics.Tools.4.0.0.nupkg",
- "System.Diagnostics.Tools.4.0.0.nupkg.sha512",
- "System.Diagnostics.Tools.nuspec",
- "lib/DNXCore50/System.Diagnostics.Tools.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Diagnostics.Tools.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Diagnostics.Tools.dll",
- "ref/dotnet/System.Diagnostics.Tools.xml",
- "ref/dotnet/de/System.Diagnostics.Tools.xml",
- "ref/dotnet/es/System.Diagnostics.Tools.xml",
- "ref/dotnet/fr/System.Diagnostics.Tools.xml",
- "ref/dotnet/it/System.Diagnostics.Tools.xml",
- "ref/dotnet/ja/System.Diagnostics.Tools.xml",
- "ref/dotnet/ko/System.Diagnostics.Tools.xml",
- "ref/dotnet/ru/System.Diagnostics.Tools.xml",
- "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml",
- "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Tools.dll",
- "ref/netcore50/System.Diagnostics.Tools.xml",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll"
- ]
- },
- "System.Globalization/4.0.10": {
- "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==",
- "files": [
- "System.Globalization.4.0.10.nupkg",
- "System.Globalization.4.0.10.nupkg.sha512",
- "System.Globalization.nuspec",
- "lib/DNXCore50/System.Globalization.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Globalization.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Globalization.dll",
- "ref/dotnet/System.Globalization.xml",
- "ref/dotnet/de/System.Globalization.xml",
- "ref/dotnet/es/System.Globalization.xml",
- "ref/dotnet/fr/System.Globalization.xml",
- "ref/dotnet/it/System.Globalization.xml",
- "ref/dotnet/ja/System.Globalization.xml",
- "ref/dotnet/ko/System.Globalization.xml",
- "ref/dotnet/ru/System.Globalization.xml",
- "ref/dotnet/zh-hans/System.Globalization.xml",
- "ref/dotnet/zh-hant/System.Globalization.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Globalization.dll"
- ]
- },
- "System.Globalization.Calendars/4.0.0": {
- "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==",
- "files": [
- "System.Globalization.Calendars.4.0.0.nupkg",
- "System.Globalization.Calendars.4.0.0.nupkg.sha512",
- "System.Globalization.Calendars.nuspec",
- "lib/DNXCore50/System.Globalization.Calendars.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Globalization.Calendars.dll",
- "lib/netcore50/System.Globalization.Calendars.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Globalization.Calendars.dll",
- "ref/dotnet/System.Globalization.Calendars.xml",
- "ref/dotnet/de/System.Globalization.Calendars.xml",
- "ref/dotnet/es/System.Globalization.Calendars.xml",
- "ref/dotnet/fr/System.Globalization.Calendars.xml",
- "ref/dotnet/it/System.Globalization.Calendars.xml",
- "ref/dotnet/ja/System.Globalization.Calendars.xml",
- "ref/dotnet/ko/System.Globalization.Calendars.xml",
- "ref/dotnet/ru/System.Globalization.Calendars.xml",
- "ref/dotnet/zh-hans/System.Globalization.Calendars.xml",
- "ref/dotnet/zh-hant/System.Globalization.Calendars.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Globalization.Calendars.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll"
- ]
- },
- "System.Globalization.Extensions/4.0.0": {
- "serviceable": true,
- "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==",
- "files": [
- "System.Globalization.Extensions.4.0.0.nupkg",
- "System.Globalization.Extensions.4.0.0.nupkg.sha512",
- "System.Globalization.Extensions.nuspec",
- "lib/dotnet/System.Globalization.Extensions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Globalization.Extensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Globalization.Extensions.dll",
- "ref/dotnet/System.Globalization.Extensions.xml",
- "ref/dotnet/de/System.Globalization.Extensions.xml",
- "ref/dotnet/es/System.Globalization.Extensions.xml",
- "ref/dotnet/fr/System.Globalization.Extensions.xml",
- "ref/dotnet/it/System.Globalization.Extensions.xml",
- "ref/dotnet/ja/System.Globalization.Extensions.xml",
- "ref/dotnet/ko/System.Globalization.Extensions.xml",
- "ref/dotnet/ru/System.Globalization.Extensions.xml",
- "ref/dotnet/zh-hans/System.Globalization.Extensions.xml",
- "ref/dotnet/zh-hant/System.Globalization.Extensions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Globalization.Extensions.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.IO/4.0.10": {
- "serviceable": true,
- "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==",
- "files": [
- "System.IO.4.0.10.nupkg",
- "System.IO.4.0.10.nupkg.sha512",
- "System.IO.nuspec",
- "lib/DNXCore50/System.IO.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.IO.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.IO.dll",
- "ref/dotnet/System.IO.xml",
- "ref/dotnet/de/System.IO.xml",
- "ref/dotnet/es/System.IO.xml",
- "ref/dotnet/fr/System.IO.xml",
- "ref/dotnet/it/System.IO.xml",
- "ref/dotnet/ja/System.IO.xml",
- "ref/dotnet/ko/System.IO.xml",
- "ref/dotnet/ru/System.IO.xml",
- "ref/dotnet/zh-hans/System.IO.xml",
- "ref/dotnet/zh-hant/System.IO.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.IO.dll"
- ]
- },
- "System.IO.FileSystem/4.0.0": {
- "serviceable": true,
- "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==",
- "files": [
- "System.IO.FileSystem.4.0.0.nupkg",
- "System.IO.FileSystem.4.0.0.nupkg.sha512",
- "System.IO.FileSystem.nuspec",
- "lib/DNXCore50/System.IO.FileSystem.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.dll",
- "lib/netcore50/System.IO.FileSystem.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.IO.FileSystem.dll",
- "ref/dotnet/System.IO.FileSystem.xml",
- "ref/dotnet/de/System.IO.FileSystem.xml",
- "ref/dotnet/es/System.IO.FileSystem.xml",
- "ref/dotnet/fr/System.IO.FileSystem.xml",
- "ref/dotnet/it/System.IO.FileSystem.xml",
- "ref/dotnet/ja/System.IO.FileSystem.xml",
- "ref/dotnet/ko/System.IO.FileSystem.xml",
- "ref/dotnet/ru/System.IO.FileSystem.xml",
- "ref/dotnet/zh-hans/System.IO.FileSystem.xml",
- "ref/dotnet/zh-hant/System.IO.FileSystem.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.IO.FileSystem.Primitives/4.0.0": {
- "serviceable": true,
- "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==",
- "files": [
- "System.IO.FileSystem.Primitives.4.0.0.nupkg",
- "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512",
- "System.IO.FileSystem.Primitives.nuspec",
- "lib/dotnet/System.IO.FileSystem.Primitives.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.IO.FileSystem.Primitives.dll",
- "ref/dotnet/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/de/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/es/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/it/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.Primitives.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Linq/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "s6DNPrcinU2thnbDGyYfvK/2B6RXPvIjNyNFCyFDEPpKKb0dlURf/VSX0HQRbaxi0sXuSSrTCHPXhh75jpx3Pw==",
- "files": [
- "System.Linq.4.0.1-beta-23302.nupkg",
- "System.Linq.4.0.1-beta-23302.nupkg.sha512",
- "System.Linq.nuspec",
- "lib/dotnet/System.Linq.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Linq.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Linq.dll",
- "ref/net45/_._",
- "ref/netcore50/System.Linq.dll",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._"
- ]
- },
- "System.Linq.Expressions/4.0.10": {
- "serviceable": true,
- "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==",
- "files": [
- "runtime.json",
- "System.Linq.Expressions.4.0.10.nupkg",
- "System.Linq.Expressions.4.0.10.nupkg.sha512",
- "System.Linq.Expressions.nuspec",
- "lib/DNXCore50/System.Linq.Expressions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Linq.Expressions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Linq.Expressions.dll",
- "ref/dotnet/System.Linq.Expressions.xml",
- "ref/dotnet/de/System.Linq.Expressions.xml",
- "ref/dotnet/es/System.Linq.Expressions.xml",
- "ref/dotnet/fr/System.Linq.Expressions.xml",
- "ref/dotnet/it/System.Linq.Expressions.xml",
- "ref/dotnet/ja/System.Linq.Expressions.xml",
- "ref/dotnet/ko/System.Linq.Expressions.xml",
- "ref/dotnet/ru/System.Linq.Expressions.xml",
- "ref/dotnet/zh-hans/System.Linq.Expressions.xml",
- "ref/dotnet/zh-hant/System.Linq.Expressions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll"
- ]
- },
- "System.Linq.Queryable/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "DtZNIidKpY95mLklcL4yfLYJCw3cAvfcoLxk8a+BqCAlMWXDmLDz2zizgyPWv2FwIUs7l+Jf9Znvz0yY/ip79Q==",
- "files": [
- "System.Linq.Queryable.4.0.1-beta-23302.nupkg",
- "System.Linq.Queryable.4.0.1-beta-23302.nupkg.sha512",
- "System.Linq.Queryable.nuspec",
- "lib/dotnet/System.Linq.Queryable.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Linq.Queryable.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Linq.Queryable.dll",
- "ref/net45/_._",
- "ref/netcore50/System.Linq.Queryable.dll",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._"
- ]
- },
- "System.ObjectModel/4.0.0": {
- "sha512": "+3j/n+5SlF7PKb0/s5kdord+5RyW3uUscB+0WPuYvfAvEgyx6yPdPXU9tXdDZImRohMuWnQTAG2rFojFPfoGbA==",
- "files": [
- "License.rtf",
- "System.ObjectModel.4.0.0.nupkg",
- "System.ObjectModel.4.0.0.nupkg.sha512",
- "System.ObjectModel.nuspec",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.ObjectModel.dll",
- "ref/dotnet/System.ObjectModel.xml",
- "ref/dotnet/de/System.ObjectModel.xml",
- "ref/dotnet/es/System.ObjectModel.xml",
- "ref/dotnet/fr/System.ObjectModel.xml",
- "ref/dotnet/it/System.ObjectModel.xml",
- "ref/dotnet/ja/System.ObjectModel.xml",
- "ref/dotnet/ko/System.ObjectModel.xml",
- "ref/dotnet/ru/System.ObjectModel.xml",
- "ref/dotnet/zh-hans/System.ObjectModel.xml",
- "ref/dotnet/zh-hant/System.ObjectModel.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.ObjectModel.dll",
- "ref/netcore50/System.ObjectModel.xml",
- "ref/netcore50/de/System.ObjectModel.xml",
- "ref/netcore50/es/System.ObjectModel.xml",
- "ref/netcore50/fr/System.ObjectModel.xml",
- "ref/netcore50/it/System.ObjectModel.xml",
- "ref/netcore50/ja/System.ObjectModel.xml",
- "ref/netcore50/ko/System.ObjectModel.xml",
- "ref/netcore50/ru/System.ObjectModel.xml",
- "ref/netcore50/zh-hans/System.ObjectModel.xml",
- "ref/netcore50/zh-hant/System.ObjectModel.xml",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Private.Uri/4.0.0": {
- "serviceable": true,
- "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==",
- "files": [
- "System.Private.Uri.4.0.0.nupkg",
- "System.Private.Uri.4.0.0.nupkg.sha512",
- "System.Private.Uri.nuspec",
- "lib/DNXCore50/System.Private.Uri.dll",
- "lib/netcore50/System.Private.Uri.dll",
- "ref/dnxcore50/_._",
- "ref/netcore50/_._",
- "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll"
- ]
- },
- "System.Reflection/4.0.10": {
- "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==",
- "files": [
- "System.Reflection.4.0.10.nupkg",
- "System.Reflection.4.0.10.nupkg.sha512",
- "System.Reflection.nuspec",
- "lib/DNXCore50/System.Reflection.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Reflection.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Reflection.dll",
- "ref/dotnet/System.Reflection.xml",
- "ref/dotnet/de/System.Reflection.xml",
- "ref/dotnet/es/System.Reflection.xml",
- "ref/dotnet/fr/System.Reflection.xml",
- "ref/dotnet/it/System.Reflection.xml",
- "ref/dotnet/ja/System.Reflection.xml",
- "ref/dotnet/ko/System.Reflection.xml",
- "ref/dotnet/ru/System.Reflection.xml",
- "ref/dotnet/zh-hans/System.Reflection.xml",
- "ref/dotnet/zh-hant/System.Reflection.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Reflection.dll"
- ]
- },
- "System.Reflection.Emit/4.0.0": {
- "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==",
- "files": [
- "System.Reflection.Emit.4.0.0.nupkg",
- "System.Reflection.Emit.4.0.0.nupkg.sha512",
- "System.Reflection.Emit.nuspec",
- "lib/DNXCore50/System.Reflection.Emit.dll",
- "lib/MonoAndroid10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Reflection.Emit.dll",
- "ref/dotnet/System.Reflection.Emit.xml",
- "ref/dotnet/de/System.Reflection.Emit.xml",
- "ref/dotnet/es/System.Reflection.Emit.xml",
- "ref/dotnet/fr/System.Reflection.Emit.xml",
- "ref/dotnet/it/System.Reflection.Emit.xml",
- "ref/dotnet/ja/System.Reflection.Emit.xml",
- "ref/dotnet/ko/System.Reflection.Emit.xml",
- "ref/dotnet/ru/System.Reflection.Emit.xml",
- "ref/dotnet/zh-hans/System.Reflection.Emit.xml",
- "ref/dotnet/zh-hant/System.Reflection.Emit.xml",
- "ref/MonoAndroid10/_._",
- "ref/net45/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Reflection.Emit.ILGeneration/4.0.0": {
- "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==",
- "files": [
- "System.Reflection.Emit.ILGeneration.4.0.0.nupkg",
- "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512",
- "System.Reflection.Emit.ILGeneration.nuspec",
- "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
- "lib/wp80/_._",
- "ref/dotnet/System.Reflection.Emit.ILGeneration.dll",
- "ref/dotnet/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml",
- "ref/net45/_._",
- "ref/wp80/_._"
- ]
- },
- "System.Reflection.Extensions/4.0.0": {
- "serviceable": true,
- "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==",
- "files": [
- "System.Reflection.Extensions.4.0.0.nupkg",
- "System.Reflection.Extensions.4.0.0.nupkg.sha512",
- "System.Reflection.Extensions.nuspec",
- "lib/DNXCore50/System.Reflection.Extensions.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Extensions.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Reflection.Extensions.dll",
- "ref/dotnet/System.Reflection.Extensions.xml",
- "ref/dotnet/de/System.Reflection.Extensions.xml",
- "ref/dotnet/es/System.Reflection.Extensions.xml",
- "ref/dotnet/fr/System.Reflection.Extensions.xml",
- "ref/dotnet/it/System.Reflection.Extensions.xml",
- "ref/dotnet/ja/System.Reflection.Extensions.xml",
- "ref/dotnet/ko/System.Reflection.Extensions.xml",
- "ref/dotnet/ru/System.Reflection.Extensions.xml",
- "ref/dotnet/zh-hans/System.Reflection.Extensions.xml",
- "ref/dotnet/zh-hant/System.Reflection.Extensions.xml",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Extensions.dll",
- "ref/netcore50/System.Reflection.Extensions.xml",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll"
- ]
- },
- "System.Reflection.Primitives/4.0.0": {
- "serviceable": true,
- "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==",
- "files": [
- "System.Reflection.Primitives.4.0.0.nupkg",
- "System.Reflection.Primitives.4.0.0.nupkg.sha512",
- "System.Reflection.Primitives.nuspec",
- "lib/DNXCore50/System.Reflection.Primitives.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Primitives.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Reflection.Primitives.dll",
- "ref/dotnet/System.Reflection.Primitives.xml",
- "ref/dotnet/de/System.Reflection.Primitives.xml",
- "ref/dotnet/es/System.Reflection.Primitives.xml",
- "ref/dotnet/fr/System.Reflection.Primitives.xml",
- "ref/dotnet/it/System.Reflection.Primitives.xml",
- "ref/dotnet/ja/System.Reflection.Primitives.xml",
- "ref/dotnet/ko/System.Reflection.Primitives.xml",
- "ref/dotnet/ru/System.Reflection.Primitives.xml",
- "ref/dotnet/zh-hans/System.Reflection.Primitives.xml",
- "ref/dotnet/zh-hant/System.Reflection.Primitives.xml",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll"
- ]
- },
- "System.Reflection.TypeExtensions/4.0.0": {
- "serviceable": true,
- "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==",
- "files": [
- "System.Reflection.TypeExtensions.4.0.0.nupkg",
- "System.Reflection.TypeExtensions.4.0.0.nupkg.sha512",
- "System.Reflection.TypeExtensions.nuspec",
- "lib/DNXCore50/System.Reflection.TypeExtensions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Reflection.TypeExtensions.dll",
- "lib/netcore50/System.Reflection.TypeExtensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Reflection.TypeExtensions.dll",
- "ref/dotnet/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/de/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/es/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/fr/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/it/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/ja/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/ko/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/ru/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Reflection.TypeExtensions.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
- ]
- },
- "System.Resources.ResourceManager/4.0.0": {
- "serviceable": true,
- "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==",
- "files": [
- "System.Resources.ResourceManager.4.0.0.nupkg",
- "System.Resources.ResourceManager.4.0.0.nupkg.sha512",
- "System.Resources.ResourceManager.nuspec",
- "lib/DNXCore50/System.Resources.ResourceManager.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Resources.ResourceManager.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Resources.ResourceManager.dll",
- "ref/dotnet/System.Resources.ResourceManager.xml",
- "ref/dotnet/de/System.Resources.ResourceManager.xml",
- "ref/dotnet/es/System.Resources.ResourceManager.xml",
- "ref/dotnet/fr/System.Resources.ResourceManager.xml",
- "ref/dotnet/it/System.Resources.ResourceManager.xml",
- "ref/dotnet/ja/System.Resources.ResourceManager.xml",
- "ref/dotnet/ko/System.Resources.ResourceManager.xml",
- "ref/dotnet/ru/System.Resources.ResourceManager.xml",
- "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml",
- "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml",
- "ref/net45/_._",
- "ref/netcore50/System.Resources.ResourceManager.dll",
- "ref/netcore50/System.Resources.ResourceManager.xml",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll"
- ]
- },
- "System.Runtime/4.0.20": {
- "serviceable": true,
- "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==",
- "files": [
- "System.Runtime.4.0.20.nupkg",
- "System.Runtime.4.0.20.nupkg.sha512",
- "System.Runtime.nuspec",
- "lib/DNXCore50/System.Runtime.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Runtime.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Runtime.dll",
- "ref/dotnet/System.Runtime.xml",
- "ref/dotnet/de/System.Runtime.xml",
- "ref/dotnet/es/System.Runtime.xml",
- "ref/dotnet/fr/System.Runtime.xml",
- "ref/dotnet/it/System.Runtime.xml",
- "ref/dotnet/ja/System.Runtime.xml",
- "ref/dotnet/ko/System.Runtime.xml",
- "ref/dotnet/ru/System.Runtime.xml",
- "ref/dotnet/zh-hans/System.Runtime.xml",
- "ref/dotnet/zh-hant/System.Runtime.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Runtime.dll"
- ]
- },
- "System.Runtime.Extensions/4.0.10": {
- "serviceable": true,
- "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==",
- "files": [
- "System.Runtime.Extensions.4.0.10.nupkg",
- "System.Runtime.Extensions.4.0.10.nupkg.sha512",
- "System.Runtime.Extensions.nuspec",
- "lib/DNXCore50/System.Runtime.Extensions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Runtime.Extensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Runtime.Extensions.dll",
- "ref/dotnet/System.Runtime.Extensions.xml",
- "ref/dotnet/de/System.Runtime.Extensions.xml",
- "ref/dotnet/es/System.Runtime.Extensions.xml",
- "ref/dotnet/fr/System.Runtime.Extensions.xml",
- "ref/dotnet/it/System.Runtime.Extensions.xml",
- "ref/dotnet/ja/System.Runtime.Extensions.xml",
- "ref/dotnet/ko/System.Runtime.Extensions.xml",
- "ref/dotnet/ru/System.Runtime.Extensions.xml",
- "ref/dotnet/zh-hans/System.Runtime.Extensions.xml",
- "ref/dotnet/zh-hant/System.Runtime.Extensions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll"
- ]
- },
- "System.Runtime.Handles/4.0.0": {
- "serviceable": true,
- "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==",
- "files": [
- "System.Runtime.Handles.4.0.0.nupkg",
- "System.Runtime.Handles.4.0.0.nupkg.sha512",
- "System.Runtime.Handles.nuspec",
- "lib/DNXCore50/System.Runtime.Handles.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Runtime.Handles.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Runtime.Handles.dll",
- "ref/dotnet/System.Runtime.Handles.xml",
- "ref/dotnet/de/System.Runtime.Handles.xml",
- "ref/dotnet/es/System.Runtime.Handles.xml",
- "ref/dotnet/fr/System.Runtime.Handles.xml",
- "ref/dotnet/it/System.Runtime.Handles.xml",
- "ref/dotnet/ja/System.Runtime.Handles.xml",
- "ref/dotnet/ko/System.Runtime.Handles.xml",
- "ref/dotnet/ru/System.Runtime.Handles.xml",
- "ref/dotnet/zh-hans/System.Runtime.Handles.xml",
- "ref/dotnet/zh-hant/System.Runtime.Handles.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll"
- ]
- },
- "System.Runtime.InteropServices/4.0.20": {
- "serviceable": true,
- "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==",
- "files": [
- "System.Runtime.InteropServices.4.0.20.nupkg",
- "System.Runtime.InteropServices.4.0.20.nupkg.sha512",
- "System.Runtime.InteropServices.nuspec",
- "lib/DNXCore50/System.Runtime.InteropServices.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Runtime.InteropServices.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Runtime.InteropServices.dll",
- "ref/dotnet/System.Runtime.InteropServices.xml",
- "ref/dotnet/de/System.Runtime.InteropServices.xml",
- "ref/dotnet/es/System.Runtime.InteropServices.xml",
- "ref/dotnet/fr/System.Runtime.InteropServices.xml",
- "ref/dotnet/it/System.Runtime.InteropServices.xml",
- "ref/dotnet/ja/System.Runtime.InteropServices.xml",
- "ref/dotnet/ko/System.Runtime.InteropServices.xml",
- "ref/dotnet/ru/System.Runtime.InteropServices.xml",
- "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml",
- "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll"
- ]
- },
- "System.Runtime.Loader/4.0.0-beta-23302": {
- "serviceable": true,
- "sha512": "b4NcLjIIX8W3TY3MR8nNp2c+JgZFWcf1Nr5W3FfrM6Takr1BjBsDKv40cqK1yP2UsEnaIjGkAzXOph4fF4I40A==",
- "files": [
- "System.Runtime.Loader.4.0.0-beta-23302.nupkg",
- "System.Runtime.Loader.4.0.0-beta-23302.nupkg.sha512",
- "System.Runtime.Loader.nuspec",
- "lib/DNXCore50/System.Runtime.Loader.dll",
- "ref/dotnet/System.Runtime.Loader.dll"
- ]
- },
- "System.Text.Encoding/4.0.10": {
- "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==",
- "files": [
- "System.Text.Encoding.4.0.10.nupkg",
- "System.Text.Encoding.4.0.10.nupkg.sha512",
- "System.Text.Encoding.nuspec",
- "lib/DNXCore50/System.Text.Encoding.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Text.Encoding.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Text.Encoding.dll",
- "ref/dotnet/System.Text.Encoding.xml",
- "ref/dotnet/de/System.Text.Encoding.xml",
- "ref/dotnet/es/System.Text.Encoding.xml",
- "ref/dotnet/fr/System.Text.Encoding.xml",
- "ref/dotnet/it/System.Text.Encoding.xml",
- "ref/dotnet/ja/System.Text.Encoding.xml",
- "ref/dotnet/ko/System.Text.Encoding.xml",
- "ref/dotnet/ru/System.Text.Encoding.xml",
- "ref/dotnet/zh-hans/System.Text.Encoding.xml",
- "ref/dotnet/zh-hant/System.Text.Encoding.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll"
- ]
- },
- "System.Text.Encoding.Extensions/4.0.10": {
- "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==",
- "files": [
- "System.Text.Encoding.Extensions.4.0.10.nupkg",
- "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512",
- "System.Text.Encoding.Extensions.nuspec",
- "lib/DNXCore50/System.Text.Encoding.Extensions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Text.Encoding.Extensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Text.Encoding.Extensions.dll",
- "ref/dotnet/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/de/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/es/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/fr/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/it/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/ja/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/ko/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/ru/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll"
- ]
- },
- "System.Text.RegularExpressions/4.0.10": {
- "serviceable": true,
- "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==",
- "files": [
- "System.Text.RegularExpressions.4.0.10.nupkg",
- "System.Text.RegularExpressions.4.0.10.nupkg.sha512",
- "System.Text.RegularExpressions.nuspec",
- "lib/dotnet/System.Text.RegularExpressions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Text.RegularExpressions.dll",
- "ref/dotnet/System.Text.RegularExpressions.xml",
- "ref/dotnet/de/System.Text.RegularExpressions.xml",
- "ref/dotnet/es/System.Text.RegularExpressions.xml",
- "ref/dotnet/fr/System.Text.RegularExpressions.xml",
- "ref/dotnet/it/System.Text.RegularExpressions.xml",
- "ref/dotnet/ja/System.Text.RegularExpressions.xml",
- "ref/dotnet/ko/System.Text.RegularExpressions.xml",
- "ref/dotnet/ru/System.Text.RegularExpressions.xml",
- "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml",
- "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Threading/4.0.10": {
- "serviceable": true,
- "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==",
- "files": [
- "System.Threading.4.0.10.nupkg",
- "System.Threading.4.0.10.nupkg.sha512",
- "System.Threading.nuspec",
- "lib/DNXCore50/System.Threading.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Threading.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Threading.dll",
- "ref/dotnet/System.Threading.xml",
- "ref/dotnet/de/System.Threading.xml",
- "ref/dotnet/es/System.Threading.xml",
- "ref/dotnet/fr/System.Threading.xml",
- "ref/dotnet/it/System.Threading.xml",
- "ref/dotnet/ja/System.Threading.xml",
- "ref/dotnet/ko/System.Threading.xml",
- "ref/dotnet/ru/System.Threading.xml",
- "ref/dotnet/zh-hans/System.Threading.xml",
- "ref/dotnet/zh-hant/System.Threading.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Threading.dll"
- ]
- },
- "System.Threading.Overlapped/4.0.0": {
- "serviceable": true,
- "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==",
- "files": [
- "System.Threading.Overlapped.4.0.0.nupkg",
- "System.Threading.Overlapped.4.0.0.nupkg.sha512",
- "System.Threading.Overlapped.nuspec",
- "lib/DNXCore50/System.Threading.Overlapped.dll",
- "lib/net46/System.Threading.Overlapped.dll",
- "lib/netcore50/System.Threading.Overlapped.dll",
- "ref/dotnet/System.Threading.Overlapped.dll",
- "ref/dotnet/System.Threading.Overlapped.xml",
- "ref/dotnet/de/System.Threading.Overlapped.xml",
- "ref/dotnet/es/System.Threading.Overlapped.xml",
- "ref/dotnet/fr/System.Threading.Overlapped.xml",
- "ref/dotnet/it/System.Threading.Overlapped.xml",
- "ref/dotnet/ja/System.Threading.Overlapped.xml",
- "ref/dotnet/ko/System.Threading.Overlapped.xml",
- "ref/dotnet/ru/System.Threading.Overlapped.xml",
- "ref/dotnet/zh-hans/System.Threading.Overlapped.xml",
- "ref/dotnet/zh-hant/System.Threading.Overlapped.xml",
- "ref/net46/System.Threading.Overlapped.dll"
- ]
- },
- "System.Threading.Tasks/4.0.10": {
- "serviceable": true,
- "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==",
- "files": [
- "System.Threading.Tasks.4.0.10.nupkg",
- "System.Threading.Tasks.4.0.10.nupkg.sha512",
- "System.Threading.Tasks.nuspec",
- "lib/DNXCore50/System.Threading.Tasks.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Threading.Tasks.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Threading.Tasks.dll",
- "ref/dotnet/System.Threading.Tasks.xml",
- "ref/dotnet/de/System.Threading.Tasks.xml",
- "ref/dotnet/es/System.Threading.Tasks.xml",
- "ref/dotnet/fr/System.Threading.Tasks.xml",
- "ref/dotnet/it/System.Threading.Tasks.xml",
- "ref/dotnet/ja/System.Threading.Tasks.xml",
- "ref/dotnet/ko/System.Threading.Tasks.xml",
- "ref/dotnet/ru/System.Threading.Tasks.xml",
- "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
- "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll"
- ]
- },
- "System.Threading.Thread/4.0.0-beta-23302": {
- "serviceable": true,
- "sha512": "0tn5ET6NNDVjJdpacPXM9lwa3tZeKiIYZHOZPtsbORXop84IN93KenlcqEdPizxPsnOAgauVIgeKftnvwcvlsQ==",
- "files": [
- "System.Threading.Thread.4.0.0-beta-23302.nupkg",
- "System.Threading.Thread.4.0.0-beta-23302.nupkg.sha512",
- "System.Threading.Thread.nuspec",
- "lib/DNXCore50/System.Threading.Thread.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.Thread.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Threading.Thread.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.Thread.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Threading.ThreadPool/4.0.10-beta-23302": {
- "serviceable": true,
- "sha512": "dwwA7ce4yVXenjpJU20JyNn3zrXsWWkbw9UMNK49C09D7tmrYLSxzWSzY7/4034okFcOjQmtP5g36ZRZANZL9A==",
- "files": [
- "System.Threading.ThreadPool.4.0.10-beta-23302.nupkg",
- "System.Threading.ThreadPool.4.0.10-beta-23302.nupkg.sha512",
- "System.Threading.ThreadPool.nuspec",
- "lib/DNXCore50/System.Threading.ThreadPool.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.ThreadPool.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Threading.ThreadPool.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.ThreadPool.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Xml.ReaderWriter/4.0.11-beta-23302": {
- "serviceable": true,
- "sha512": "z9D4/CQ9FytubW6CuTFkv7nb9jPHEvTlOUCXD83oEh5gYfw6RfRJGVPpqY+eJLQOqnBS0wgCPck3zNKEWGCFEA==",
- "files": [
- "System.Xml.ReaderWriter.4.0.11-beta-23302.nupkg",
- "System.Xml.ReaderWriter.4.0.11-beta-23302.nupkg.sha512",
- "System.Xml.ReaderWriter.nuspec",
- "lib/dotnet/System.Xml.ReaderWriter.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Xml.ReaderWriter.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Xml.XDocument/4.0.11-beta-23302": {
- "serviceable": true,
- "sha512": "ugSaPpuT0ImDyfbRtUdsBd6PMWaTYGbeRg1jO6/2tW0cBYIUU5h9496L2Pjm4l6UYa4v2G1+IH1CE/a19D+qSQ==",
- "files": [
- "System.Xml.XDocument.4.0.11-beta-23302.nupkg",
- "System.Xml.XDocument.4.0.11-beta-23302.nupkg.sha512",
- "System.Xml.XDocument.nuspec",
- "lib/dotnet/System.Xml.XDocument.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Xml.XDocument.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Xml.XmlDocument/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "cv14snu2E01I+Ar4Kb8bNfPLdh3+OZDnJArvaRWzdpM1XAnY5SwrsbZLEOE6h6wAIFp3aefU8IbcbnXOMRATlQ==",
- "files": [
- "System.Xml.XmlDocument.4.0.1-beta-23302.nupkg",
- "System.Xml.XmlDocument.4.0.1-beta-23302.nupkg.sha512",
- "System.Xml.XmlDocument.nuspec",
- "lib/dotnet/System.Xml.XmlDocument.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Xml.XmlDocument.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Xml.XmlDocument.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Xml.XmlDocument.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Xml.XmlSerializer/4.0.11-beta-23302": {
- "serviceable": true,
- "sha512": "aLVJmiBKKGhPYAa3zaojjowvsNuFA5hBmDC6aN8Iv+UAr0WIIPOFy9ASp8oTx6VQ7kEhjxCQXC+pWU21597wXA==",
- "files": [
- "runtime.json",
- "System.Xml.XmlSerializer.4.0.11-beta-23302.nupkg",
- "System.Xml.XmlSerializer.4.0.11-beta-23302.nupkg.sha512",
- "System.Xml.XmlSerializer.nuspec",
- "lib/DNXCore50/System.Xml.XmlSerializer.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Xml.XmlSerializer.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Xml.XmlSerializer.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll"
- ]
- }
+ "DNXCore,Version=v5.0": {}
},
+ "libraries": {},
"projectFileDependencyGroups": {
- "": [
- "System.Diagnostics.Process >= 4.0.0-beta-23302",
- "System.IO >= 4.0.10-beta-23302",
- "System.IO.FileSystem >= 4.0.0-beta-23302",
- "System.IO.FileSystem.Primitives >= 4.0.0-beta-23302",
- "System.Runtime >= 4.0.20-beta-23302",
- "System.Runtime.Extensions >= 4.0.10-beta-23302",
- "System.Runtime.Handles >= 4.0.0-beta-23302",
- "System.Runtime.Loader >= 4.0.0-beta-23302",
- "System.Threading >= 4.0.10-beta-23302",
- "System.Globalization.Calendars >= 4.0.0-beta-23302",
- "System.Globalization >= 4.0.10-beta-23302",
- "System.Text.Encoding >= 4.0.10-beta-23302",
- "System.Runtime.InteropServices >= 4.0.20-beta-23302",
- "System.Collections >= 4.0.10-beta-23302",
- "System.Console >= 4.0.0-beta-23302",
- "System.Reflection >= 4.0.10-beta-23302",
- "System.Reflection.Primitives >= 4.0.0-beta-23302",
- "System.ComponentModel >= 4.0.1-beta-23302",
- "System.Xml.ReaderWriter >= 4.0.11-beta-23302",
- "System.Collections.NonGeneric >= 4.0.1-beta-23302",
- "System.Collections.Specialized >= 4.0.1-beta-23302",
- "System.Linq >= 4.0.1-beta-23302",
- "System.Linq.Queryable >= 4.0.1-beta-23302",
- "System.Xml.XmlSerializer >= 4.0.11-beta-23302",
- "System.Xml.XmlDocument >= 4.0.1-beta-23302",
- "System.Xml.XDocument >= 4.0.11-beta-23302"
- ],
+ "": [],
"DNXCore,Version=v5.0": []
}
} \ No newline at end of file
diff --git a/tests/src/Interop/NativeCallable/NativeCallableTest.cs b/tests/src/Interop/NativeCallable/NativeCallableTest.cs
new file mode 100644
index 0000000000..254933f957
--- /dev/null
+++ b/tests/src/Interop/NativeCallable/NativeCallableTest.cs
@@ -0,0 +1,153 @@
+using System;
+using System.Collections.Generic;
+using System.Diagnostics;
+using System.Runtime.CompilerServices;
+using System.Reflection;
+using System.Reflection.Emit;
+using System.Runtime.InteropServices;
+using System.Threading;
+
+public class Program
+{
+ public static class NativeMethods
+ {
+ [DllImport("user32.dll")]
+ public static extern int EnumWindows(IntPtr enumProc, IntPtr lParam);
+ }
+
+ private delegate void NativeMethodInvoker();
+ static EventWaitHandle waitHandle = new AutoResetEvent(false);
+
+ public static int Main()
+ {
+ //NegativeTest_NonBlittable();
+ TestNativeCallableValid();
+ //NegativeTest_ViaDelegate();
+ //NegativeTest_ViaLdftn();
+ return 100;
+ }
+
+ public static void TestNativeCallableValid()
+ {
+ /*
+ void TestNativeCallable()
+ {
+ .locals init ([0] native int ptr)
+ IL_0000: nop
+ IL_0002: ldftn int32 CallbackMethod(native int,native int)
+
+ IL_0012: stloc.0
+ IL_0013: ldloc.0
+ IL_0014: ldsfld native int [mscorlib]System.IntPtr::Zero
+ IL_0019: call bool NativeMethods::EnumWindows(native int,
+ native int)
+ IL_001e: pop
+ IL_001f: ret
+ }
+ */
+ DynamicMethod testNativeCallable = new DynamicMethod("TestNativeCallable", null, null, typeof(Program).Module);
+ ILGenerator il = testNativeCallable.GetILGenerator();
+ il.DeclareLocal(typeof(IntPtr));
+ il.Emit(OpCodes.Nop);
+ il.Emit(OpCodes.Ldftn, typeof(Program).GetMethod("CallbackMethod"));
+ il.Emit(OpCodes.Stloc_0);
+ il.Emit(OpCodes.Ldloc_0);
+ il.Emit(OpCodes.Ldsfld, typeof(IntPtr).GetField("Zero"));
+ il.Emit(OpCodes.Call, typeof(NativeMethods).GetMethod("EnumWindows"));
+ il.Emit(OpCodes.Pop);
+ il.Emit(OpCodes.Ret);
+ NativeMethodInvoker testNativeMethod = (NativeMethodInvoker)testNativeCallable.CreateDelegate(typeof(NativeMethodInvoker));
+ testNativeMethod();
+ }
+
+ public static void NegativeTest_ViaDelegate()
+ {
+ // Try invoking method directly
+ try
+ {
+ Func<IntPtr, IntPtr, int> invoker = CallbackMethod;
+ invoker(IntPtr.Zero, IntPtr.Zero);
+ }
+ catch (Exception)
+ {
+
+ }
+ }
+
+ public static void NegativeTest_NonBlittable()
+ {
+ // Try invoking method directly
+ try
+ {
+ Func<bool, int> invoker = CallbackMethodNonBlitabble;
+ invoker(true);
+ }
+ catch (Exception)
+ {
+ Console.WriteLine(":bla");
+ }
+ }
+
+
+ public static void NegativeTest_ViaLdftn()
+ {
+ /*
+ .locals init (native int V_0)
+ IL_0000: nop
+ IL_0001: ldftn void ConsoleApplication1.Program::callback(int32)
+ IL_0007: stloc.0
+ IL_0008: ldc.i4.s 12
+ IL_000a: ldloc.0
+ IL_000b: calli void(int32)
+ IL_0010: nop
+ IL_0011: ret
+ */
+ DynamicMethod testNativeCallable = new DynamicMethod("TestNativeCallableLdftn", null, null, typeof(Program).Module);
+ ILGenerator il = testNativeCallable.GetILGenerator();
+ il.DeclareLocal(typeof(IntPtr));
+ il.Emit(OpCodes.Nop);
+ il.Emit(OpCodes.Ldftn, typeof(Program).GetMethod("LdftnCallback"));
+ il.Emit(OpCodes.Stloc_0);
+ il.Emit(OpCodes.Ldc_I4,12);
+ il.Emit(OpCodes.Ldloc_0);
+
+ SignatureHelper sig = SignatureHelper.GetMethodSigHelper(typeof(Program).Module, null, new Type[] { typeof(int) });
+ sig.AddArgument(typeof(int));
+
+ // il.EmitCalli is not available and the below is not correct
+ il.Emit(OpCodes.Calli,sig);
+ il.Emit(OpCodes.Nop);
+ il.Emit(OpCodes.Ret);
+
+ NativeMethodInvoker testNativeMethod = (NativeMethodInvoker)testNativeCallable.CreateDelegate(typeof(NativeMethodInvoker));
+ testNativeMethod();
+
+ }
+
+ #region callbacks
+ [NativeCallable]
+ public static void LdftnCallback(int val)
+ {
+ }
+
+ [NativeCallable]
+ public static int CallbackMethod(IntPtr hWnd, IntPtr lParam)
+ {
+ waitHandle.Set();
+ return 1;
+ }
+
+ [NativeCallable]
+ public static int CallbackMethodGeneric<T>(IntPtr hWnd, IntPtr lParam)
+ {
+ return 1;
+ }
+
+ [NativeCallable]
+ public static int CallbackMethodNonBlitabble(bool x1)
+ {
+ return 1;
+ }
+ #endregion //callbacks
+
+} \ No newline at end of file
diff --git a/tests/src/Interop/NativeCallable/NativeCallableTest.csproj b/tests/src/Interop/NativeCallable/NativeCallableTest.csproj
new file mode 100644
index 0000000000..d2aa319a3e
--- /dev/null
+++ b/tests/src/Interop/NativeCallable/NativeCallableTest.csproj
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <AssemblyName>NativeCallableTest</AssemblyName>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <FileAlignment>512</FileAlignment>
+ <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+ <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages</ReferencePath>
+ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ <NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp>
+ <DefineConstants>$(DefineConstants);STATIC</DefineConstants>
+ <ReferenceLocalMscorlib>true</ReferenceLocalMscorlib>
+ </PropertyGroup>
+ <!-- Default configurations to help VS understand the configurations -->
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
+ </PropertyGroup>
+ <ItemGroup>
+ <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
+ <Visible>False</Visible>
+ </CodeAnalysisDependentAssemblyPaths>
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="project.json" />
+ <None Include="app.config" />
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="NativeCallableTest.cs" />
+ </ItemGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+</Project> \ No newline at end of file
diff --git a/tests/src/Interop/NativeCallable/project.json b/tests/src/Interop/NativeCallable/project.json
index cd536cf30e..b04d32fae3 100644
--- a/tests/src/Interop/NativeCallable/project.json
+++ b/tests/src/Interop/NativeCallable/project.json
@@ -1,33 +1,7 @@
-{
+{
"dependencies": {
- "System.Diagnostics.Process": "4.0.0-beta-23302",
- "System.IO": "4.0.10-beta-23302",
- "System.IO.FileSystem": "4.0.0-beta-23302",
- "System.IO.FileSystem.Primitives": "4.0.0-beta-23302",
- "System.Runtime": "4.0.20-beta-23302",
- "System.Runtime.Extensions": "4.0.10-beta-23302",
- "System.Runtime.Handles": "4.0.0-beta-23302",
- "System.Runtime.Loader": "4.0.0-beta-23302",
- "System.Threading": "4.0.10-beta-23302",
- "System.Globalization.Calendars": "4.0.0-beta-23302",
- "System.Globalization": "4.0.10-beta-23302",
- "System.Text.Encoding": "4.0.10-beta-23302",
- "System.Runtime.InteropServices": "4.0.20-beta-23302",
- "System.Collections": "4.0.10-beta-23302",
- "System.Console": "4.0.0-beta-23302",
- "System.Reflection": "4.0.10-beta-23302",
- "System.Reflection.Primitives": "4.0.0-beta-23302",
- "System.ComponentModel": "4.0.1-beta-23302",
- "System.Xml.ReaderWriter": "4.0.11-beta-23302",
- "System.Collections.NonGeneric": "4.0.1-beta-23302",
- "System.Collections.Specialized": "4.0.1-beta-23302",
- "System.Linq": "4.0.1-beta-23302",
- "System.Linq.Queryable": "4.0.1-beta-23302",
- "System.Xml.XmlSerializer": "4.0.11-beta-23302",
- "System.Xml.XmlDocument": "4.0.1-beta-23302",
- "System.Xml.XDocument": "4.0.11-beta-23302"
},
"frameworks": {
"dnxcore50": {}
}
-} \ No newline at end of file
+}
diff --git a/tests/src/Interop/NativeCallable/project.lock.json b/tests/src/Interop/NativeCallable/project.lock.json
index 9860deb251..861d3c3d7f 100644
--- a/tests/src/Interop/NativeCallable/project.lock.json
+++ b/tests/src/Interop/NativeCallable/project.lock.json
@@ -2,1936 +2,11 @@
"locked": true,
"version": -9996,
"targets": {
- "DNXCore,Version=v5.0": {
- "Microsoft.Win32.Primitives/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20"
- },
- "compile": {
- "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
- },
- "runtime": {
- "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
- }
- },
- "Microsoft.Win32.Registry/4.0.0-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Runtime.Handles": "4.0.0",
- "System.Collections": "4.0.10",
- "System.Runtime.Extensions": "4.0.10",
- "System.Globalization": "4.0.10"
- },
- "compile": {
- "ref/dotnet/Microsoft.Win32.Registry.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/Microsoft.Win32.Registry.dll": {}
- }
- },
- "System.Collections/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20"
- },
- "compile": {
- "ref/dotnet/System.Collections.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Collections.dll": {}
- }
- },
- "System.Collections.NonGeneric/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Globalization": "4.0.10",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Runtime.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Collections.NonGeneric.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Collections.NonGeneric.dll": {}
- }
- },
- "System.Collections.Specialized/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Collections.NonGeneric": "4.0.0",
- "System.Globalization.Extensions": "4.0.0",
- "System.Runtime.Extensions": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Globalization": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Collections.Specialized.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Collections.Specialized.dll": {}
- }
- },
- "System.ComponentModel/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20"
- },
- "compile": {
- "ref/dotnet/System.ComponentModel.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.ComponentModel.dll": {}
- }
- },
- "System.Console/4.0.0-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.IO.FileSystem.Primitives": "4.0.0",
- "System.IO": "4.0.10",
- "System.Threading.Tasks": "4.0.10",
- "System.Text.Encoding": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Text.Encoding.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Console.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Console.dll": {}
- }
- },
- "System.Diagnostics.Debug/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Diagnostics.Debug.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Diagnostics.Debug.dll": {}
- }
- },
- "System.Diagnostics.Process/4.0.0-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Runtime.Handles": "4.0.0",
- "System.IO.FileSystem": "4.0.0",
- "Microsoft.Win32.Registry": "4.0.0-beta-23302",
- "Microsoft.Win32.Primitives": "4.0.0",
- "System.IO.FileSystem.Primitives": "4.0.0",
- "System.Threading.Thread": "4.0.0-beta-23302",
- "System.Text.Encoding": "4.0.10",
- "System.IO": "4.0.10",
- "System.Threading.Tasks": "4.0.10",
- "System.Collections": "4.0.10",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Threading.ThreadPool": "4.0.10-beta-23302",
- "System.Globalization": "4.0.10",
- "System.Text.Encoding.Extensions": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Runtime.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Diagnostics.Process.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Diagnostics.Process.dll": {}
- }
- },
- "System.Diagnostics.Tools/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Diagnostics.Tools.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
- }
- },
- "System.Globalization/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Globalization.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Globalization.dll": {}
- }
- },
- "System.Globalization.Calendars/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Globalization": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Globalization.Calendars.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Globalization.Calendars.dll": {}
- }
- },
- "System.Globalization.Extensions/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.Extensions": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Globalization.Extensions.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Globalization.Extensions.dll": {}
- }
- },
- "System.IO/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Text.Encoding": "4.0.0",
- "System.Threading.Tasks": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.IO.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.IO.dll": {}
- }
- },
- "System.IO.FileSystem/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.IO.FileSystem.Primitives": "4.0.0",
- "System.Runtime.Handles": "4.0.0",
- "System.Threading.Overlapped": "4.0.0",
- "System.Text.Encoding": "4.0.10",
- "System.IO": "4.0.10",
- "System.Collections": "4.0.10",
- "System.Threading.Tasks": "4.0.10",
- "System.Runtime.Extensions": "4.0.10",
- "System.Text.Encoding.Extensions": "4.0.10",
- "System.Threading": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.IO.FileSystem.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.IO.FileSystem.dll": {}
- }
- },
- "System.IO.FileSystem.Primitives/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.20"
- },
- "compile": {
- "ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
- }
- },
- "System.Linq/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Collections": "4.0.10",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Runtime.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Linq.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Collections": "4.0.0",
- "System.Diagnostics.Debug": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.IO": "4.0.0",
- "System.Reflection.TypeExtensions": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Reflection.Emit": "4.0.0",
- "System.ObjectModel": "4.0.0",
- "System.Threading": "4.0.0",
- "System.Runtime.Extensions": "4.0.0",
- "System.Linq": "4.0.0",
- "System.Globalization": "4.0.0",
- "System.Reflection.Extensions": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Linq.Expressions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Linq.Expressions.dll": {}
- }
- },
- "System.Linq.Queryable/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Linq.Expressions": "4.0.10",
- "System.Linq": "4.0.0",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Reflection.Extensions": "4.0.0",
- "System.Reflection": "4.0.10",
- "System.Collections": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Linq.Queryable.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Linq.Queryable.dll": {}
- }
- },
- "System.ObjectModel/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.ObjectModel.dll": {}
- }
- },
- "System.Private.Uri/4.0.0": {
- "runtime": {
- "lib/DNXCore50/System.Private.Uri.dll": {}
- }
- },
- "System.Reflection/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.IO": "4.0.0",
- "System.Reflection.Primitives": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.dll": {}
- }
- },
- "System.Reflection.Emit/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Reflection.Emit.ILGeneration": "4.0.0",
- "System.IO": "4.0.0",
- "System.Reflection.Primitives": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.Emit.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.Emit.dll": {}
- }
- },
- "System.Reflection.Emit.ILGeneration/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Reflection.Primitives": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
- }
- },
- "System.Reflection.Extensions/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.Extensions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.Extensions.dll": {}
- }
- },
- "System.Reflection.Primitives/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.Primitives.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.Primitives.dll": {}
- }
- },
- "System.Reflection.TypeExtensions/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
- }
- },
- "System.Resources.ResourceManager/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Globalization": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Resources.ResourceManager.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
- }
- },
- "System.Runtime/4.0.20": {
- "dependencies": {
- "System.Private.Uri": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Runtime.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Runtime.dll": {}
- }
- },
- "System.Runtime.Extensions/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20"
- },
- "compile": {
- "ref/dotnet/System.Runtime.Extensions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Runtime.Extensions.dll": {}
- }
- },
- "System.Runtime.Handles/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Runtime.Handles.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Runtime.Handles.dll": {}
- }
- },
- "System.Runtime.InteropServices/4.0.20": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Runtime.Handles": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Runtime.InteropServices.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
- }
- },
- "System.Runtime.Loader/4.0.0-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.IO": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Runtime.Loader.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Runtime.Loader.dll": {}
- }
- },
- "System.Text.Encoding/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Text.Encoding.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Text.Encoding.dll": {}
- }
- },
- "System.Text.Encoding.Extensions/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Text.Encoding": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {}
- }
- },
- "System.Text.RegularExpressions/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Collections": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Runtime.Extensions": "4.0.10",
- "System.Threading": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Text.RegularExpressions.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Text.RegularExpressions.dll": {}
- }
- },
- "System.Threading/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Threading.Tasks": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Threading.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.dll": {}
- }
- },
- "System.Threading.Overlapped/4.0.0": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.Handles": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Threading.Overlapped.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.Overlapped.dll": {}
- }
- },
- "System.Threading.Tasks/4.0.10": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Threading.Tasks.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.Tasks.dll": {}
- }
- },
- "System.Threading.Thread/4.0.0-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Threading.Thread.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.Thread.dll": {}
- }
- },
- "System.Threading.ThreadPool/4.0.10-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.InteropServices": "4.0.0"
- },
- "compile": {
- "ref/dotnet/System.Threading.ThreadPool.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
- }
- },
- "System.Xml.ReaderWriter/4.0.11-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Text.Encoding": "4.0.10",
- "System.IO": "4.0.10",
- "System.Threading.Tasks": "4.0.10",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.IO.FileSystem": "4.0.0",
- "System.IO.FileSystem.Primitives": "4.0.0",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Text.RegularExpressions": "4.0.10",
- "System.Collections": "4.0.10",
- "System.Runtime.Extensions": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Text.Encoding.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Xml.ReaderWriter.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Xml.ReaderWriter.dll": {}
- }
- },
- "System.Xml.XDocument/4.0.11-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.IO": "4.0.10",
- "System.Xml.ReaderWriter": "4.0.10",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Diagnostics.Tools": "4.0.0",
- "System.Collections": "4.0.10",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Text.Encoding": "4.0.10",
- "System.Reflection": "4.0.10",
- "System.Runtime.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Xml.XDocument.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Xml.XDocument.dll": {}
- }
- },
- "System.Xml.XmlDocument/4.0.1-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Xml.ReaderWriter": "4.0.10",
- "System.IO": "4.0.10",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Text.Encoding": "4.0.10",
- "System.Collections": "4.0.10",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Runtime.Extensions": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Threading": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Xml.XmlDocument.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Xml.XmlDocument.dll": {}
- }
- },
- "System.Xml.XmlSerializer/4.0.11-beta-23302": {
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Xml.XmlDocument": "4.0.0",
- "System.Reflection.TypeExtensions": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Reflection.Extensions": "4.0.0",
- "System.Linq": "4.0.0",
- "System.Collections": "4.0.10",
- "System.Diagnostics.Debug": "4.0.10",
- "System.Globalization": "4.0.10",
- "System.Reflection": "4.0.10",
- "System.Xml.ReaderWriter": "4.0.10",
- "System.IO": "4.0.10",
- "System.Text.RegularExpressions": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Runtime.Extensions": "4.0.10"
- },
- "compile": {
- "ref/dotnet/System.Xml.XmlSerializer.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Xml.XmlSerializer.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Microsoft.Win32.Primitives/4.0.0": {
- "serviceable": true,
- "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==",
- "files": [
- "Microsoft.Win32.Primitives.4.0.0.nupkg",
- "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512",
- "Microsoft.Win32.Primitives.nuspec",
- "lib/dotnet/Microsoft.Win32.Primitives.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/Microsoft.Win32.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/Microsoft.Win32.Primitives.dll",
- "ref/dotnet/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/de/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/es/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/fr/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/it/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/ja/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/ko/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/ru/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml",
- "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/Microsoft.Win32.Primitives.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "Microsoft.Win32.Registry/4.0.0-beta-23302": {
- "serviceable": true,
- "sha512": "63Vc0lDW+pMCSd6ygScz/XTiJE3Ou5Sr7yrZ0HE/Ym/Bi/mN0LMAJqUtAUSJxVBuqbozW/q39RpNLIZ+QlJvig==",
- "files": [
- "Microsoft.Win32.Registry.4.0.0-beta-23302.nupkg",
- "Microsoft.Win32.Registry.4.0.0-beta-23302.nupkg.sha512",
- "Microsoft.Win32.Registry.nuspec",
- "lib/DNXCore50/Microsoft.Win32.Registry.dll",
- "lib/net46/Microsoft.Win32.Registry.dll",
- "ref/dotnet/Microsoft.Win32.Registry.dll",
- "ref/net46/Microsoft.Win32.Registry.dll"
- ]
- },
- "System.Collections/4.0.10": {
- "serviceable": true,
- "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==",
- "files": [
- "System.Collections.4.0.10.nupkg",
- "System.Collections.4.0.10.nupkg.sha512",
- "System.Collections.nuspec",
- "lib/DNXCore50/System.Collections.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Collections.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Collections.dll",
- "ref/dotnet/System.Collections.xml",
- "ref/dotnet/de/System.Collections.xml",
- "ref/dotnet/es/System.Collections.xml",
- "ref/dotnet/fr/System.Collections.xml",
- "ref/dotnet/it/System.Collections.xml",
- "ref/dotnet/ja/System.Collections.xml",
- "ref/dotnet/ko/System.Collections.xml",
- "ref/dotnet/ru/System.Collections.xml",
- "ref/dotnet/zh-hans/System.Collections.xml",
- "ref/dotnet/zh-hant/System.Collections.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Collections.dll"
- ]
- },
- "System.Collections.NonGeneric/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "pSTpxEZ8/VRqmMnAP4Nfs7pdC8JpggNdnfGD225uIeEdNnc4m6xu3guu4BrFD3qrrBY1qSZCuNyY4DNJgq877A==",
- "files": [
- "System.Collections.NonGeneric.4.0.1-beta-23302.nupkg",
- "System.Collections.NonGeneric.4.0.1-beta-23302.nupkg.sha512",
- "System.Collections.NonGeneric.nuspec",
- "lib/dotnet/System.Collections.NonGeneric.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.NonGeneric.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Collections.NonGeneric.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.NonGeneric.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Collections.Specialized/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "v1eYdfSH6ttx2QYSbvArTqlumBamCij2R8iNtdA2tBq0QmWseW5Nc+H3Ut1JHa9T1q3jWuk0NR95zMBwty3Q+Q==",
- "files": [
- "System.Collections.Specialized.4.0.1-beta-23302.nupkg",
- "System.Collections.Specialized.4.0.1-beta-23302.nupkg.sha512",
- "System.Collections.Specialized.nuspec",
- "lib/dotnet/System.Collections.Specialized.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.Specialized.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Collections.Specialized.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.Specialized.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.ComponentModel/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "Ju+nhdZ8gMwZAXRIr/ACoME9I9SpxeS+Xw4Bouok4xTvbbwkjlT55Mr9gybqcGMp4F/hzS55RnQDIiRN70fEdg==",
- "files": [
- "System.ComponentModel.4.0.1-beta-23302.nupkg",
- "System.ComponentModel.4.0.1-beta-23302.nupkg.sha512",
- "System.ComponentModel.nuspec",
- "lib/dotnet/System.ComponentModel.dll",
- "lib/net45/_._",
- "lib/netcore50/System.ComponentModel.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.ComponentModel.dll",
- "ref/net45/_._",
- "ref/netcore50/System.ComponentModel.dll",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._"
- ]
- },
- "System.Console/4.0.0-beta-23302": {
- "serviceable": true,
- "sha512": "rpWEkJWW29TjVZdDz5zr8VnBv4IN9BQHmP4Ky9tEbvkdhkJRb0ZO59acXMpVD1tSM2VhGlLnq0kpdjOLNmejNA==",
- "files": [
- "System.Console.4.0.0-beta-23302.nupkg",
- "System.Console.4.0.0-beta-23302.nupkg.sha512",
- "System.Console.nuspec",
- "lib/DNXCore50/System.Console.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Console.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Console.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Console.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Diagnostics.Debug/4.0.10": {
- "serviceable": true,
- "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==",
- "files": [
- "System.Diagnostics.Debug.4.0.10.nupkg",
- "System.Diagnostics.Debug.4.0.10.nupkg.sha512",
- "System.Diagnostics.Debug.nuspec",
- "lib/DNXCore50/System.Diagnostics.Debug.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Diagnostics.Debug.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Diagnostics.Debug.dll",
- "ref/dotnet/System.Diagnostics.Debug.xml",
- "ref/dotnet/de/System.Diagnostics.Debug.xml",
- "ref/dotnet/es/System.Diagnostics.Debug.xml",
- "ref/dotnet/fr/System.Diagnostics.Debug.xml",
- "ref/dotnet/it/System.Diagnostics.Debug.xml",
- "ref/dotnet/ja/System.Diagnostics.Debug.xml",
- "ref/dotnet/ko/System.Diagnostics.Debug.xml",
- "ref/dotnet/ru/System.Diagnostics.Debug.xml",
- "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml",
- "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll"
- ]
- },
- "System.Diagnostics.Process/4.0.0-beta-23302": {
- "serviceable": true,
- "sha512": "FtflxzCJUdgw+4suLaWz82EOLxVa7X6DWbY4eSRIomDlMwYrsof8Ewz81XhKMWY0EOY/5Nx+r/oPTbFUECAiUg==",
- "files": [
- "System.Diagnostics.Process.4.0.0-beta-23302.nupkg",
- "System.Diagnostics.Process.4.0.0-beta-23302.nupkg.sha512",
- "System.Diagnostics.Process.nuspec",
- "lib/DNXCore50/System.Diagnostics.Process.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.Process.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Diagnostics.Process.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.Process.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Diagnostics.Tools/4.0.0": {
- "serviceable": true,
- "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==",
- "files": [
- "System.Diagnostics.Tools.4.0.0.nupkg",
- "System.Diagnostics.Tools.4.0.0.nupkg.sha512",
- "System.Diagnostics.Tools.nuspec",
- "lib/DNXCore50/System.Diagnostics.Tools.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Diagnostics.Tools.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Diagnostics.Tools.dll",
- "ref/dotnet/System.Diagnostics.Tools.xml",
- "ref/dotnet/de/System.Diagnostics.Tools.xml",
- "ref/dotnet/es/System.Diagnostics.Tools.xml",
- "ref/dotnet/fr/System.Diagnostics.Tools.xml",
- "ref/dotnet/it/System.Diagnostics.Tools.xml",
- "ref/dotnet/ja/System.Diagnostics.Tools.xml",
- "ref/dotnet/ko/System.Diagnostics.Tools.xml",
- "ref/dotnet/ru/System.Diagnostics.Tools.xml",
- "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml",
- "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Tools.dll",
- "ref/netcore50/System.Diagnostics.Tools.xml",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll"
- ]
- },
- "System.Globalization/4.0.10": {
- "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==",
- "files": [
- "System.Globalization.4.0.10.nupkg",
- "System.Globalization.4.0.10.nupkg.sha512",
- "System.Globalization.nuspec",
- "lib/DNXCore50/System.Globalization.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Globalization.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Globalization.dll",
- "ref/dotnet/System.Globalization.xml",
- "ref/dotnet/de/System.Globalization.xml",
- "ref/dotnet/es/System.Globalization.xml",
- "ref/dotnet/fr/System.Globalization.xml",
- "ref/dotnet/it/System.Globalization.xml",
- "ref/dotnet/ja/System.Globalization.xml",
- "ref/dotnet/ko/System.Globalization.xml",
- "ref/dotnet/ru/System.Globalization.xml",
- "ref/dotnet/zh-hans/System.Globalization.xml",
- "ref/dotnet/zh-hant/System.Globalization.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Globalization.dll"
- ]
- },
- "System.Globalization.Calendars/4.0.0": {
- "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==",
- "files": [
- "System.Globalization.Calendars.4.0.0.nupkg",
- "System.Globalization.Calendars.4.0.0.nupkg.sha512",
- "System.Globalization.Calendars.nuspec",
- "lib/DNXCore50/System.Globalization.Calendars.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Globalization.Calendars.dll",
- "lib/netcore50/System.Globalization.Calendars.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Globalization.Calendars.dll",
- "ref/dotnet/System.Globalization.Calendars.xml",
- "ref/dotnet/de/System.Globalization.Calendars.xml",
- "ref/dotnet/es/System.Globalization.Calendars.xml",
- "ref/dotnet/fr/System.Globalization.Calendars.xml",
- "ref/dotnet/it/System.Globalization.Calendars.xml",
- "ref/dotnet/ja/System.Globalization.Calendars.xml",
- "ref/dotnet/ko/System.Globalization.Calendars.xml",
- "ref/dotnet/ru/System.Globalization.Calendars.xml",
- "ref/dotnet/zh-hans/System.Globalization.Calendars.xml",
- "ref/dotnet/zh-hant/System.Globalization.Calendars.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Globalization.Calendars.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll"
- ]
- },
- "System.Globalization.Extensions/4.0.0": {
- "serviceable": true,
- "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==",
- "files": [
- "System.Globalization.Extensions.4.0.0.nupkg",
- "System.Globalization.Extensions.4.0.0.nupkg.sha512",
- "System.Globalization.Extensions.nuspec",
- "lib/dotnet/System.Globalization.Extensions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Globalization.Extensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Globalization.Extensions.dll",
- "ref/dotnet/System.Globalization.Extensions.xml",
- "ref/dotnet/de/System.Globalization.Extensions.xml",
- "ref/dotnet/es/System.Globalization.Extensions.xml",
- "ref/dotnet/fr/System.Globalization.Extensions.xml",
- "ref/dotnet/it/System.Globalization.Extensions.xml",
- "ref/dotnet/ja/System.Globalization.Extensions.xml",
- "ref/dotnet/ko/System.Globalization.Extensions.xml",
- "ref/dotnet/ru/System.Globalization.Extensions.xml",
- "ref/dotnet/zh-hans/System.Globalization.Extensions.xml",
- "ref/dotnet/zh-hant/System.Globalization.Extensions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Globalization.Extensions.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.IO/4.0.10": {
- "serviceable": true,
- "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==",
- "files": [
- "System.IO.4.0.10.nupkg",
- "System.IO.4.0.10.nupkg.sha512",
- "System.IO.nuspec",
- "lib/DNXCore50/System.IO.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.IO.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.IO.dll",
- "ref/dotnet/System.IO.xml",
- "ref/dotnet/de/System.IO.xml",
- "ref/dotnet/es/System.IO.xml",
- "ref/dotnet/fr/System.IO.xml",
- "ref/dotnet/it/System.IO.xml",
- "ref/dotnet/ja/System.IO.xml",
- "ref/dotnet/ko/System.IO.xml",
- "ref/dotnet/ru/System.IO.xml",
- "ref/dotnet/zh-hans/System.IO.xml",
- "ref/dotnet/zh-hant/System.IO.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.IO.dll"
- ]
- },
- "System.IO.FileSystem/4.0.0": {
- "serviceable": true,
- "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==",
- "files": [
- "System.IO.FileSystem.4.0.0.nupkg",
- "System.IO.FileSystem.4.0.0.nupkg.sha512",
- "System.IO.FileSystem.nuspec",
- "lib/DNXCore50/System.IO.FileSystem.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.dll",
- "lib/netcore50/System.IO.FileSystem.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.IO.FileSystem.dll",
- "ref/dotnet/System.IO.FileSystem.xml",
- "ref/dotnet/de/System.IO.FileSystem.xml",
- "ref/dotnet/es/System.IO.FileSystem.xml",
- "ref/dotnet/fr/System.IO.FileSystem.xml",
- "ref/dotnet/it/System.IO.FileSystem.xml",
- "ref/dotnet/ja/System.IO.FileSystem.xml",
- "ref/dotnet/ko/System.IO.FileSystem.xml",
- "ref/dotnet/ru/System.IO.FileSystem.xml",
- "ref/dotnet/zh-hans/System.IO.FileSystem.xml",
- "ref/dotnet/zh-hant/System.IO.FileSystem.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.IO.FileSystem.Primitives/4.0.0": {
- "serviceable": true,
- "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==",
- "files": [
- "System.IO.FileSystem.Primitives.4.0.0.nupkg",
- "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512",
- "System.IO.FileSystem.Primitives.nuspec",
- "lib/dotnet/System.IO.FileSystem.Primitives.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.IO.FileSystem.Primitives.dll",
- "ref/dotnet/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/de/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/es/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/it/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml",
- "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.Primitives.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Linq/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "s6DNPrcinU2thnbDGyYfvK/2B6RXPvIjNyNFCyFDEPpKKb0dlURf/VSX0HQRbaxi0sXuSSrTCHPXhh75jpx3Pw==",
- "files": [
- "System.Linq.4.0.1-beta-23302.nupkg",
- "System.Linq.4.0.1-beta-23302.nupkg.sha512",
- "System.Linq.nuspec",
- "lib/dotnet/System.Linq.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Linq.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Linq.dll",
- "ref/net45/_._",
- "ref/netcore50/System.Linq.dll",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._"
- ]
- },
- "System.Linq.Expressions/4.0.10": {
- "serviceable": true,
- "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==",
- "files": [
- "runtime.json",
- "System.Linq.Expressions.4.0.10.nupkg",
- "System.Linq.Expressions.4.0.10.nupkg.sha512",
- "System.Linq.Expressions.nuspec",
- "lib/DNXCore50/System.Linq.Expressions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Linq.Expressions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Linq.Expressions.dll",
- "ref/dotnet/System.Linq.Expressions.xml",
- "ref/dotnet/de/System.Linq.Expressions.xml",
- "ref/dotnet/es/System.Linq.Expressions.xml",
- "ref/dotnet/fr/System.Linq.Expressions.xml",
- "ref/dotnet/it/System.Linq.Expressions.xml",
- "ref/dotnet/ja/System.Linq.Expressions.xml",
- "ref/dotnet/ko/System.Linq.Expressions.xml",
- "ref/dotnet/ru/System.Linq.Expressions.xml",
- "ref/dotnet/zh-hans/System.Linq.Expressions.xml",
- "ref/dotnet/zh-hant/System.Linq.Expressions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll"
- ]
- },
- "System.Linq.Queryable/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "DtZNIidKpY95mLklcL4yfLYJCw3cAvfcoLxk8a+BqCAlMWXDmLDz2zizgyPWv2FwIUs7l+Jf9Znvz0yY/ip79Q==",
- "files": [
- "System.Linq.Queryable.4.0.1-beta-23302.nupkg",
- "System.Linq.Queryable.4.0.1-beta-23302.nupkg.sha512",
- "System.Linq.Queryable.nuspec",
- "lib/dotnet/System.Linq.Queryable.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Linq.Queryable.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Linq.Queryable.dll",
- "ref/net45/_._",
- "ref/netcore50/System.Linq.Queryable.dll",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._"
- ]
- },
- "System.ObjectModel/4.0.0": {
- "sha512": "+3j/n+5SlF7PKb0/s5kdord+5RyW3uUscB+0WPuYvfAvEgyx6yPdPXU9tXdDZImRohMuWnQTAG2rFojFPfoGbA==",
- "files": [
- "License.rtf",
- "System.ObjectModel.4.0.0.nupkg",
- "System.ObjectModel.4.0.0.nupkg.sha512",
- "System.ObjectModel.nuspec",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.ObjectModel.dll",
- "ref/dotnet/System.ObjectModel.xml",
- "ref/dotnet/de/System.ObjectModel.xml",
- "ref/dotnet/es/System.ObjectModel.xml",
- "ref/dotnet/fr/System.ObjectModel.xml",
- "ref/dotnet/it/System.ObjectModel.xml",
- "ref/dotnet/ja/System.ObjectModel.xml",
- "ref/dotnet/ko/System.ObjectModel.xml",
- "ref/dotnet/ru/System.ObjectModel.xml",
- "ref/dotnet/zh-hans/System.ObjectModel.xml",
- "ref/dotnet/zh-hant/System.ObjectModel.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.ObjectModel.dll",
- "ref/netcore50/System.ObjectModel.xml",
- "ref/netcore50/de/System.ObjectModel.xml",
- "ref/netcore50/es/System.ObjectModel.xml",
- "ref/netcore50/fr/System.ObjectModel.xml",
- "ref/netcore50/it/System.ObjectModel.xml",
- "ref/netcore50/ja/System.ObjectModel.xml",
- "ref/netcore50/ko/System.ObjectModel.xml",
- "ref/netcore50/ru/System.ObjectModel.xml",
- "ref/netcore50/zh-hans/System.ObjectModel.xml",
- "ref/netcore50/zh-hant/System.ObjectModel.xml",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Private.Uri/4.0.0": {
- "serviceable": true,
- "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==",
- "files": [
- "System.Private.Uri.4.0.0.nupkg",
- "System.Private.Uri.4.0.0.nupkg.sha512",
- "System.Private.Uri.nuspec",
- "lib/DNXCore50/System.Private.Uri.dll",
- "lib/netcore50/System.Private.Uri.dll",
- "ref/dnxcore50/_._",
- "ref/netcore50/_._",
- "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll"
- ]
- },
- "System.Reflection/4.0.10": {
- "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==",
- "files": [
- "System.Reflection.4.0.10.nupkg",
- "System.Reflection.4.0.10.nupkg.sha512",
- "System.Reflection.nuspec",
- "lib/DNXCore50/System.Reflection.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Reflection.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Reflection.dll",
- "ref/dotnet/System.Reflection.xml",
- "ref/dotnet/de/System.Reflection.xml",
- "ref/dotnet/es/System.Reflection.xml",
- "ref/dotnet/fr/System.Reflection.xml",
- "ref/dotnet/it/System.Reflection.xml",
- "ref/dotnet/ja/System.Reflection.xml",
- "ref/dotnet/ko/System.Reflection.xml",
- "ref/dotnet/ru/System.Reflection.xml",
- "ref/dotnet/zh-hans/System.Reflection.xml",
- "ref/dotnet/zh-hant/System.Reflection.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Reflection.dll"
- ]
- },
- "System.Reflection.Emit/4.0.0": {
- "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==",
- "files": [
- "System.Reflection.Emit.4.0.0.nupkg",
- "System.Reflection.Emit.4.0.0.nupkg.sha512",
- "System.Reflection.Emit.nuspec",
- "lib/DNXCore50/System.Reflection.Emit.dll",
- "lib/MonoAndroid10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Reflection.Emit.dll",
- "ref/dotnet/System.Reflection.Emit.xml",
- "ref/dotnet/de/System.Reflection.Emit.xml",
- "ref/dotnet/es/System.Reflection.Emit.xml",
- "ref/dotnet/fr/System.Reflection.Emit.xml",
- "ref/dotnet/it/System.Reflection.Emit.xml",
- "ref/dotnet/ja/System.Reflection.Emit.xml",
- "ref/dotnet/ko/System.Reflection.Emit.xml",
- "ref/dotnet/ru/System.Reflection.Emit.xml",
- "ref/dotnet/zh-hans/System.Reflection.Emit.xml",
- "ref/dotnet/zh-hant/System.Reflection.Emit.xml",
- "ref/MonoAndroid10/_._",
- "ref/net45/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Reflection.Emit.ILGeneration/4.0.0": {
- "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==",
- "files": [
- "System.Reflection.Emit.ILGeneration.4.0.0.nupkg",
- "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512",
- "System.Reflection.Emit.ILGeneration.nuspec",
- "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
- "lib/wp80/_._",
- "ref/dotnet/System.Reflection.Emit.ILGeneration.dll",
- "ref/dotnet/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml",
- "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml",
- "ref/net45/_._",
- "ref/wp80/_._"
- ]
- },
- "System.Reflection.Extensions/4.0.0": {
- "serviceable": true,
- "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==",
- "files": [
- "System.Reflection.Extensions.4.0.0.nupkg",
- "System.Reflection.Extensions.4.0.0.nupkg.sha512",
- "System.Reflection.Extensions.nuspec",
- "lib/DNXCore50/System.Reflection.Extensions.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Extensions.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Reflection.Extensions.dll",
- "ref/dotnet/System.Reflection.Extensions.xml",
- "ref/dotnet/de/System.Reflection.Extensions.xml",
- "ref/dotnet/es/System.Reflection.Extensions.xml",
- "ref/dotnet/fr/System.Reflection.Extensions.xml",
- "ref/dotnet/it/System.Reflection.Extensions.xml",
- "ref/dotnet/ja/System.Reflection.Extensions.xml",
- "ref/dotnet/ko/System.Reflection.Extensions.xml",
- "ref/dotnet/ru/System.Reflection.Extensions.xml",
- "ref/dotnet/zh-hans/System.Reflection.Extensions.xml",
- "ref/dotnet/zh-hant/System.Reflection.Extensions.xml",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Extensions.dll",
- "ref/netcore50/System.Reflection.Extensions.xml",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll"
- ]
- },
- "System.Reflection.Primitives/4.0.0": {
- "serviceable": true,
- "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==",
- "files": [
- "System.Reflection.Primitives.4.0.0.nupkg",
- "System.Reflection.Primitives.4.0.0.nupkg.sha512",
- "System.Reflection.Primitives.nuspec",
- "lib/DNXCore50/System.Reflection.Primitives.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Primitives.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Reflection.Primitives.dll",
- "ref/dotnet/System.Reflection.Primitives.xml",
- "ref/dotnet/de/System.Reflection.Primitives.xml",
- "ref/dotnet/es/System.Reflection.Primitives.xml",
- "ref/dotnet/fr/System.Reflection.Primitives.xml",
- "ref/dotnet/it/System.Reflection.Primitives.xml",
- "ref/dotnet/ja/System.Reflection.Primitives.xml",
- "ref/dotnet/ko/System.Reflection.Primitives.xml",
- "ref/dotnet/ru/System.Reflection.Primitives.xml",
- "ref/dotnet/zh-hans/System.Reflection.Primitives.xml",
- "ref/dotnet/zh-hant/System.Reflection.Primitives.xml",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll"
- ]
- },
- "System.Reflection.TypeExtensions/4.0.0": {
- "serviceable": true,
- "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==",
- "files": [
- "System.Reflection.TypeExtensions.4.0.0.nupkg",
- "System.Reflection.TypeExtensions.4.0.0.nupkg.sha512",
- "System.Reflection.TypeExtensions.nuspec",
- "lib/DNXCore50/System.Reflection.TypeExtensions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Reflection.TypeExtensions.dll",
- "lib/netcore50/System.Reflection.TypeExtensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Reflection.TypeExtensions.dll",
- "ref/dotnet/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/de/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/es/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/fr/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/it/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/ja/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/ko/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/ru/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Reflection.TypeExtensions.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
- ]
- },
- "System.Resources.ResourceManager/4.0.0": {
- "serviceable": true,
- "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==",
- "files": [
- "System.Resources.ResourceManager.4.0.0.nupkg",
- "System.Resources.ResourceManager.4.0.0.nupkg.sha512",
- "System.Resources.ResourceManager.nuspec",
- "lib/DNXCore50/System.Resources.ResourceManager.dll",
- "lib/net45/_._",
- "lib/netcore50/System.Resources.ResourceManager.dll",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "ref/dotnet/System.Resources.ResourceManager.dll",
- "ref/dotnet/System.Resources.ResourceManager.xml",
- "ref/dotnet/de/System.Resources.ResourceManager.xml",
- "ref/dotnet/es/System.Resources.ResourceManager.xml",
- "ref/dotnet/fr/System.Resources.ResourceManager.xml",
- "ref/dotnet/it/System.Resources.ResourceManager.xml",
- "ref/dotnet/ja/System.Resources.ResourceManager.xml",
- "ref/dotnet/ko/System.Resources.ResourceManager.xml",
- "ref/dotnet/ru/System.Resources.ResourceManager.xml",
- "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml",
- "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml",
- "ref/net45/_._",
- "ref/netcore50/System.Resources.ResourceManager.dll",
- "ref/netcore50/System.Resources.ResourceManager.xml",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll"
- ]
- },
- "System.Runtime/4.0.20": {
- "serviceable": true,
- "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==",
- "files": [
- "System.Runtime.4.0.20.nupkg",
- "System.Runtime.4.0.20.nupkg.sha512",
- "System.Runtime.nuspec",
- "lib/DNXCore50/System.Runtime.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Runtime.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Runtime.dll",
- "ref/dotnet/System.Runtime.xml",
- "ref/dotnet/de/System.Runtime.xml",
- "ref/dotnet/es/System.Runtime.xml",
- "ref/dotnet/fr/System.Runtime.xml",
- "ref/dotnet/it/System.Runtime.xml",
- "ref/dotnet/ja/System.Runtime.xml",
- "ref/dotnet/ko/System.Runtime.xml",
- "ref/dotnet/ru/System.Runtime.xml",
- "ref/dotnet/zh-hans/System.Runtime.xml",
- "ref/dotnet/zh-hant/System.Runtime.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Runtime.dll"
- ]
- },
- "System.Runtime.Extensions/4.0.10": {
- "serviceable": true,
- "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==",
- "files": [
- "System.Runtime.Extensions.4.0.10.nupkg",
- "System.Runtime.Extensions.4.0.10.nupkg.sha512",
- "System.Runtime.Extensions.nuspec",
- "lib/DNXCore50/System.Runtime.Extensions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Runtime.Extensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Runtime.Extensions.dll",
- "ref/dotnet/System.Runtime.Extensions.xml",
- "ref/dotnet/de/System.Runtime.Extensions.xml",
- "ref/dotnet/es/System.Runtime.Extensions.xml",
- "ref/dotnet/fr/System.Runtime.Extensions.xml",
- "ref/dotnet/it/System.Runtime.Extensions.xml",
- "ref/dotnet/ja/System.Runtime.Extensions.xml",
- "ref/dotnet/ko/System.Runtime.Extensions.xml",
- "ref/dotnet/ru/System.Runtime.Extensions.xml",
- "ref/dotnet/zh-hans/System.Runtime.Extensions.xml",
- "ref/dotnet/zh-hant/System.Runtime.Extensions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll"
- ]
- },
- "System.Runtime.Handles/4.0.0": {
- "serviceable": true,
- "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==",
- "files": [
- "System.Runtime.Handles.4.0.0.nupkg",
- "System.Runtime.Handles.4.0.0.nupkg.sha512",
- "System.Runtime.Handles.nuspec",
- "lib/DNXCore50/System.Runtime.Handles.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Runtime.Handles.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Runtime.Handles.dll",
- "ref/dotnet/System.Runtime.Handles.xml",
- "ref/dotnet/de/System.Runtime.Handles.xml",
- "ref/dotnet/es/System.Runtime.Handles.xml",
- "ref/dotnet/fr/System.Runtime.Handles.xml",
- "ref/dotnet/it/System.Runtime.Handles.xml",
- "ref/dotnet/ja/System.Runtime.Handles.xml",
- "ref/dotnet/ko/System.Runtime.Handles.xml",
- "ref/dotnet/ru/System.Runtime.Handles.xml",
- "ref/dotnet/zh-hans/System.Runtime.Handles.xml",
- "ref/dotnet/zh-hant/System.Runtime.Handles.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll"
- ]
- },
- "System.Runtime.InteropServices/4.0.20": {
- "serviceable": true,
- "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==",
- "files": [
- "System.Runtime.InteropServices.4.0.20.nupkg",
- "System.Runtime.InteropServices.4.0.20.nupkg.sha512",
- "System.Runtime.InteropServices.nuspec",
- "lib/DNXCore50/System.Runtime.InteropServices.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Runtime.InteropServices.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Runtime.InteropServices.dll",
- "ref/dotnet/System.Runtime.InteropServices.xml",
- "ref/dotnet/de/System.Runtime.InteropServices.xml",
- "ref/dotnet/es/System.Runtime.InteropServices.xml",
- "ref/dotnet/fr/System.Runtime.InteropServices.xml",
- "ref/dotnet/it/System.Runtime.InteropServices.xml",
- "ref/dotnet/ja/System.Runtime.InteropServices.xml",
- "ref/dotnet/ko/System.Runtime.InteropServices.xml",
- "ref/dotnet/ru/System.Runtime.InteropServices.xml",
- "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml",
- "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll"
- ]
- },
- "System.Runtime.Loader/4.0.0-beta-23302": {
- "serviceable": true,
- "sha512": "b4NcLjIIX8W3TY3MR8nNp2c+JgZFWcf1Nr5W3FfrM6Takr1BjBsDKv40cqK1yP2UsEnaIjGkAzXOph4fF4I40A==",
- "files": [
- "System.Runtime.Loader.4.0.0-beta-23302.nupkg",
- "System.Runtime.Loader.4.0.0-beta-23302.nupkg.sha512",
- "System.Runtime.Loader.nuspec",
- "lib/DNXCore50/System.Runtime.Loader.dll",
- "ref/dotnet/System.Runtime.Loader.dll"
- ]
- },
- "System.Text.Encoding/4.0.10": {
- "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==",
- "files": [
- "System.Text.Encoding.4.0.10.nupkg",
- "System.Text.Encoding.4.0.10.nupkg.sha512",
- "System.Text.Encoding.nuspec",
- "lib/DNXCore50/System.Text.Encoding.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Text.Encoding.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Text.Encoding.dll",
- "ref/dotnet/System.Text.Encoding.xml",
- "ref/dotnet/de/System.Text.Encoding.xml",
- "ref/dotnet/es/System.Text.Encoding.xml",
- "ref/dotnet/fr/System.Text.Encoding.xml",
- "ref/dotnet/it/System.Text.Encoding.xml",
- "ref/dotnet/ja/System.Text.Encoding.xml",
- "ref/dotnet/ko/System.Text.Encoding.xml",
- "ref/dotnet/ru/System.Text.Encoding.xml",
- "ref/dotnet/zh-hans/System.Text.Encoding.xml",
- "ref/dotnet/zh-hant/System.Text.Encoding.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll"
- ]
- },
- "System.Text.Encoding.Extensions/4.0.10": {
- "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==",
- "files": [
- "System.Text.Encoding.Extensions.4.0.10.nupkg",
- "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512",
- "System.Text.Encoding.Extensions.nuspec",
- "lib/DNXCore50/System.Text.Encoding.Extensions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Text.Encoding.Extensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Text.Encoding.Extensions.dll",
- "ref/dotnet/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/de/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/es/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/fr/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/it/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/ja/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/ko/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/ru/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml",
- "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll"
- ]
- },
- "System.Text.RegularExpressions/4.0.10": {
- "serviceable": true,
- "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==",
- "files": [
- "System.Text.RegularExpressions.4.0.10.nupkg",
- "System.Text.RegularExpressions.4.0.10.nupkg.sha512",
- "System.Text.RegularExpressions.nuspec",
- "lib/dotnet/System.Text.RegularExpressions.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Text.RegularExpressions.dll",
- "ref/dotnet/System.Text.RegularExpressions.xml",
- "ref/dotnet/de/System.Text.RegularExpressions.xml",
- "ref/dotnet/es/System.Text.RegularExpressions.xml",
- "ref/dotnet/fr/System.Text.RegularExpressions.xml",
- "ref/dotnet/it/System.Text.RegularExpressions.xml",
- "ref/dotnet/ja/System.Text.RegularExpressions.xml",
- "ref/dotnet/ko/System.Text.RegularExpressions.xml",
- "ref/dotnet/ru/System.Text.RegularExpressions.xml",
- "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml",
- "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Threading/4.0.10": {
- "serviceable": true,
- "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==",
- "files": [
- "System.Threading.4.0.10.nupkg",
- "System.Threading.4.0.10.nupkg.sha512",
- "System.Threading.nuspec",
- "lib/DNXCore50/System.Threading.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Threading.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Threading.dll",
- "ref/dotnet/System.Threading.xml",
- "ref/dotnet/de/System.Threading.xml",
- "ref/dotnet/es/System.Threading.xml",
- "ref/dotnet/fr/System.Threading.xml",
- "ref/dotnet/it/System.Threading.xml",
- "ref/dotnet/ja/System.Threading.xml",
- "ref/dotnet/ko/System.Threading.xml",
- "ref/dotnet/ru/System.Threading.xml",
- "ref/dotnet/zh-hans/System.Threading.xml",
- "ref/dotnet/zh-hant/System.Threading.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Threading.dll"
- ]
- },
- "System.Threading.Overlapped/4.0.0": {
- "serviceable": true,
- "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==",
- "files": [
- "System.Threading.Overlapped.4.0.0.nupkg",
- "System.Threading.Overlapped.4.0.0.nupkg.sha512",
- "System.Threading.Overlapped.nuspec",
- "lib/DNXCore50/System.Threading.Overlapped.dll",
- "lib/net46/System.Threading.Overlapped.dll",
- "lib/netcore50/System.Threading.Overlapped.dll",
- "ref/dotnet/System.Threading.Overlapped.dll",
- "ref/dotnet/System.Threading.Overlapped.xml",
- "ref/dotnet/de/System.Threading.Overlapped.xml",
- "ref/dotnet/es/System.Threading.Overlapped.xml",
- "ref/dotnet/fr/System.Threading.Overlapped.xml",
- "ref/dotnet/it/System.Threading.Overlapped.xml",
- "ref/dotnet/ja/System.Threading.Overlapped.xml",
- "ref/dotnet/ko/System.Threading.Overlapped.xml",
- "ref/dotnet/ru/System.Threading.Overlapped.xml",
- "ref/dotnet/zh-hans/System.Threading.Overlapped.xml",
- "ref/dotnet/zh-hant/System.Threading.Overlapped.xml",
- "ref/net46/System.Threading.Overlapped.dll"
- ]
- },
- "System.Threading.Tasks/4.0.10": {
- "serviceable": true,
- "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==",
- "files": [
- "System.Threading.Tasks.4.0.10.nupkg",
- "System.Threading.Tasks.4.0.10.nupkg.sha512",
- "System.Threading.Tasks.nuspec",
- "lib/DNXCore50/System.Threading.Tasks.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Threading.Tasks.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Threading.Tasks.dll",
- "ref/dotnet/System.Threading.Tasks.xml",
- "ref/dotnet/de/System.Threading.Tasks.xml",
- "ref/dotnet/es/System.Threading.Tasks.xml",
- "ref/dotnet/fr/System.Threading.Tasks.xml",
- "ref/dotnet/it/System.Threading.Tasks.xml",
- "ref/dotnet/ja/System.Threading.Tasks.xml",
- "ref/dotnet/ko/System.Threading.Tasks.xml",
- "ref/dotnet/ru/System.Threading.Tasks.xml",
- "ref/dotnet/zh-hans/System.Threading.Tasks.xml",
- "ref/dotnet/zh-hant/System.Threading.Tasks.xml",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll"
- ]
- },
- "System.Threading.Thread/4.0.0-beta-23302": {
- "serviceable": true,
- "sha512": "0tn5ET6NNDVjJdpacPXM9lwa3tZeKiIYZHOZPtsbORXop84IN93KenlcqEdPizxPsnOAgauVIgeKftnvwcvlsQ==",
- "files": [
- "System.Threading.Thread.4.0.0-beta-23302.nupkg",
- "System.Threading.Thread.4.0.0-beta-23302.nupkg.sha512",
- "System.Threading.Thread.nuspec",
- "lib/DNXCore50/System.Threading.Thread.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.Thread.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Threading.Thread.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.Thread.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Threading.ThreadPool/4.0.10-beta-23302": {
- "serviceable": true,
- "sha512": "dwwA7ce4yVXenjpJU20JyNn3zrXsWWkbw9UMNK49C09D7tmrYLSxzWSzY7/4034okFcOjQmtP5g36ZRZANZL9A==",
- "files": [
- "System.Threading.ThreadPool.4.0.10-beta-23302.nupkg",
- "System.Threading.ThreadPool.4.0.10-beta-23302.nupkg.sha512",
- "System.Threading.ThreadPool.nuspec",
- "lib/DNXCore50/System.Threading.ThreadPool.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.ThreadPool.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Threading.ThreadPool.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.ThreadPool.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Xml.ReaderWriter/4.0.11-beta-23302": {
- "serviceable": true,
- "sha512": "z9D4/CQ9FytubW6CuTFkv7nb9jPHEvTlOUCXD83oEh5gYfw6RfRJGVPpqY+eJLQOqnBS0wgCPck3zNKEWGCFEA==",
- "files": [
- "System.Xml.ReaderWriter.4.0.11-beta-23302.nupkg",
- "System.Xml.ReaderWriter.4.0.11-beta-23302.nupkg.sha512",
- "System.Xml.ReaderWriter.nuspec",
- "lib/dotnet/System.Xml.ReaderWriter.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Xml.ReaderWriter.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Xml.XDocument/4.0.11-beta-23302": {
- "serviceable": true,
- "sha512": "ugSaPpuT0ImDyfbRtUdsBd6PMWaTYGbeRg1jO6/2tW0cBYIUU5h9496L2Pjm4l6UYa4v2G1+IH1CE/a19D+qSQ==",
- "files": [
- "System.Xml.XDocument.4.0.11-beta-23302.nupkg",
- "System.Xml.XDocument.4.0.11-beta-23302.nupkg.sha512",
- "System.Xml.XDocument.nuspec",
- "lib/dotnet/System.Xml.XDocument.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Xml.XDocument.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Xml.XmlDocument/4.0.1-beta-23302": {
- "serviceable": true,
- "sha512": "cv14snu2E01I+Ar4Kb8bNfPLdh3+OZDnJArvaRWzdpM1XAnY5SwrsbZLEOE6h6wAIFp3aefU8IbcbnXOMRATlQ==",
- "files": [
- "System.Xml.XmlDocument.4.0.1-beta-23302.nupkg",
- "System.Xml.XmlDocument.4.0.1-beta-23302.nupkg.sha512",
- "System.Xml.XmlDocument.nuspec",
- "lib/dotnet/System.Xml.XmlDocument.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Xml.XmlDocument.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Xml.XmlDocument.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Xml.XmlDocument.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._"
- ]
- },
- "System.Xml.XmlSerializer/4.0.11-beta-23302": {
- "serviceable": true,
- "sha512": "aLVJmiBKKGhPYAa3zaojjowvsNuFA5hBmDC6aN8Iv+UAr0WIIPOFy9ASp8oTx6VQ7kEhjxCQXC+pWU21597wXA==",
- "files": [
- "runtime.json",
- "System.Xml.XmlSerializer.4.0.11-beta-23302.nupkg",
- "System.Xml.XmlSerializer.4.0.11-beta-23302.nupkg.sha512",
- "System.Xml.XmlSerializer.nuspec",
- "lib/DNXCore50/System.Xml.XmlSerializer.dll",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/netcore50/System.Xml.XmlSerializer.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "ref/dotnet/System.Xml.XmlSerializer.dll",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll"
- ]
- }
+ "DNXCore,Version=v5.0": {}
},
+ "libraries": {},
"projectFileDependencyGroups": {
- "": [
- "System.Diagnostics.Process >= 4.0.0-beta-23302",
- "System.IO >= 4.0.10-beta-23302",
- "System.IO.FileSystem >= 4.0.0-beta-23302",
- "System.IO.FileSystem.Primitives >= 4.0.0-beta-23302",
- "System.Runtime >= 4.0.20-beta-23302",
- "System.Runtime.Extensions >= 4.0.10-beta-23302",
- "System.Runtime.Handles >= 4.0.0-beta-23302",
- "System.Runtime.Loader >= 4.0.0-beta-23302",
- "System.Threading >= 4.0.10-beta-23302",
- "System.Globalization.Calendars >= 4.0.0-beta-23302",
- "System.Globalization >= 4.0.10-beta-23302",
- "System.Text.Encoding >= 4.0.10-beta-23302",
- "System.Runtime.InteropServices >= 4.0.20-beta-23302",
- "System.Collections >= 4.0.10-beta-23302",
- "System.Console >= 4.0.0-beta-23302",
- "System.Reflection >= 4.0.10-beta-23302",
- "System.Reflection.Primitives >= 4.0.0-beta-23302",
- "System.ComponentModel >= 4.0.1-beta-23302",
- "System.Xml.ReaderWriter >= 4.0.11-beta-23302",
- "System.Collections.NonGeneric >= 4.0.1-beta-23302",
- "System.Collections.Specialized >= 4.0.1-beta-23302",
- "System.Linq >= 4.0.1-beta-23302",
- "System.Linq.Queryable >= 4.0.1-beta-23302",
- "System.Xml.XmlSerializer >= 4.0.11-beta-23302",
- "System.Xml.XmlDocument >= 4.0.1-beta-23302",
- "System.Xml.XDocument >= 4.0.11-beta-23302"
- ],
+ "": [],
"DNXCore,Version=v5.0": []
}
} \ No newline at end of file