Skip to content

Instantly share code, notes, and snippets.

@saurabh500
Last active February 24, 2016 12:13
Show Gist options
  • Save saurabh500/77e74e85e72cc537a28a to your computer and use it in GitHub Desktop.
Save saurabh500/77e74e85e72cc537a28a to your computer and use it in GitHub Desktop.
Found on OS Ubuntu
DNX 1.0.0-rc1-16108 coreclr x64 linux
System.Security.Authentication.AuthenticationException: A call to SSPI failed, see inner exception. ---> Interop+OpenSsl+SslException: Operation failed with error - 12.
--- End of inner exception stack trace ---
at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest, Exception exception)
at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
at System.Data.SqlClient.Tests.Program.Main(String[] args)
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at Microsoft.Dnx.Runtime.Common.EntryPointExecutor.Execute(Assembly assembly, String[] args, IServiceProvider serviceProvider)
at Microsoft.Dnx.ApplicationHost.Program.<>c__DisplayClass3_0.<ExecuteMain>b__0()
at System.Threading.Tasks.Task`1.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
Interop+OpenSsl+SslException: Operation failed with error - 12.
using System.IO;
using System.Net;
using System.Net.Security;
using System.Net.Sockets;
using System.Security.Authentication;
using System.Security.Cryptography.X509Certificates;
using System.Threading.Tasks;
namespace System.Data.SqlClient.Tests
{
class Program
{
private static void Main(string[] args) {
string ipAddress = "sausing-desktop";
TcpClient _tcpClient = new TcpClient();
var connectTask = _tcpClient.ConnectAsync(ipAddress, 1433);
if (!connectTask.Wait(-1))
{
throw new Exception("Cannot connect to host");
}
_tcpClient.NoDelay = true;
var _tcpStream = _tcpClient.GetStream();
var _socket = _tcpClient.Client;
var _sslStream = new SslStream(_tcpStream, true, new RemoteCertificateValidationCallback(ValidateServerCertificate), null);
_sslStream.AuthenticateAsClient(ipAddress);
}
private static bool ValidateServerCertificate(object sender, X509Certificate cert, X509Chain chain, SslPolicyErrors policyErrors)
{
return true;
}
}
}
{
"version": "1.0.0-*",
"description": "SSL auth failure",
"authors": [ "sausing" ],
"tags": [ "" ],
"projectUrl": "",
"licenseUrl": "",
"dependencies": {
},
"frameworks": {
"dnx451": { },
"dnxcore50": {
"dependencies": {
"System.Collections": "4.0.10-beta-23109",
"System.Console": "4.0.0-beta-23109",
"System.Linq": "4.0.0-beta-23109",
"System.Threading": "4.0.10-beta-23109",
"System.Net.Security": "4.0.0-beta-*",
"System.Security.Cryptography.Encoding": "4.0.0-beta-*",
"System.Net.Sockets": "4.1.0-beta-*",
}
}
}
}
{
"locked": false,
"version": 2,
"targets": {
"DNX,Version=v4.5.1": {},
"DNXCore,Version=v5.0": {
"Microsoft.Win32.Primitives/4.0.0": {
"type": "package",
"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": {}
}
},
"System.Collections/4.0.10-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.20-beta-23109"
},
"compile": {
"ref/dotnet/System.Collections.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Collections.dll": {}
}
},
"System.Collections.Concurrent/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.NonGeneric/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.10",
"System.Globalization": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Threading": "4.0.10"
},
"compile": {
"ref/dotnet/System.Collections.NonGeneric.dll": {}
},
"runtime": {
"lib/dotnet/System.Collections.NonGeneric.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.10": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Threading": "4.0.10",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
"ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Console/4.0.0-beta-23109": {
"type": "package",
"dependencies": {
"System.IO": "4.0.10-beta-23109",
"System.IO.FileSystem.Primitives": "4.0.0-beta-23109",
"System.Resources.ResourceManager": "4.0.0-beta-23109",
"System.Runtime": "4.0.20-beta-23109",
"System.Runtime.InteropServices": "4.0.20-beta-23109",
"System.Text.Encoding": "4.0.10-beta-23109",
"System.Text.Encoding.Extensions": "4.0.10-beta-23109",
"System.Threading": "4.0.10-beta-23109",
"System.Threading.Tasks": "4.0.10-beta-23109"
},
"compile": {
"ref/dotnet/System.Console.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Console.dll": {}
}
},
"System.Diagnostics.Debug/4.0.10": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Diagnostics.Debug.dll": {}
}
},
"System.Diagnostics.Tracing/4.0.20": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
}
},
"System.Globalization/4.0.10": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Globalization.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Globalization.dll": {}
}
},
"System.IO/4.0.10-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.20-beta-23109",
"System.Text.Encoding": "4.0.0-beta-23109",
"System.Threading.Tasks": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.IO.dll": {}
},
"runtime": {
"lib/DNXCore50/System.IO.dll": {}
}
},
"System.IO.FileSystem/4.0.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.IO": "4.0.10",
"System.IO.FileSystem.Primitives": "4.0.0",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Text.Encoding": "4.0.10",
"System.Text.Encoding.Extensions": "4.0.10",
"System.Threading": "4.0.10",
"System.Threading.Overlapped": "4.0.0",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
"ref/dotnet/System.IO.FileSystem.dll": {}
},
"runtime": {
"lib/DNXCore50/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.0": {
"type": "package",
"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.0-beta-23109": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10-beta-23109",
"System.Diagnostics.Debug": "4.0.10-beta-23109",
"System.Resources.ResourceManager": "4.0.0-beta-23109",
"System.Runtime": "4.0.20-beta-23109",
"System.Runtime.Extensions": "4.0.10-beta-23109"
},
"compile": {
"ref/dotnet/System.Linq.dll": {}
},
"runtime": {
"lib/dotnet/System.Linq.dll": {}
}
},
"System.Net.Primitives/4.0.10": {
"type": "package",
"dependencies": {
"System.Private.Networking": "4.0.0"
},
"compile": {
"ref/dotnet/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Net.Primitives.dll": {}
}
},
"System.Net.Security/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Net.Primitives": "4.0.10",
"System.Runtime": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-23504",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Net.Security.dll": {}
}
},
"System.Net.Sockets/4.1.0-beta-23504": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Net.Primitives": "4.0.10",
"System.Runtime": "4.0.0",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet5.5/System.Net.Sockets.dll": {}
}
},
"System.Private.Networking/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.0",
"System.Collections": "4.0.10",
"System.Collections.Concurrent": "4.0.0",
"System.Collections.NonGeneric": "4.0.0",
"System.ComponentModel.EventBasedAsync": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.IO.FileSystem": "4.0.0",
"System.IO.FileSystem.Primitives": "4.0.0",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Threading": "4.0.10",
"System.Threading.Overlapped": "4.0.0",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
"ref/dnxcore50/_._": {}
},
"runtime": {
"lib/DNXCore50/System.Private.Networking.dll": {}
}
},
"System.Private.Uri/4.0.0-beta-23109": {
"type": "package",
"compile": {
"ref/dnxcore50/_._": {}
},
"runtime": {
"lib/DNXCore50/System.Private.Uri.dll": {}
}
},
"System.Reflection/4.0.0": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Reflection.Primitives": "4.0.0",
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Reflection.dll": {}
}
},
"System.Reflection.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Reflection.Primitives.dll": {}
}
},
"System.Resources.ResourceManager/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.0",
"System.Reflection": "4.0.0",
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Resources.ResourceManager.dll": {}
}
},
"System.Runtime/4.0.20-beta-23109": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.Runtime.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Runtime.dll": {}
}
},
"System.Runtime.Extensions/4.0.10": {
"type": "package",
"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": {
"type": "package",
"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": {
"type": "package",
"dependencies": {
"System.Reflection": "4.0.0",
"System.Reflection.Primitives": "4.0.0",
"System.Runtime": "4.0.0",
"System.Runtime.Handles": "4.0.0"
},
"compile": {
"ref/dotnet/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Runtime.InteropServices.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Runtime": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0-beta-23504"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.0",
"System.Globalization": "4.0.0",
"System.IO": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Threading": "4.0.0",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0",
"System.Runtime.Handles": "4.0.0",
"System.Security.Cryptography.Algorithms": "4.0.0-beta-23504",
"System.Security.Cryptography.Encoding": "4.0.0-beta-23504"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Text.Encoding/4.0.10": {
"type": "package",
"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": {
"type": "package",
"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.Threading/4.0.10-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0-beta-23109",
"System.Threading.Tasks": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.Threading.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.0": {
"type": "package",
"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-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Threading.Tasks.dll": {}
}
}
},
"DNX,Version=v4.5.1/ubuntu.14.04-x86": {},
"DNX,Version=v4.5.1/ubuntu.14.04-x64": {},
"DNXCore,Version=v5.0/ubuntu.14.04-x86": {
"Microsoft.Win32.Primitives/4.0.0": {
"type": "package",
"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": {}
}
},
"System.Collections/4.0.10-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.20-beta-23109"
},
"compile": {
"ref/dotnet/System.Collections.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Collections.dll": {}
}
},
"System.Collections.Concurrent/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.NonGeneric/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.10",
"System.Globalization": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Threading": "4.0.10"
},
"compile": {
"ref/dotnet/System.Collections.NonGeneric.dll": {}
},
"runtime": {
"lib/dotnet/System.Collections.NonGeneric.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.10": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Threading": "4.0.10",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
"ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Console/4.0.0-beta-23109": {
"type": "package",
"dependencies": {
"System.IO": "4.0.10-beta-23109",
"System.IO.FileSystem.Primitives": "4.0.0-beta-23109",
"System.Resources.ResourceManager": "4.0.0-beta-23109",
"System.Runtime": "4.0.20-beta-23109",
"System.Runtime.InteropServices": "4.0.20-beta-23109",
"System.Text.Encoding": "4.0.10-beta-23109",
"System.Text.Encoding.Extensions": "4.0.10-beta-23109",
"System.Threading": "4.0.10-beta-23109",
"System.Threading.Tasks": "4.0.10-beta-23109"
},
"compile": {
"ref/dotnet/System.Console.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Console.dll": {}
}
},
"System.Diagnostics.Debug/4.0.10": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Diagnostics.Debug.dll": {}
}
},
"System.Diagnostics.Tracing/4.0.20": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
}
},
"System.Globalization/4.0.10": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Globalization.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Globalization.dll": {}
}
},
"System.IO/4.0.10-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.20-beta-23109",
"System.Text.Encoding": "4.0.0-beta-23109",
"System.Threading.Tasks": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.IO.dll": {}
},
"runtime": {
"lib/DNXCore50/System.IO.dll": {}
}
},
"System.IO.FileSystem/4.0.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.IO": "4.0.10",
"System.IO.FileSystem.Primitives": "4.0.0",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Text.Encoding": "4.0.10",
"System.Text.Encoding.Extensions": "4.0.10",
"System.Threading": "4.0.10",
"System.Threading.Overlapped": "4.0.0",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
"ref/dotnet/System.IO.FileSystem.dll": {}
},
"runtime": {
"lib/DNXCore50/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.0": {
"type": "package",
"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.0-beta-23109": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10-beta-23109",
"System.Diagnostics.Debug": "4.0.10-beta-23109",
"System.Resources.ResourceManager": "4.0.0-beta-23109",
"System.Runtime": "4.0.20-beta-23109",
"System.Runtime.Extensions": "4.0.10-beta-23109"
},
"compile": {
"ref/dotnet/System.Linq.dll": {}
},
"runtime": {
"lib/dotnet/System.Linq.dll": {}
}
},
"System.Net.Primitives/4.0.10": {
"type": "package",
"dependencies": {
"System.Private.Networking": "4.0.0"
},
"compile": {
"ref/dotnet/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Net.Primitives.dll": {}
}
},
"System.Net.Security/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Net.Primitives": "4.0.10",
"System.Runtime": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-23504",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Net.Security.dll": {}
}
},
"System.Net.Sockets/4.1.0-beta-23504": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Net.Primitives": "4.0.10",
"System.Runtime": "4.0.0",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet5.5/System.Net.Sockets.dll": {}
}
},
"System.Private.Networking/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.0",
"System.Collections": "4.0.10",
"System.Collections.Concurrent": "4.0.0",
"System.Collections.NonGeneric": "4.0.0",
"System.ComponentModel.EventBasedAsync": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.IO.FileSystem": "4.0.0",
"System.IO.FileSystem.Primitives": "4.0.0",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Threading": "4.0.10",
"System.Threading.Overlapped": "4.0.0",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
"ref/dnxcore50/_._": {}
},
"runtime": {
"lib/DNXCore50/System.Private.Networking.dll": {}
}
},
"System.Private.Uri/4.0.0-beta-23109": {
"type": "package",
"compile": {
"ref/dnxcore50/_._": {}
},
"runtime": {
"lib/DNXCore50/System.Private.Uri.dll": {}
}
},
"System.Reflection/4.0.0": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Reflection.Primitives": "4.0.0",
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Reflection.dll": {}
}
},
"System.Reflection.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Reflection.Primitives.dll": {}
}
},
"System.Resources.ResourceManager/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.0",
"System.Reflection": "4.0.0",
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Resources.ResourceManager.dll": {}
}
},
"System.Runtime/4.0.20-beta-23109": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.Runtime.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Runtime.dll": {}
}
},
"System.Runtime.Extensions/4.0.10": {
"type": "package",
"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": {
"type": "package",
"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": {
"type": "package",
"dependencies": {
"System.Reflection": "4.0.0",
"System.Reflection.Primitives": "4.0.0",
"System.Runtime": "4.0.0",
"System.Runtime.Handles": "4.0.0"
},
"compile": {
"ref/dotnet/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Runtime.InteropServices.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Runtime": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0-beta-23504"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.0",
"System.Globalization": "4.0.0",
"System.IO": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Threading": "4.0.0",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0",
"System.Runtime.Handles": "4.0.0",
"System.Security.Cryptography.Algorithms": "4.0.0-beta-23504",
"System.Security.Cryptography.Encoding": "4.0.0-beta-23504"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Text.Encoding/4.0.10": {
"type": "package",
"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": {
"type": "package",
"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.Threading/4.0.10-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0-beta-23109",
"System.Threading.Tasks": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.Threading.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.0": {
"type": "package",
"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-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Threading.Tasks.dll": {}
}
}
},
"DNXCore,Version=v5.0/ubuntu.14.04-x64": {
"Microsoft.Win32.Primitives/4.0.0": {
"type": "package",
"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": {}
}
},
"System.Collections/4.0.10-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.20-beta-23109"
},
"compile": {
"ref/dotnet/System.Collections.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Collections.dll": {}
}
},
"System.Collections.Concurrent/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet/System.Collections.Concurrent.dll": {}
}
},
"System.Collections.NonGeneric/4.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.10",
"System.Globalization": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Threading": "4.0.10"
},
"compile": {
"ref/dotnet/System.Collections.NonGeneric.dll": {}
},
"runtime": {
"lib/dotnet/System.Collections.NonGeneric.dll": {}
}
},
"System.ComponentModel.EventBasedAsync/4.0.10": {
"type": "package",
"dependencies": {
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Threading": "4.0.10",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
"ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
"lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
}
},
"System.Console/4.0.0-beta-23109": {
"type": "package",
"dependencies": {
"System.IO": "4.0.10-beta-23109",
"System.IO.FileSystem.Primitives": "4.0.0-beta-23109",
"System.Resources.ResourceManager": "4.0.0-beta-23109",
"System.Runtime": "4.0.20-beta-23109",
"System.Runtime.InteropServices": "4.0.20-beta-23109",
"System.Text.Encoding": "4.0.10-beta-23109",
"System.Text.Encoding.Extensions": "4.0.10-beta-23109",
"System.Threading": "4.0.10-beta-23109",
"System.Threading.Tasks": "4.0.10-beta-23109"
},
"compile": {
"ref/dotnet/System.Console.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Console.dll": {}
}
},
"System.Diagnostics.Debug/4.0.10": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Diagnostics.Debug.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Diagnostics.Debug.dll": {}
}
},
"System.Diagnostics.Tracing/4.0.20": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
}
},
"System.Globalization/4.0.10": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Globalization.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Globalization.dll": {}
}
},
"System.Globalization.Calendars/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.0",
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Globalization.Calendars.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Globalization.Calendars.dll": {}
}
},
"System.IO/4.0.10": {
"type": "package",
"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": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.IO": "4.0.10",
"System.IO.FileSystem.Primitives": "4.0.0",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Text.Encoding": "4.0.10",
"System.Text.Encoding.Extensions": "4.0.10",
"System.Threading": "4.0.10",
"System.Threading.Overlapped": "4.0.0",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
"ref/dotnet/System.IO.FileSystem.dll": {}
},
"runtime": {
"lib/DNXCore50/System.IO.FileSystem.dll": {}
}
},
"System.IO.FileSystem.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.20"
},
"compile": {
"ref/dotnet/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
"lib/dotnet/System.IO.FileSystem.Primitives.dll": {}
}
},
"System.IO.FileSystem.Watcher/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.IO.FileSystem.Watcher.dll": {}
}
},
"System.Linq/4.0.0-beta-23109": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10-beta-23109",
"System.Diagnostics.Debug": "4.0.10-beta-23109",
"System.Resources.ResourceManager": "4.0.0-beta-23109",
"System.Runtime": "4.0.20-beta-23109",
"System.Runtime.Extensions": "4.0.10-beta-23109"
},
"compile": {
"ref/dotnet/System.Linq.dll": {}
},
"runtime": {
"lib/dotnet/System.Linq.dll": {}
}
},
"System.Net.NameResolution/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Net.Primitives": "4.0.10",
"System.Runtime": "4.0.0",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Net.NameResolution.dll": {}
}
},
"System.Net.Primitives/4.0.10": {
"type": "package",
"dependencies": {
"System.Private.Networking": "4.0.0"
},
"compile": {
"ref/dotnet/System.Net.Primitives.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Net.Primitives.dll": {}
}
},
"System.Net.Security/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Net.Primitives": "4.0.10",
"System.Runtime": "4.0.0",
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-23504",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Net.Security.dll": {}
}
},
"System.Net.Sockets/4.1.0-beta-23504": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Net.Primitives": "4.0.10",
"System.Runtime": "4.0.0",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet5.5/System.Net.Sockets.dll": {}
}
},
"System.Private.Networking/4.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.0",
"System.Collections": "4.0.10",
"System.Collections.Concurrent": "4.0.0",
"System.Collections.NonGeneric": "4.0.0",
"System.ComponentModel.EventBasedAsync": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.IO.FileSystem": "4.0.0",
"System.IO.FileSystem.Primitives": "4.0.0",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Threading": "4.0.10",
"System.Threading.Overlapped": "4.0.0",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
"ref/dnxcore50/_._": {}
},
"runtime": {
"lib/DNXCore50/System.Private.Networking.dll": {}
}
},
"System.Private.Uri/4.0.0-beta-23109": {
"type": "package",
"compile": {
"ref/dnxcore50/_._": {}
},
"runtime": {
"lib/DNXCore50/System.Private.Uri.dll": {}
}
},
"System.Reflection/4.0.10": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Reflection.Primitives": "4.0.0",
"System.Runtime": "4.0.20"
},
"compile": {
"ref/dotnet/System.Reflection.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Reflection.dll": {}
}
},
"System.Reflection.Primitives/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Reflection.Primitives.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Reflection.Primitives.dll": {}
}
},
"System.Resources.ResourceManager/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.0",
"System.Reflection": "4.0.0",
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Resources.ResourceManager.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Resources.ResourceManager.dll": {}
}
},
"System.Runtime/4.0.20-beta-23109": {
"type": "package",
"dependencies": {
"System.Private.Uri": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.Runtime.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Runtime.dll": {}
}
},
"System.Runtime.Extensions/4.0.10": {
"type": "package",
"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": {
"type": "package",
"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": {
"type": "package",
"dependencies": {
"System.Reflection": "4.0.0",
"System.Reflection.Primitives": "4.0.0",
"System.Runtime": "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.Numerics/4.0.0": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10"
},
"compile": {
"ref/dotnet/System.Runtime.Numerics.dll": {}
},
"runtime": {
"lib/dotnet/System.Runtime.Numerics.dll": {}
}
},
"System.Security.Claims/4.0.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.0",
"System.Diagnostics.Debug": "4.0.0",
"System.Globalization": "4.0.0",
"System.IO": "4.0.0",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.0",
"System.Security.Principal": "4.0.0"
},
"compile": {
"ref/dotnet/System.Security.Claims.dll": {}
},
"runtime": {
"lib/dotnet/System.Security.Claims.dll": {}
}
},
"System.Security.Cryptography.Algorithms/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.IO": "4.0.0",
"System.Runtime": "4.0.0",
"System.Security.Cryptography.Primitives": "4.0.0-beta-23504"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
}
},
"System.Security.Cryptography.Encoding/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.Encoding.dll": {}
}
},
"System.Security.Cryptography.OpenSsl/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.0",
"System.IO": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Runtime.Numerics": "4.0.0",
"System.Security.Cryptography.Algorithms": "4.0.0-beta-23504",
"System.Security.Cryptography.Encoding": "4.0.0-beta-23504",
"System.Security.Cryptography.Primitives": "4.0.0-beta-23504",
"System.Text.Encoding": "4.0.10"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.OpenSsl.dll": {}
},
"runtime": {
"runtimes/unix/lib/dotnet5.4/System.Security.Cryptography.OpenSsl.dll": {}
}
},
"System.Security.Cryptography.Primitives/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Diagnostics.Debug": "4.0.0",
"System.Globalization": "4.0.0",
"System.IO": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Threading": "4.0.0",
"System.Threading.Tasks": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
"lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
}
},
"System.Security.Cryptography.X509Certificates/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0",
"System.Runtime.Handles": "4.0.0",
"System.Security.Cryptography.Algorithms": "4.0.0-beta-23504",
"System.Security.Cryptography.Encoding": "4.0.0-beta-23504"
},
"compile": {
"ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
}
},
"System.Security.Principal/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
"ref/dotnet/System.Security.Principal.dll": {}
},
"runtime": {
"lib/dotnet/System.Security.Principal.dll": {}
}
},
"System.Security.Principal.Windows/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.0",
"System.Diagnostics.Debug": "4.0.10",
"System.Reflection": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.0",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Security.Claims": "4.0.0",
"System.Security.Principal": "4.0.0",
"System.Text.Encoding": "4.0.10",
"System.Threading": "4.0.10"
},
"compile": {
"ref/dotnet5.4/System.Security.Principal.Windows.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Security.Principal.Windows.dll": {}
}
},
"System.Text.Encoding/4.0.10": {
"type": "package",
"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": {
"type": "package",
"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.Threading/4.0.10-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0-beta-23109",
"System.Threading.Tasks": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.Threading.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Threading.dll": {}
}
},
"System.Threading.Overlapped/4.0.0": {
"type": "package",
"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-beta-23109": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0-beta-23109"
},
"compile": {
"ref/dotnet/System.Threading.Tasks.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Threading.Tasks.dll": {}
}
},
"System.Threading.ThreadPool/4.0.10-beta-23504": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0",
"System.Runtime.InteropServices": "4.0.0"
},
"compile": {
"ref/dotnet5.4/System.Threading.ThreadPool.dll": {}
},
"runtime": {
"lib/DNXCore50/System.Threading.ThreadPool.dll": {}
}
},
"runtime.linux.System.Net.Sockets/4.1.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.0",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.0",
"System.IO": "4.0.10",
"System.Net.NameResolution": "4.0.0-beta-23504",
"System.Net.Primitives": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Security.Principal.Windows": "4.0.0-beta-23504",
"System.Threading": "4.0.0",
"System.Threading.Tasks": "4.0.10",
"System.Threading.ThreadPool": "4.0.10-beta-23504"
},
"compile": {
"ref/dotnet/_._": {}
},
"runtime": {
"runtimes/linux/lib/dotnet5.5/System.Net.Sockets.dll": {}
}
},
"runtime.linux.System.Security.Cryptography.Algorithms/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.IO": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Security.Cryptography.Primitives": "4.0.0-beta-23504",
"System.Text.Encoding": "4.0.0",
"System.Text.Encoding.Extensions": "4.0.0"
},
"compile": {
"ref/dotnet/_._": {}
},
"runtime": {
"runtimes/unix/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
}
},
"runtime.unix.System.Net.Security/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"Microsoft.Win32.Primitives": "4.0.0",
"System.Collections": "4.0.10",
"System.Collections.Concurrent": "4.0.0",
"System.Collections.NonGeneric": "4.0.0",
"System.Diagnostics.Tracing": "4.0.20",
"System.Globalization": "4.0.10",
"System.IO": "4.0.10",
"System.Net.Primitives": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Security.Cryptography.Algorithms": "4.0.0-beta-23504",
"System.Security.Cryptography.Encoding": "4.0.0-beta-23504",
"System.Security.Cryptography.OpenSsl": "4.0.0-beta-23504",
"System.Security.Cryptography.Primitives": "4.0.0-beta-23504",
"System.Security.Cryptography.X509Certificates": "4.0.0-beta-23504",
"System.Security.Principal": "4.0.0",
"System.Security.Principal.Windows": "4.0.0-beta-23504",
"System.Text.Encoding": "4.0.10",
"System.Threading": "4.0.0",
"System.Threading.Tasks": "4.0.10",
"System.Threading.ThreadPool": "4.0.10-beta-23504"
},
"compile": {
"ref/dotnet/_._": {}
},
"runtime": {
"runtimes/unix/lib/dnxcore50/System.Net.Security.dll": {}
}
},
"runtime.unix.System.Security.Cryptography.Encoding/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.0",
"System.Collections.Concurrent": "4.0.0",
"System.Diagnostics.Debug": "4.0.10",
"System.Linq": "4.0.0",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Security.Cryptography.Primitives": "4.0.0-beta-23504",
"System.Text.Encoding": "4.0.0"
},
"compile": {
"ref/dotnet/_._": {}
},
"runtime": {
"runtimes/unix/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {}
}
},
"runtime.unix.System.Security.Cryptography.X509Certificates/4.0.0-beta-23504": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.Globalization": "4.0.10",
"System.Globalization.Calendars": "4.0.0",
"System.IO": "4.0.10",
"System.IO.FileSystem": "4.0.0",
"System.IO.FileSystem.Primitives": "4.0.0",
"System.IO.FileSystem.Watcher": "4.0.0-beta-23504",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
"System.Runtime.Extensions": "4.0.10",
"System.Runtime.Handles": "4.0.0",
"System.Runtime.InteropServices": "4.0.20",
"System.Runtime.Numerics": "4.0.0",
"System.Security.Cryptography.Algorithms": "4.0.0-beta-23504",
"System.Security.Cryptography.Encoding": "4.0.0-beta-23504",
"System.Security.Cryptography.OpenSsl": "4.0.0-beta-23504",
"System.Security.Cryptography.Primitives": "4.0.0-beta-23504",
"System.Text.Encoding": "4.0.10",
"System.Threading": "4.0.10"
},
"compile": {
"ref/dotnet/_._": {}
},
"runtime": {
"runtimes/unix/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
}
}
}
},
"libraries": {
"Microsoft.Win32.Primitives/4.0.0": {
"type": "package",
"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/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/dotnet/Microsoft.Win32.Primitives.dll",
"lib/net46/Microsoft.Win32.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/Microsoft.Win32.Primitives.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"System.Collections/4.0.10-beta-23109": {
"type": "package",
"serviceable": true,
"sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==",
"files": [
"System.Collections.4.0.10-beta-23109.nupkg",
"System.Collections.4.0.10-beta-23109.nupkg.sha512",
"System.Collections.nuspec",
"lib/DNXCore50/System.Collections.dll",
"lib/net46/_._",
"lib/netcore50/System.Collections.dll",
"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/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Collections.dll"
]
},
"System.Collections.Concurrent/4.0.0": {
"type": "package",
"sha512": "1f5SWoX7UlFkvUt7A8JoG5lXgZDw4cRAcKG8Eaxa+3Sq6e/UgVWl2YWew1evJv+p+edNNlIIorDfREKcoEDHGw==",
"files": [
"License.rtf",
"System.Collections.Concurrent.4.0.0.nupkg",
"System.Collections.Concurrent.4.0.0.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet/System.Collections.Concurrent.dll",
"ref/dotnet/System.Collections.Concurrent.xml",
"ref/dotnet/de/System.Collections.Concurrent.xml",
"ref/dotnet/es/System.Collections.Concurrent.xml",
"ref/dotnet/fr/System.Collections.Concurrent.xml",
"ref/dotnet/it/System.Collections.Concurrent.xml",
"ref/dotnet/ja/System.Collections.Concurrent.xml",
"ref/dotnet/ko/System.Collections.Concurrent.xml",
"ref/dotnet/ru/System.Collections.Concurrent.xml",
"ref/dotnet/zh-hans/System.Collections.Concurrent.xml",
"ref/dotnet/zh-hant/System.Collections.Concurrent.xml",
"ref/net45/_._",
"ref/netcore50/System.Collections.Concurrent.dll",
"ref/netcore50/System.Collections.Concurrent.xml",
"ref/netcore50/de/System.Collections.Concurrent.xml",
"ref/netcore50/es/System.Collections.Concurrent.xml",
"ref/netcore50/fr/System.Collections.Concurrent.xml",
"ref/netcore50/it/System.Collections.Concurrent.xml",
"ref/netcore50/ja/System.Collections.Concurrent.xml",
"ref/netcore50/ko/System.Collections.Concurrent.xml",
"ref/netcore50/ru/System.Collections.Concurrent.xml",
"ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
"ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"System.Collections.NonGeneric/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==",
"files": [
"System.Collections.NonGeneric.4.0.0.nupkg",
"System.Collections.NonGeneric.4.0.0.nupkg.sha512",
"System.Collections.NonGeneric.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/dotnet/System.Collections.NonGeneric.dll",
"lib/net46/System.Collections.NonGeneric.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet/System.Collections.NonGeneric.dll",
"ref/dotnet/System.Collections.NonGeneric.xml",
"ref/dotnet/de/System.Collections.NonGeneric.xml",
"ref/dotnet/es/System.Collections.NonGeneric.xml",
"ref/dotnet/fr/System.Collections.NonGeneric.xml",
"ref/dotnet/it/System.Collections.NonGeneric.xml",
"ref/dotnet/ja/System.Collections.NonGeneric.xml",
"ref/dotnet/ko/System.Collections.NonGeneric.xml",
"ref/dotnet/ru/System.Collections.NonGeneric.xml",
"ref/dotnet/zh-hans/System.Collections.NonGeneric.xml",
"ref/dotnet/zh-hant/System.Collections.NonGeneric.xml",
"ref/net46/System.Collections.NonGeneric.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"System.ComponentModel.EventBasedAsync/4.0.10": {
"type": "package",
"serviceable": true,
"sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==",
"files": [
"System.ComponentModel.EventBasedAsync.4.0.10.nupkg",
"System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512",
"System.ComponentModel.EventBasedAsync.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/dotnet/System.ComponentModel.EventBasedAsync.dll",
"lib/net46/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet/System.ComponentModel.EventBasedAsync.dll",
"ref/dotnet/System.ComponentModel.EventBasedAsync.xml",
"ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml",
"ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml",
"ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml",
"ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml",
"ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml",
"ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml",
"ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml",
"ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml",
"ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml",
"ref/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"System.Console/4.0.0-beta-23109": {
"type": "package",
"serviceable": true,
"sha512": "ytlRZBI9ZoHiGwmyOg9bGlxvuGQ72YjKsjMWVfMOS57pupJySse2FHIAFMM3RShpY1y36/IUYVDjoPsFKuRn0Q==",
"files": [
"System.Console.4.0.0-beta-23109.nupkg",
"System.Console.4.0.0-beta-23109.nupkg.sha512",
"System.Console.nuspec",
"lib/DNXCore50/System.Console.dll",
"lib/net46/System.Console.dll",
"ref/dotnet/System.Console.dll",
"ref/dotnet/System.Console.xml",
"ref/dotnet/de/System.Console.xml",
"ref/dotnet/es/System.Console.xml",
"ref/dotnet/fr/System.Console.xml",
"ref/dotnet/it/System.Console.xml",
"ref/dotnet/ja/System.Console.xml",
"ref/dotnet/ko/System.Console.xml",
"ref/dotnet/ru/System.Console.xml",
"ref/dotnet/zh-hans/System.Console.xml",
"ref/dotnet/zh-hant/System.Console.xml",
"ref/net46/System.Console.dll"
]
},
"System.Diagnostics.Debug/4.0.10": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll"
]
},
"System.Diagnostics.Tracing/4.0.20": {
"type": "package",
"serviceable": true,
"sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==",
"files": [
"System.Diagnostics.Tracing.4.0.20.nupkg",
"System.Diagnostics.Tracing.4.0.20.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"lib/DNXCore50/System.Diagnostics.Tracing.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/_._",
"lib/netcore50/System.Diagnostics.Tracing.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet/System.Diagnostics.Tracing.dll",
"ref/dotnet/System.Diagnostics.Tracing.xml",
"ref/dotnet/de/System.Diagnostics.Tracing.xml",
"ref/dotnet/es/System.Diagnostics.Tracing.xml",
"ref/dotnet/fr/System.Diagnostics.Tracing.xml",
"ref/dotnet/it/System.Diagnostics.Tracing.xml",
"ref/dotnet/ja/System.Diagnostics.Tracing.xml",
"ref/dotnet/ko/System.Diagnostics.Tracing.xml",
"ref/dotnet/ru/System.Diagnostics.Tracing.xml",
"ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml",
"ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml",
"ref/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll"
]
},
"System.Globalization/4.0.10": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.Globalization.dll"
]
},
"System.Globalization.Calendars/4.0.0": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/System.Globalization.Calendars.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll"
]
},
"System.IO/4.0.10-beta-23109": {
"type": "package",
"serviceable": true,
"sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==",
"files": [
"System.IO.4.0.10-beta-23109.nupkg",
"System.IO.4.0.10-beta-23109.nupkg.sha512",
"System.IO.nuspec",
"lib/DNXCore50/System.IO.dll",
"lib/net46/_._",
"lib/netcore50/System.IO.dll",
"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/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.IO.dll"
]
},
"System.IO/4.0.10": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.IO.dll"
]
},
"System.IO.FileSystem/4.0.0": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/System.IO.FileSystem.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"System.IO.FileSystem.Primitives/4.0.0": {
"type": "package",
"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/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/dotnet/System.IO.FileSystem.Primitives.dll",
"lib/net46/System.IO.FileSystem.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/System.IO.FileSystem.Primitives.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"System.IO.FileSystem.Watcher/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "h1GNVT7jnOj6U3l6jKt5pBdIVGyAEJrUQIG1PP8xGOzkUi+I96xeXij3k/NQNNZPY/gJZ9rMiyuvkpR0xVb/DA==",
"files": [
"System.IO.FileSystem.Watcher.4.0.0-beta-23504.nupkg",
"System.IO.FileSystem.Watcher.4.0.0-beta-23504.nupkg.sha512",
"System.IO.FileSystem.Watcher.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.Watcher.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet5.4/System.IO.FileSystem.Watcher.dll",
"ref/dotnet5.4/System.IO.FileSystem.Watcher.xml",
"ref/dotnet5.4/de/System.IO.FileSystem.Watcher.xml",
"ref/dotnet5.4/es/System.IO.FileSystem.Watcher.xml",
"ref/dotnet5.4/fr/System.IO.FileSystem.Watcher.xml",
"ref/dotnet5.4/it/System.IO.FileSystem.Watcher.xml",
"ref/dotnet5.4/ja/System.IO.FileSystem.Watcher.xml",
"ref/dotnet5.4/ko/System.IO.FileSystem.Watcher.xml",
"ref/dotnet5.4/ru/System.IO.FileSystem.Watcher.xml",
"ref/dotnet5.4/zh-hans/System.IO.FileSystem.Watcher.xml",
"ref/dotnet5.4/zh-hant/System.IO.FileSystem.Watcher.xml",
"ref/net46/System.IO.FileSystem.Watcher.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtime.json"
]
},
"System.Linq/4.0.0-beta-23109": {
"type": "package",
"serviceable": true,
"sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==",
"files": [
"System.Linq.4.0.0-beta-23109.nupkg",
"System.Linq.4.0.0-beta-23109.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/dotnet/System.Linq.xml",
"ref/dotnet/de/System.Linq.xml",
"ref/dotnet/es/System.Linq.xml",
"ref/dotnet/fr/System.Linq.xml",
"ref/dotnet/it/System.Linq.xml",
"ref/dotnet/ja/System.Linq.xml",
"ref/dotnet/ko/System.Linq.xml",
"ref/dotnet/ru/System.Linq.xml",
"ref/dotnet/zh-hans/System.Linq.xml",
"ref/dotnet/zh-hant/System.Linq.xml",
"ref/net45/_._",
"ref/netcore50/System.Linq.dll",
"ref/netcore50/System.Linq.xml",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._"
]
},
"System.Net.NameResolution/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "yM6B183+u9jJINMab9lGFlvsopA8lWYpAApHEG7VIOQZy84rJHLf0PTw1vv966Z/lG/X62pIT+ibGM1ZWytqVA==",
"files": [
"System.Net.NameResolution.4.0.0-beta-23504.nupkg",
"System.Net.NameResolution.4.0.0-beta-23504.nupkg.sha512",
"System.Net.NameResolution.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.NameResolution.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet5.4/System.Net.NameResolution.dll",
"ref/dotnet5.4/System.Net.NameResolution.xml",
"ref/dotnet5.4/de/System.Net.NameResolution.xml",
"ref/dotnet5.4/es/System.Net.NameResolution.xml",
"ref/dotnet5.4/fr/System.Net.NameResolution.xml",
"ref/dotnet5.4/it/System.Net.NameResolution.xml",
"ref/dotnet5.4/ja/System.Net.NameResolution.xml",
"ref/dotnet5.4/ko/System.Net.NameResolution.xml",
"ref/dotnet5.4/ru/System.Net.NameResolution.xml",
"ref/dotnet5.4/zh-hans/System.Net.NameResolution.xml",
"ref/dotnet5.4/zh-hant/System.Net.NameResolution.xml",
"ref/net46/System.Net.NameResolution.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtime.json"
]
},
"System.Net.Primitives/4.0.10": {
"type": "package",
"serviceable": true,
"sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==",
"files": [
"System.Net.Primitives.4.0.10.nupkg",
"System.Net.Primitives.4.0.10.nupkg.sha512",
"System.Net.Primitives.nuspec",
"lib/DNXCore50/System.Net.Primitives.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/_._",
"lib/netcore50/System.Net.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet/System.Net.Primitives.dll",
"ref/dotnet/System.Net.Primitives.xml",
"ref/dotnet/de/System.Net.Primitives.xml",
"ref/dotnet/es/System.Net.Primitives.xml",
"ref/dotnet/fr/System.Net.Primitives.xml",
"ref/dotnet/it/System.Net.Primitives.xml",
"ref/dotnet/ja/System.Net.Primitives.xml",
"ref/dotnet/ko/System.Net.Primitives.xml",
"ref/dotnet/ru/System.Net.Primitives.xml",
"ref/dotnet/zh-hans/System.Net.Primitives.xml",
"ref/dotnet/zh-hant/System.Net.Primitives.xml",
"ref/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"System.Net.Security/4.0.0-beta-23504": {
"type": "package",
"sha512": "RDm5wXjoZ+HP0u/RVhOZXaQC+6pAp6ddIRiTYuHegdI49zgSyzj1E5sb3uOfOrMf+QkvxC6tgYVjO39tboNopw==",
"files": [
"System.Net.Security.4.0.0-beta-23504.nupkg",
"System.Net.Security.4.0.0-beta-23504.nupkg.sha512",
"System.Net.Security.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.Security.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet5.4/System.Net.Security.dll",
"ref/dotnet5.4/System.Net.Security.xml",
"ref/dotnet5.4/de/System.Net.Security.xml",
"ref/dotnet5.4/es/System.Net.Security.xml",
"ref/dotnet5.4/fr/System.Net.Security.xml",
"ref/dotnet5.4/it/System.Net.Security.xml",
"ref/dotnet5.4/ja/System.Net.Security.xml",
"ref/dotnet5.4/ko/System.Net.Security.xml",
"ref/dotnet5.4/ru/System.Net.Security.xml",
"ref/dotnet5.4/zh-hans/System.Net.Security.xml",
"ref/dotnet5.4/zh-hant/System.Net.Security.xml",
"ref/net46/System.Net.Security.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtime.json"
]
},
"System.Net.Sockets/4.1.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "H9U9MguaeT8Jl0Rp1ou+Tf1lPg3730nxQEhGWAb20x8JuyeMYdSFiVZHKmFQBv9iNzkBeG/dXwTkc3cn3gKqIw==",
"files": [
"System.Net.Sockets.4.1.0-beta-23504.nupkg",
"System.Net.Sockets.4.1.0-beta-23504.nupkg.sha512",
"System.Net.Sockets.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.Sockets.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet5.4/System.Net.Sockets.dll",
"ref/dotnet5.4/System.Net.Sockets.xml",
"ref/dotnet5.4/de/System.Net.Sockets.xml",
"ref/dotnet5.4/es/System.Net.Sockets.xml",
"ref/dotnet5.4/fr/System.Net.Sockets.xml",
"ref/dotnet5.4/it/System.Net.Sockets.xml",
"ref/dotnet5.4/ja/System.Net.Sockets.xml",
"ref/dotnet5.4/ko/System.Net.Sockets.xml",
"ref/dotnet5.4/ru/System.Net.Sockets.xml",
"ref/dotnet5.4/zh-hans/System.Net.Sockets.xml",
"ref/dotnet5.4/zh-hant/System.Net.Sockets.xml",
"ref/dotnet5.5/System.Net.Sockets.dll",
"ref/dotnet5.5/System.Net.Sockets.xml",
"ref/dotnet5.5/de/System.Net.Sockets.xml",
"ref/dotnet5.5/es/System.Net.Sockets.xml",
"ref/dotnet5.5/fr/System.Net.Sockets.xml",
"ref/dotnet5.5/it/System.Net.Sockets.xml",
"ref/dotnet5.5/ja/System.Net.Sockets.xml",
"ref/dotnet5.5/ko/System.Net.Sockets.xml",
"ref/dotnet5.5/ru/System.Net.Sockets.xml",
"ref/dotnet5.5/zh-hans/System.Net.Sockets.xml",
"ref/dotnet5.5/zh-hant/System.Net.Sockets.xml",
"ref/net46/System.Net.Sockets.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtime.json"
]
},
"System.Private.Networking/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==",
"files": [
"System.Private.Networking.4.0.0.nupkg",
"System.Private.Networking.4.0.0.nupkg.sha512",
"System.Private.Networking.nuspec",
"lib/DNXCore50/System.Private.Networking.dll",
"lib/netcore50/System.Private.Networking.dll",
"ref/dnxcore50/_._",
"ref/netcore50/_._"
]
},
"System.Private.Uri/4.0.0-beta-23109": {
"type": "package",
"serviceable": true,
"sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==",
"files": [
"System.Private.Uri.4.0.0-beta-23109.nupkg",
"System.Private.Uri.4.0.0-beta-23109.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.0": {
"type": "package",
"sha512": "g96Rn8XuG7y4VfxPj/jnXroRJdQ8L3iN3k3zqsuzk4k3Nq4KMXARYiIO4BLW4GwX06uQpuYwRMcAC/aF117knQ==",
"files": [
"License.rtf",
"System.Reflection.4.0.0.nupkg",
"System.Reflection.4.0.0.nupkg.sha512",
"System.Reflection.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net45/_._",
"ref/netcore50/System.Reflection.dll",
"ref/netcore50/System.Reflection.xml",
"ref/netcore50/de/System.Reflection.xml",
"ref/netcore50/es/System.Reflection.xml",
"ref/netcore50/fr/System.Reflection.xml",
"ref/netcore50/it/System.Reflection.xml",
"ref/netcore50/ja/System.Reflection.xml",
"ref/netcore50/ko/System.Reflection.xml",
"ref/netcore50/ru/System.Reflection.xml",
"ref/netcore50/zh-hans/System.Reflection.xml",
"ref/netcore50/zh-hant/System.Reflection.xml",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"System.Reflection/4.0.10": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.Reflection.dll"
]
},
"System.Reflection.Primitives/4.0.0": {
"type": "package",
"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.Resources.ResourceManager/4.0.0": {
"type": "package",
"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-beta-23109": {
"type": "package",
"serviceable": true,
"sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==",
"files": [
"System.Runtime.4.0.20-beta-23109.nupkg",
"System.Runtime.4.0.20-beta-23109.nupkg.sha512",
"System.Runtime.nuspec",
"lib/DNXCore50/System.Runtime.dll",
"lib/net46/_._",
"lib/netcore50/System.Runtime.dll",
"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/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Runtime.dll"
]
},
"System.Runtime.Extensions/4.0.10": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll"
]
},
"System.Runtime.Handles/4.0.0": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll"
]
},
"System.Runtime.InteropServices/4.0.20": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll"
]
},
"System.Runtime.Numerics/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==",
"files": [
"System.Runtime.Numerics.4.0.0.nupkg",
"System.Runtime.Numerics.4.0.0.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"lib/dotnet/System.Runtime.Numerics.dll",
"lib/net45/_._",
"lib/netcore50/System.Runtime.Numerics.dll",
"lib/win8/_._",
"lib/wpa81/_._",
"ref/dotnet/System.Runtime.Numerics.dll",
"ref/dotnet/System.Runtime.Numerics.xml",
"ref/dotnet/de/System.Runtime.Numerics.xml",
"ref/dotnet/es/System.Runtime.Numerics.xml",
"ref/dotnet/fr/System.Runtime.Numerics.xml",
"ref/dotnet/it/System.Runtime.Numerics.xml",
"ref/dotnet/ja/System.Runtime.Numerics.xml",
"ref/dotnet/ko/System.Runtime.Numerics.xml",
"ref/dotnet/ru/System.Runtime.Numerics.xml",
"ref/dotnet/zh-hans/System.Runtime.Numerics.xml",
"ref/dotnet/zh-hant/System.Runtime.Numerics.xml",
"ref/net45/_._",
"ref/netcore50/System.Runtime.Numerics.dll",
"ref/netcore50/System.Runtime.Numerics.xml",
"ref/win8/_._",
"ref/wpa81/_._"
]
},
"System.Security.Claims/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==",
"files": [
"System.Security.Claims.4.0.0.nupkg",
"System.Security.Claims.4.0.0.nupkg.sha512",
"System.Security.Claims.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/dotnet/System.Security.Claims.dll",
"lib/net46/System.Security.Claims.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet/System.Security.Claims.dll",
"ref/dotnet/System.Security.Claims.xml",
"ref/dotnet/de/System.Security.Claims.xml",
"ref/dotnet/es/System.Security.Claims.xml",
"ref/dotnet/fr/System.Security.Claims.xml",
"ref/dotnet/it/System.Security.Claims.xml",
"ref/dotnet/ja/System.Security.Claims.xml",
"ref/dotnet/ko/System.Security.Claims.xml",
"ref/dotnet/ru/System.Security.Claims.xml",
"ref/dotnet/zh-hans/System.Security.Claims.xml",
"ref/dotnet/zh-hant/System.Security.Claims.xml",
"ref/net46/System.Security.Claims.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"System.Security.Cryptography.Algorithms/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "rFGq4yYSz4GSvwGKjeHg7h9sdGbtedTPlh5F4bKB9W2UqLMmN0MmY97T7EfIogMXehY5XAr9ngu9HrbqI+Qorw==",
"files": [
"System.Security.Cryptography.Algorithms.4.0.0-beta-23504.nupkg",
"System.Security.Cryptography.Algorithms.4.0.0-beta-23504.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Algorithms.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet5.4/System.Security.Cryptography.Algorithms.dll",
"ref/net46/System.Security.Cryptography.Algorithms.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtime.json"
]
},
"System.Security.Cryptography.Encoding/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "iObsTOwqwRsvolgEy0KKOOSoqZZESRq7kc9fSYZAXx2st0nAFmq1eGLR0OdQCm/hBtXYu8qmUyEycASsCYch/g==",
"files": [
"System.Security.Cryptography.Encoding.4.0.0-beta-23504.nupkg",
"System.Security.Cryptography.Encoding.4.0.0-beta-23504.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Encoding.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet5.4/System.Security.Cryptography.Encoding.dll",
"ref/dotnet5.4/System.Security.Cryptography.Encoding.xml",
"ref/dotnet5.4/de/System.Security.Cryptography.Encoding.xml",
"ref/dotnet5.4/es/System.Security.Cryptography.Encoding.xml",
"ref/dotnet5.4/fr/System.Security.Cryptography.Encoding.xml",
"ref/dotnet5.4/it/System.Security.Cryptography.Encoding.xml",
"ref/dotnet5.4/ja/System.Security.Cryptography.Encoding.xml",
"ref/dotnet5.4/ko/System.Security.Cryptography.Encoding.xml",
"ref/dotnet5.4/ru/System.Security.Cryptography.Encoding.xml",
"ref/dotnet5.4/zh-hans/System.Security.Cryptography.Encoding.xml",
"ref/dotnet5.4/zh-hant/System.Security.Cryptography.Encoding.xml",
"ref/net46/System.Security.Cryptography.Encoding.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtime.json"
]
},
"System.Security.Cryptography.OpenSsl/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "953ZdUgQS5DSzBJcUsa8l5zmAz8Y1C5OJ1kWaNIQutvIwEYf6Dp/E2DqTtNuQ40FZ765flm93oRNKHsfx6DY6A==",
"files": [
"System.Security.Cryptography.OpenSsl.4.0.0-beta-23504.nupkg",
"System.Security.Cryptography.OpenSsl.4.0.0-beta-23504.nupkg.sha512",
"System.Security.Cryptography.OpenSsl.nuspec",
"ref/dotnet5.4/System.Security.Cryptography.OpenSsl.dll",
"runtimes/unix/lib/dotnet5.4/System.Security.Cryptography.OpenSsl.dll"
]
},
"System.Security.Cryptography.Primitives/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "IeEsY14NY8P4Diq3+xByaOBqQh7T5x55p38K78q3abi7MMhebZ2ulPs9/h+q+roTiarc8ZhO6v6ewllb883nyA==",
"files": [
"System.Security.Cryptography.Primitives.4.0.0-beta-23504.nupkg",
"System.Security.Cryptography.Primitives.4.0.0-beta-23504.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/dotnet5.4/System.Security.Cryptography.Primitives.dll",
"lib/net46/System.Security.Cryptography.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet5.4/System.Security.Cryptography.Primitives.dll",
"ref/net46/System.Security.Cryptography.Primitives.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"System.Security.Cryptography.X509Certificates/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "ukuGfOlg7hwEMSoxuUtojcoMNou6k7BR7yzPVAWD0DyActvQSbuh/Mhu4O6JRx1GsV3poZaD7SpjfLqQz651jg==",
"files": [
"System.Security.Cryptography.X509Certificates.4.0.0-beta-23504.nupkg",
"System.Security.Cryptography.X509Certificates.4.0.0-beta-23504.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.X509Certificates.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll",
"ref/dotnet5.4/System.Security.Cryptography.X509Certificates.xml",
"ref/dotnet5.4/de/System.Security.Cryptography.X509Certificates.xml",
"ref/dotnet5.4/es/System.Security.Cryptography.X509Certificates.xml",
"ref/dotnet5.4/fr/System.Security.Cryptography.X509Certificates.xml",
"ref/dotnet5.4/it/System.Security.Cryptography.X509Certificates.xml",
"ref/dotnet5.4/ja/System.Security.Cryptography.X509Certificates.xml",
"ref/dotnet5.4/ko/System.Security.Cryptography.X509Certificates.xml",
"ref/dotnet5.4/ru/System.Security.Cryptography.X509Certificates.xml",
"ref/dotnet5.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
"ref/dotnet5.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
"ref/net46/System.Security.Cryptography.X509Certificates.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtime.json"
]
},
"System.Security.Principal/4.0.0": {
"type": "package",
"serviceable": true,
"sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==",
"files": [
"System.Security.Principal.4.0.0.nupkg",
"System.Security.Principal.4.0.0.nupkg.sha512",
"System.Security.Principal.nuspec",
"lib/dotnet/System.Security.Principal.dll",
"lib/net45/_._",
"lib/netcore50/System.Security.Principal.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
"ref/dotnet/System.Security.Principal.dll",
"ref/dotnet/System.Security.Principal.xml",
"ref/dotnet/de/System.Security.Principal.xml",
"ref/dotnet/es/System.Security.Principal.xml",
"ref/dotnet/fr/System.Security.Principal.xml",
"ref/dotnet/it/System.Security.Principal.xml",
"ref/dotnet/ja/System.Security.Principal.xml",
"ref/dotnet/ko/System.Security.Principal.xml",
"ref/dotnet/ru/System.Security.Principal.xml",
"ref/dotnet/zh-hans/System.Security.Principal.xml",
"ref/dotnet/zh-hant/System.Security.Principal.xml",
"ref/net45/_._",
"ref/netcore50/System.Security.Principal.dll",
"ref/netcore50/System.Security.Principal.xml",
"ref/win8/_._",
"ref/wp80/_._",
"ref/wpa81/_._"
]
},
"System.Security.Principal.Windows/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "hU0ceSlYTWX211SUgHWrIpK275QXFLYlV6ouoQRCmc7BhjeCh05jnd/tyGfM0U1OGH52pzRGQxnLxtDax9TwOA==",
"files": [
"System.Security.Principal.Windows.4.0.0-beta-23504.nupkg",
"System.Security.Principal.Windows.4.0.0-beta-23504.nupkg.sha512",
"System.Security.Principal.Windows.nuspec",
"lib/DNXCore50/System.Security.Principal.Windows.dll",
"lib/net46/System.Security.Principal.Windows.dll",
"ref/dotnet5.4/System.Security.Principal.Windows.dll",
"ref/dotnet5.4/System.Security.Principal.Windows.xml",
"ref/dotnet5.4/de/System.Security.Principal.Windows.xml",
"ref/dotnet5.4/es/System.Security.Principal.Windows.xml",
"ref/dotnet5.4/fr/System.Security.Principal.Windows.xml",
"ref/dotnet5.4/it/System.Security.Principal.Windows.xml",
"ref/dotnet5.4/ja/System.Security.Principal.Windows.xml",
"ref/dotnet5.4/ko/System.Security.Principal.Windows.xml",
"ref/dotnet5.4/ru/System.Security.Principal.Windows.xml",
"ref/dotnet5.4/zh-hans/System.Security.Principal.Windows.xml",
"ref/dotnet5.4/zh-hant/System.Security.Principal.Windows.xml",
"ref/net46/System.Security.Principal.Windows.dll"
]
},
"System.Text.Encoding/4.0.10": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll"
]
},
"System.Text.Encoding.Extensions/4.0.10": {
"type": "package",
"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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"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/net46/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll"
]
},
"System.Threading/4.0.10-beta-23109": {
"type": "package",
"serviceable": true,
"sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==",
"files": [
"System.Threading.4.0.10-beta-23109.nupkg",
"System.Threading.4.0.10-beta-23109.nupkg.sha512",
"System.Threading.nuspec",
"lib/DNXCore50/System.Threading.dll",
"lib/net46/_._",
"lib/netcore50/System.Threading.dll",
"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/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Threading.dll"
]
},
"System.Threading.Overlapped/4.0.0": {
"type": "package",
"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-beta-23109": {
"type": "package",
"serviceable": true,
"sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==",
"files": [
"System.Threading.Tasks.4.0.10-beta-23109.nupkg",
"System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"lib/DNXCore50/System.Threading.Tasks.dll",
"lib/net46/_._",
"lib/netcore50/System.Threading.Tasks.dll",
"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/net46/_._",
"runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll"
]
},
"System.Threading.ThreadPool/4.0.10-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "rkiVr/hl/O/wTfjIC63ONJzenCCCETE6bf3Lufk0qLBrZeY6A94OrylDYusocl/bhtuR2JidWcKU2JR7cbObgw==",
"files": [
"System.Threading.ThreadPool.4.0.10-beta-23504.nupkg",
"System.Threading.ThreadPool.4.0.10-beta-23504.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/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/dotnet5.4/System.Threading.ThreadPool.dll",
"ref/dotnet5.4/System.Threading.ThreadPool.xml",
"ref/dotnet5.4/de/System.Threading.ThreadPool.xml",
"ref/dotnet5.4/es/System.Threading.ThreadPool.xml",
"ref/dotnet5.4/fr/System.Threading.ThreadPool.xml",
"ref/dotnet5.4/it/System.Threading.ThreadPool.xml",
"ref/dotnet5.4/ja/System.Threading.ThreadPool.xml",
"ref/dotnet5.4/ko/System.Threading.ThreadPool.xml",
"ref/dotnet5.4/ru/System.Threading.ThreadPool.xml",
"ref/dotnet5.4/zh-hans/System.Threading.ThreadPool.xml",
"ref/dotnet5.4/zh-hant/System.Threading.ThreadPool.xml",
"ref/net46/System.Threading.ThreadPool.dll",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._"
]
},
"runtime.linux.System.Net.Sockets/4.1.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "pFA3k2hYdJAVxXb9IS3wsjKhKWYmqql6/q36gq+/6GCqzYHENEDkDB5xUGovI3VTJnJQyZukZBezO8jsDF5oyw==",
"files": [
"ref/dotnet/_._",
"runtime.linux.System.Net.Sockets.4.1.0-beta-23504.nupkg",
"runtime.linux.System.Net.Sockets.4.1.0-beta-23504.nupkg.sha512",
"runtime.linux.System.Net.Sockets.nuspec",
"runtimes/linux/lib/dotnet5.5/System.Net.Sockets.dll"
]
},
"runtime.linux.System.Security.Cryptography.Algorithms/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "C/Fjwn8+jmp5oyBsszTqDelipgCvaPvzLM/E6GZIPdomKHgXoPNA+MVBXuKSSPSoiikBexdIHNFBr0L37cDyEA==",
"files": [
"ref/dotnet/_._",
"runtime.linux.System.Security.Cryptography.Algorithms.4.0.0-beta-23504.nupkg",
"runtime.linux.System.Security.Cryptography.Algorithms.4.0.0-beta-23504.nupkg.sha512",
"runtime.linux.System.Security.Cryptography.Algorithms.nuspec",
"runtimes/unix/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll"
]
},
"runtime.unix.System.Net.Security/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "N1Drv1oBAx5xF39T3e8oHNXWGk2UrJ7q21jcwouJub9XFFYaCk0rAn9h7732nAiU5wLGcTh8ojhwAC4yH9hXUg==",
"files": [
"ref/dotnet/_._",
"runtime.unix.System.Net.Security.4.0.0-beta-23504.nupkg",
"runtime.unix.System.Net.Security.4.0.0-beta-23504.nupkg.sha512",
"runtime.unix.System.Net.Security.nuspec",
"runtimes/unix/lib/dnxcore50/System.Net.Security.dll"
]
},
"runtime.unix.System.Security.Cryptography.Encoding/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "g+aj7GEz6yCp9rB2qzcW0A6to9I3QFWbcyVdfer3ac8n1atDm1JkbBkFB/+W9qQ0ThWRlp6mMFTGYLTF5Pqygw==",
"files": [
"ref/dotnet/_._",
"runtime.unix.System.Security.Cryptography.Encoding.4.0.0-beta-23504.nupkg",
"runtime.unix.System.Security.Cryptography.Encoding.4.0.0-beta-23504.nupkg.sha512",
"runtime.unix.System.Security.Cryptography.Encoding.nuspec",
"runtimes/unix/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll"
]
},
"runtime.unix.System.Security.Cryptography.X509Certificates/4.0.0-beta-23504": {
"type": "package",
"serviceable": true,
"sha512": "WOYX7vcx8MpJPhrs6xowQFJ487wf4t2KrIBSq/9FNmdu5PwlxUZd6nsolg6WZ9HxpWITvZmX7ScP7/vuJH10eg==",
"files": [
"ref/dotnet/_._",
"runtime.unix.System.Security.Cryptography.X509Certificates.4.0.0-beta-23504.nupkg",
"runtime.unix.System.Security.Cryptography.X509Certificates.4.0.0-beta-23504.nupkg.sha512",
"runtime.unix.System.Security.Cryptography.X509Certificates.nuspec",
"runtimes/unix/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll"
]
}
},
"projectFileDependencyGroups": {
"": [],
"DNX,Version=v4.5.1": [],
"DNXCore,Version=v5.0": [
"System.Collections >= 4.0.10-beta-23109",
"System.Console >= 4.0.0-beta-23109",
"System.Linq >= 4.0.0-beta-23109",
"System.Threading >= 4.0.10-beta-23109",
"System.Net.Security >= 4.0.0-beta-*",
"System.Security.Cryptography.Encoding >= 4.0.0-beta-*",
"System.Net.Sockets >= 4.1.0-beta-*"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment