diff --git a/NLog.Web.Tests/DefaultHttpContextAccessorTests.cs b/NLog.Web.ASPNET5.Tests/DefaultHttpContextAccessorTests.cs similarity index 100% rename from NLog.Web.Tests/DefaultHttpContextAccessorTests.cs rename to NLog.Web.ASPNET5.Tests/DefaultHttpContextAccessorTests.cs diff --git a/NLog.Web.Tests/FakeHttpContextAccessor.cs b/NLog.Web.ASPNET5.Tests/FakeHttpContextAccessor.cs similarity index 100% rename from NLog.Web.Tests/FakeHttpContextAccessor.cs rename to NLog.Web.ASPNET5.Tests/FakeHttpContextAccessor.cs diff --git a/NLog.Web.Tests/LayoutRenderers/AspNetApplicationValueLayoutRendererTests.cs b/NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetApplicationValueLayoutRendererTests.cs similarity index 100% rename from NLog.Web.Tests/LayoutRenderers/AspNetApplicationValueLayoutRendererTests.cs rename to NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetApplicationValueLayoutRendererTests.cs diff --git a/NLog.Web.Tests/LayoutRenderers/AspNetItemValueLayoutRendererTests.cs b/NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetItemValueLayoutRendererTests.cs similarity index 100% rename from NLog.Web.Tests/LayoutRenderers/AspNetItemValueLayoutRendererTests.cs rename to NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetItemValueLayoutRendererTests.cs diff --git a/NLog.Web.Tests/LayoutRenderers/AspNetRequestValueLayoutRendererTests.cs b/NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetRequestValueLayoutRendererTests.cs similarity index 100% rename from NLog.Web.Tests/LayoutRenderers/AspNetRequestValueLayoutRendererTests.cs rename to NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetRequestValueLayoutRendererTests.cs diff --git a/NLog.Web.Tests/LayoutRenderers/AspNetSessionIDLayoutRendererTests.cs b/NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetSessionIDLayoutRendererTests.cs similarity index 100% rename from NLog.Web.Tests/LayoutRenderers/AspNetSessionIDLayoutRendererTests.cs rename to NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetSessionIDLayoutRendererTests.cs diff --git a/NLog.Web.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs b/NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs similarity index 96% rename from NLog.Web.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs rename to NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs index 6438c63f..84044155 100644 --- a/NLog.Web.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs +++ b/NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs @@ -2,6 +2,7 @@ using System.Reflection; using System.Web; using System.Web.SessionState; +using NLog.Config; using NLog.LayoutRenderers; using NLog.Layouts; using NLog.Web.LayoutRenderers; @@ -11,6 +12,9 @@ namespace NLog.Web.Tests.LayoutRenderers { public class AspNetSessionValueLayoutRendererTests : TestInvolvingAspNetHttpContext { + + + public AspNetSessionValueLayoutRendererTests() { SetUp(); @@ -18,6 +22,13 @@ public AspNetSessionValueLayoutRendererTests() public void SetUp() { + //auto load won't work yet (in DNX), so use + LogManager.Configuration = CreateConfigurationFromString(@" + + + + +"); SetupFakeSession(); } diff --git a/NLog.Web.Tests/LayoutRenderers/AspNetUserAuthTypeLayoutRendererTests.cs b/NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetUserAuthTypeLayoutRendererTests.cs similarity index 100% rename from NLog.Web.Tests/LayoutRenderers/AspNetUserAuthTypeLayoutRendererTests.cs rename to NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetUserAuthTypeLayoutRendererTests.cs diff --git a/NLog.Web.Tests/LayoutRenderers/AspNetUserIdentityLayoutRendererTests.cs b/NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetUserIdentityLayoutRendererTests.cs similarity index 100% rename from NLog.Web.Tests/LayoutRenderers/AspNetUserIdentityLayoutRendererTests.cs rename to NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetUserIdentityLayoutRendererTests.cs diff --git a/NLog.Web.Tests/LayoutRenderers/TestInvolvingAspNetHttpContext.cs b/NLog.Web.ASPNET5.Tests/LayoutRenderers/TestInvolvingAspNetHttpContext.cs similarity index 81% rename from NLog.Web.Tests/LayoutRenderers/TestInvolvingAspNetHttpContext.cs rename to NLog.Web.ASPNET5.Tests/LayoutRenderers/TestInvolvingAspNetHttpContext.cs index 7414a8f1..459652b9 100644 --- a/NLog.Web.Tests/LayoutRenderers/TestInvolvingAspNetHttpContext.cs +++ b/NLog.Web.ASPNET5.Tests/LayoutRenderers/TestInvolvingAspNetHttpContext.cs @@ -3,6 +3,8 @@ using System.IO; using System.Reflection; using System.Web; +using System.Xml; +using NLog.Config; namespace NLog.Web.Tests.LayoutRenderers { @@ -28,6 +30,16 @@ protected virtual void CleanUp() { } + protected XmlLoggingConfiguration CreateConfigurationFromString(string configXml) + { + + XmlDocument doc = new XmlDocument(); + doc.LoadXml(configXml); + using (var stringReader = new StringReader(doc.DocumentElement.OuterXml)) + using (XmlReader reader = XmlReader.Create(stringReader)) + return new XmlLoggingConfiguration(reader, null); + } + protected HttpContext SetupFakeHttpContext() { var httpRequest = SetUpHttpRequest(); @@ -57,7 +69,7 @@ protected void AddHeader(HttpRequest request, string headerName, string headerVa item.Add(headerValue); t.InvokeMember("BaseAdd", BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance, null, headers, - new object[] {headerName, item}); + new object[] { headerName, item }); t.InvokeMember("MakeReadOnly", BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance, null, headers, null); diff --git a/NLog.Web/DefaultHttpContextAccessor.cs b/NLog.Web.ASPNET5/DefaultHttpContextAccessor.cs similarity index 74% rename from NLog.Web/DefaultHttpContextAccessor.cs rename to NLog.Web.ASPNET5/DefaultHttpContextAccessor.cs index ed231216..20a6f5ed 100644 --- a/NLog.Web/DefaultHttpContextAccessor.cs +++ b/NLog.Web.ASPNET5/DefaultHttpContextAccessor.cs @@ -1,7 +1,16 @@ +#if !DNX using System.Web; +#else +using Microsoft.AspNet.Hosting; +using Microsoft.AspNet.Http; + +#endif + + namespace NLog.Web { +#if !DNX /// /// Provides the HttpContext associated with the current request. /// @@ -16,8 +25,10 @@ public HttpContextBase HttpContext { if (System.Web.HttpContext.Current == null) return null; - return new HttpContextWrapper(System.Web.HttpContext.Current); + return new HttpContextWrapper(System.Web.HttpContext.Current); } } + } +#endif } \ No newline at end of file diff --git a/NLog.Web/IHttpContextAccessor.cs b/NLog.Web.ASPNET5/IHttpContextAccessor.cs similarity index 90% rename from NLog.Web/IHttpContextAccessor.cs rename to NLog.Web.ASPNET5/IHttpContextAccessor.cs index 2611e042..e5eb1ac8 100644 --- a/NLog.Web/IHttpContextAccessor.cs +++ b/NLog.Web.ASPNET5/IHttpContextAccessor.cs @@ -1,8 +1,11 @@ -using System; +#if !DNX + +using System; using System.Web; namespace NLog.Web { + /// /// Provides access to the HttpContext /// @@ -14,3 +17,4 @@ public interface IHttpContextAccessor HttpContextBase HttpContext { get; } } } +#endif \ No newline at end of file diff --git a/NLog.Web/Internal/PropertyReader.cs b/NLog.Web.ASPNET5/Internal/PropertyReader.cs similarity index 75% rename from NLog.Web/Internal/PropertyReader.cs rename to NLog.Web.ASPNET5/Internal/PropertyReader.cs index 676b6c3d..e95a9ba0 100644 --- a/NLog.Web/Internal/PropertyReader.cs +++ b/NLog.Web.ASPNET5/Internal/PropertyReader.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Reflection; namespace NLog.Web.Internal { @@ -24,7 +25,7 @@ public static object GetValue(string key, Func getVal, bool eval foreach (var property in path.Skip(1)) { - var propertyInfo = value.GetType().GetProperty(property); + var propertyInfo = GetPropertyInfo(value, property); value = propertyInfo.GetValue(value, null); } } @@ -34,5 +35,14 @@ public static object GetValue(string key, Func getVal, bool eval } return value; } + + private static PropertyInfo GetPropertyInfo(object value, string propertyName) + { +#if !DNX + return value.GetType().GetProperty(propertyName); +#else + return value.GetType().GetTypeInfo().GetDeclaredProperty(propertyName); +#endif + } } } \ No newline at end of file diff --git a/NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs similarity index 93% rename from NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs index 5b121290..07f553c3 100644 --- a/NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs +++ b/NLog.Web.ASPNET5/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs @@ -1,10 +1,17 @@ using System; using System.Globalization; using System.Text; +#if !DNX using System.Web; +#else +using Microsoft.AspNet.Hosting; +using Microsoft.AspNet.Http; +#endif using NLog.Config; using NLog.LayoutRenderers; + +#if !DNX namespace NLog.Web.LayoutRenderers { /// @@ -36,6 +43,7 @@ namespace NLog.Web.LayoutRenderers [LayoutRenderer("aspnet-application")] public class AspNetApplicationValueLayoutRenderer : AspNetLayoutRendererBase { + /// /// Gets or sets the variable name. /// @@ -56,7 +64,7 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) return; } - HttpContextBase context = HttpContextAccessor.HttpContext; + var context = HttpContextAccessor.HttpContext; if (context.Application == null) { @@ -65,5 +73,8 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) builder.Append(Convert.ToString(context.Application[this.Variable], CultureInfo.CurrentUICulture)); } + + } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetItemValueLayoutRenderer.cs similarity index 86% rename from NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetItemValueLayoutRenderer.cs index a1c41686..160ff59e 100644 --- a/NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs +++ b/NLog.Web.ASPNET5/LayoutRenderers/AspNetItemValueLayoutRenderer.cs @@ -2,7 +2,12 @@ using System.Globalization; using System.Linq; using System.Text; +#if !DNX using System.Web; +#else +using Microsoft.AspNet.Hosting; +using Microsoft.AspNet.Http; +#endif using NLog.Config; using NLog.LayoutRenderers; using NLog.Web.Internal; @@ -38,6 +43,16 @@ namespace NLog.Web.LayoutRenderers [LayoutRenderer("aspnet-item")] public class AspNetItemValueLayoutRenderer : AspNetLayoutRendererBase { + +#if DNX + /// + /// Initializes the with the . + /// + public AspNetItemValueLayoutRenderer(IHttpContextAccessor accessor) : base(accessor) + { + } +#endif + /// /// Gets or sets the item variable name. /// @@ -63,7 +78,7 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) return; } - HttpContextBase context = HttpContextAccessor.HttpContext; + var context = HttpContextAccessor.HttpContext; var value = PropertyReader.GetValue(Variable, k => context.Items[k], EvaluateAsNestedProperties); diff --git a/NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetLayoutRendererBase.cs similarity index 79% rename from NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetLayoutRendererBase.cs index 81710909..387dfb88 100644 --- a/NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs +++ b/NLog.Web.ASPNET5/LayoutRenderers/AspNetLayoutRendererBase.cs @@ -1,5 +1,11 @@ using System.Text; using NLog.LayoutRenderers; +#if !DNX +using System.Web; +#else +using Microsoft.AspNet.Hosting; +using Microsoft.AspNet.Http; +#endif namespace NLog.Web.LayoutRenderers { @@ -8,14 +14,28 @@ namespace NLog.Web.LayoutRenderers /// public abstract class AspNetLayoutRendererBase : LayoutRenderer { + +#if DNX + /// + /// Initializes the with the . + /// + protected AspNetLayoutRendererBase(IHttpContextAccessor accessor) + { + HttpContextAccessor = accessor; + + } +#else + /// - /// Initializes the with the . + /// Initializes the . /// protected AspNetLayoutRendererBase() { + HttpContextAccessor = new DefaultHttpContextAccessor(); - } + } +#endif /// /// Provides access to the current request HttpContext. /// diff --git a/NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs similarity index 80% rename from NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs index 27fd6c74..b964f042 100644 --- a/NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs +++ b/NLog.Web.ASPNET5/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs @@ -1,5 +1,11 @@ +using System; using System.Text; +#if !DNX using System.Web; +#else +using Microsoft.AspNet.Hosting; +using Microsoft.AspNet.Http; +#endif using NLog.Config; using NLog.LayoutRenderers; @@ -26,6 +32,14 @@ namespace NLog.Web.LayoutRenderers [LayoutRenderer("aspnet-request")] public class AspNetRequestValueLayoutRenderer : AspNetLayoutRendererBase { +#if DNX + /// + /// Initializes the with the . + /// + public AspNetRequestValueLayoutRenderer(IHttpContextAccessor accessor) : base(accessor) + { + } +#endif /// /// Gets or sets the item name. The QueryString, Form, Cookies, or ServerVariables collection variables having the specified name are rendered. /// @@ -70,7 +84,7 @@ public class AspNetRequestValueLayoutRenderer : AspNetLayoutRendererBase /// Logging event. protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) { - HttpContextBase context = HttpContextAccessor.HttpContext; + var context = HttpContextAccessor.HttpContext; var httpRequest = context.Request; if (httpRequest == null) { @@ -79,7 +93,11 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) if (this.QueryString != null) { +#if !DNX builder.Append(httpRequest.QueryString[this.QueryString]); +#else + builder.Append(httpRequest.Query[this.QueryString]); +#endif } else if (this.Form != null) { @@ -87,16 +105,27 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) } else if (this.Cookie != null) { - HttpCookie cookie = httpRequest.Cookies[this.Cookie]; +#if !DNX + var cookie = httpRequest.Cookies[this.Cookie]; if (cookie != null) { builder.Append(cookie.Value); } +#else + var cookie = httpRequest.Cookies[this.Cookie]; + builder.Append(cookie); +#endif + } else if (this.ServerVariable != null) { +#if !DNX builder.Append(httpRequest.ServerVariables[this.ServerVariable]); +#else + + throw new NotSupportedException(); +#endif } else if (this.Header != null) { @@ -109,7 +138,11 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) } else if (this.Item != null) { +#if !DNX builder.Append(httpRequest[this.Item]); +#else + builder.Append(httpRequest.HttpContext.Items[this.Item]); +#endif } } } diff --git a/NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs similarity index 65% rename from NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs index 86413366..8464d435 100644 --- a/NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs +++ b/NLog.Web.ASPNET5/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs @@ -1,7 +1,13 @@ using System.Text; +#if !DNX using System.Web; +#else +using Microsoft.AspNet.Hosting; +using Microsoft.AspNet.Http; +#endif using NLog.LayoutRenderers; +#if !DNX namespace NLog.Web.LayoutRenderers { /// @@ -10,6 +16,14 @@ namespace NLog.Web.LayoutRenderers [LayoutRenderer("aspnet-sessionid")] public class AspNetSessionIDLayoutRenderer : AspNetLayoutRendererBase { +#if DNX + /// + /// Initializes the with the . + /// + public AspNetSessionIDLayoutRenderer(IHttpContextAccessor accessor) : base(accessor) + { + } +#endif /// /// Renders the ASP.NET Session ID appends it to the specified . /// @@ -17,7 +31,7 @@ public class AspNetSessionIDLayoutRenderer : AspNetLayoutRendererBase /// Logging event. protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) { - HttpContextBase context = HttpContextAccessor.HttpContext; + var context = HttpContextAccessor.HttpContext; if (context.Session == null) { @@ -27,4 +41,5 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) builder.Append(context.Session.SessionID); } } -} \ No newline at end of file +} +#endif \ No newline at end of file diff --git a/NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs similarity index 83% rename from NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs index aacae4b5..e6c6a98e 100644 --- a/NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs +++ b/NLog.Web.ASPNET5/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs @@ -2,8 +2,11 @@ using System.Globalization; using System.Linq; using System.Text; +#if !DNX using System.Web; -using System.Web.SessionState; +#else +using Microsoft.AspNet.Http; +#endif using NLog.Config; using NLog.LayoutRenderers; using NLog.Web.Internal; @@ -39,6 +42,14 @@ namespace NLog.Web.LayoutRenderers [LayoutRenderer("aspnet-session")] public class AspNetSessionValueLayoutRenderer : AspNetLayoutRendererBase { +#if DNX + /// + /// Initializes the with the . + /// + public AspNetSessionValueLayoutRenderer(IHttpContextAccessor accessor) : base(accessor) + { + } +#endif /// /// Gets or sets the session variable name. /// @@ -64,13 +75,17 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) return; } - HttpContextBase context = HttpContextAccessor.HttpContext; + var context = HttpContextAccessor.HttpContext; if (context.Session == null) { return; } +#if !DNX var value = PropertyReader.GetValue(Variable, k => context.Session[k], EvaluateAsNestedProperties); +#else + var value = PropertyReader.GetValue(Variable, k => context.Session.GetString(k), EvaluateAsNestedProperties); +#endif builder.Append(Convert.ToString(value, CultureInfo.CurrentUICulture)); } diff --git a/NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs similarity index 72% rename from NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs index d52427f6..6782429d 100644 --- a/NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs +++ b/NLog.Web.ASPNET5/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs @@ -1,5 +1,10 @@ using System.Text; +#if !DNX using System.Web; +#else +using Microsoft.AspNet.Hosting; +using Microsoft.AspNet.Http; +#endif using NLog.LayoutRenderers; namespace NLog.Web.LayoutRenderers @@ -10,6 +15,14 @@ namespace NLog.Web.LayoutRenderers [LayoutRenderer("aspnet-user-authtype")] public class AspNetUserAuthTypeLayoutRenderer : AspNetLayoutRendererBase { +#if DNX + /// + /// Initializes the with the . + /// + public AspNetUserAuthTypeLayoutRenderer(IHttpContextAccessor accessor) : base(accessor) + { + } +#endif /// /// Renders the specified ASP.NET User.Identity.AuthenticationType variable and appends it to the specified . /// @@ -17,7 +30,7 @@ public class AspNetUserAuthTypeLayoutRenderer : AspNetLayoutRendererBase /// Logging event. protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) { - HttpContextBase context = HttpContextAccessor.HttpContext; + var context = HttpContextAccessor.HttpContext; if (context.User == null) { diff --git a/NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs similarity index 69% rename from NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs index 9bf21b25..22cfd81b 100644 --- a/NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs +++ b/NLog.Web.ASPNET5/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs @@ -1,5 +1,10 @@ using System.Text; +#if !DNX using System.Web; +#else +using Microsoft.AspNet.Hosting; +using Microsoft.AspNet.Http; +#endif using NLog.LayoutRenderers; namespace NLog.Web.LayoutRenderers @@ -10,6 +15,14 @@ namespace NLog.Web.LayoutRenderers [LayoutRenderer("aspnet-user-identity")] public class AspNetUserIdentityLayoutRenderer : AspNetLayoutRendererBase { +#if DNX + /// + /// Initializes the with the . + /// + public AspNetUserIdentityLayoutRenderer(IHttpContextAccessor accessor) : base(accessor) + { + } +#endif /// /// Renders the specified ASP.NET User.Identity.Name variable and appends it to the specified . /// @@ -17,7 +30,7 @@ public class AspNetUserIdentityLayoutRenderer : AspNetLayoutRendererBase /// Logging event. protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent) { - HttpContextBase context = HttpContextAccessor.HttpContext; + var context = HttpContextAccessor.HttpContext; if (context.User == null) { diff --git a/NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/IISInstanceNameLayoutRenderer.cs similarity index 69% rename from NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs rename to NLog.Web.ASPNET5/LayoutRenderers/IISInstanceNameLayoutRenderer.cs index 0b30a3af..896df2b5 100644 --- a/NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs +++ b/NLog.Web.ASPNET5/LayoutRenderers/IISInstanceNameLayoutRenderer.cs @@ -1,5 +1,11 @@ using System.Text; + +#if !DNX using System.Web.Hosting; +#else +using Microsoft.AspNet.Hosting; +using Microsoft.AspNet.Http; +#endif using NLog.LayoutRenderers; namespace NLog.Web.LayoutRenderers @@ -11,6 +17,14 @@ namespace NLog.Web.LayoutRenderers // ReSharper disable once InconsistentNaming public class IISInstanceNameLayoutRenderer : LayoutRenderer { + +#if DNX + private readonly IHostingEnvironment _env; + public IISInstanceNameLayoutRenderer(IHostingEnvironment env) + { + _env = env; + } +#endif /// /// Append to target /// @@ -18,7 +32,13 @@ public class IISInstanceNameLayoutRenderer : LayoutRenderer /// Logging event. protected override void Append(StringBuilder builder, LogEventInfo logEvent) { + +#if DNX + builder.Append(_env.EnvironmentName); +#else builder.Append(HostingEnvironment.SiteName); +#endif + } } } diff --git a/NLog.Web.ASPNET5/NLog.Web.aspnet5.xproj b/NLog.Web.ASPNET5/NLog.Web.aspnet5.xproj new file mode 100644 index 00000000..ecd7fb5c --- /dev/null +++ b/NLog.Web.ASPNET5/NLog.Web.aspnet5.xproj @@ -0,0 +1,19 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + 74d5915b-bea9-404c-b4d0-b663164def37 + NLog.Web + ..\artifacts\obj\$(MSBuildProjectName) + ..\artifacts\bin\$(MSBuildProjectName)\ + + + 2.0 + True + + + \ No newline at end of file diff --git a/NLog.Web.ASPNET5/NLog.Web.nuget.targets b/NLog.Web.ASPNET5/NLog.Web.nuget.targets new file mode 100644 index 00000000..e69ce0e6 --- /dev/null +++ b/NLog.Web.ASPNET5/NLog.Web.nuget.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/NLog.Web.ASPNET5/NLog.snk b/NLog.Web.ASPNET5/NLog.snk new file mode 100644 index 00000000..ae6cb7d0 Binary files /dev/null and b/NLog.Web.ASPNET5/NLog.snk differ diff --git a/NLog.Web/NLogHttpModule.cs b/NLog.Web.ASPNET5/NLogHttpModule.cs similarity index 97% rename from NLog.Web/NLogHttpModule.cs rename to NLog.Web.ASPNET5/NLogHttpModule.cs index 958e9622..35f8f22a 100644 --- a/NLog.Web/NLogHttpModule.cs +++ b/NLog.Web.ASPNET5/NLogHttpModule.cs @@ -1,4 +1,5 @@ -using System; +#if !DNX +using System; using System.Web; namespace NLog.Web @@ -54,3 +55,4 @@ private void EndRequestHandler(object sender, EventArgs args) } } } +#endif \ No newline at end of file diff --git a/NLog.Web.ASPNET5/Properties/AssemblyInfo.cs b/NLog.Web.ASPNET5/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..302dbfdd --- /dev/null +++ b/NLog.Web.ASPNET5/Properties/AssemblyInfo.cs @@ -0,0 +1,26 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("NLog.Web.ASPNET5")] +[assembly: AssemblyProduct("NLog.Web for ASP.NET5")] + +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] + +[assembly: AssemblyCopyright("Copyright © NLog 2015-2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: AssemblyVersion("4.0.0.0")] //fixed + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("74d5915b-bea9-404c-b4d0-b663164def37")] diff --git a/NLog.Web/Targets/AspNetTrace.cs b/NLog.Web.ASPNET5/Targets/AspNetTrace.cs similarity index 75% rename from NLog.Web/Targets/AspNetTrace.cs rename to NLog.Web.ASPNET5/Targets/AspNetTrace.cs index 4fb86e95..f54bdbc7 100644 --- a/NLog.Web/Targets/AspNetTrace.cs +++ b/NLog.Web.ASPNET5/Targets/AspNetTrace.cs @@ -1,4 +1,6 @@ -using System.Web; + +#if !DNX +using System.Web; using NLog.Targets; namespace NLog.Web.Targets @@ -13,6 +15,19 @@ namespace NLog.Web.Targets [Target("AspNetTrace")] public class AspNetTraceTarget : TargetWithLayout { + /// + /// Initializes a new instance of the class. + /// + /// + /// The default value of the layout is: + /// + /// ${longdate}|${level:uppercase=true}|${logger}|${message} + /// + /// + public AspNetTraceTarget() + { + } + /// /// Writes the specified logging event to the ASP.NET Trace facility. /// If the log level is greater than or equal to it uses the @@ -40,3 +55,4 @@ protected override void Write(LogEventInfo logEvent) } } } +#endif \ No newline at end of file diff --git a/NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs b/NLog.Web.ASPNET5/Targets/Wrappers/AspNetBufferingTargetWrapper.cs similarity index 99% rename from NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs rename to NLog.Web.ASPNET5/Targets/Wrappers/AspNetBufferingTargetWrapper.cs index e9f3ce57..4d6a1d53 100644 --- a/NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs +++ b/NLog.Web.ASPNET5/Targets/Wrappers/AspNetBufferingTargetWrapper.cs @@ -1,4 +1,5 @@ -using System; +#if !DNX +using System; using System.ComponentModel; using System.Web; using NLog.Common; @@ -208,3 +209,4 @@ private void OnEndRequest(object sender, EventArgs args) } } } +#endif \ No newline at end of file diff --git a/NLog.Web.ASPNET5/global.json b/NLog.Web.ASPNET5/global.json new file mode 100644 index 00000000..62f0043b --- /dev/null +++ b/NLog.Web.ASPNET5/global.json @@ -0,0 +1,5 @@ +{ + "sdk": { + "version": "1.0.0-rc1-update1" + } +} diff --git a/NLog.Web.ASPNET5/project.json b/NLog.Web.ASPNET5/project.json new file mode 100644 index 00000000..c6f22ace --- /dev/null +++ b/NLog.Web.ASPNET5/project.json @@ -0,0 +1,52 @@ +{ + + "version": "4.2.0", + "summary": "NLog for ASP.NET 5 websites", + "description": "Extend NLog with targets and layout renderers for websites and webapplications. Build for ASP.NET5 (aka ASP.NET Core 1.0)", + "authors": [ "J. Verdurmen" ], + "tags": [ "logging", "log", "session", "NLog", "web", "aspnet", "aspnet5", "dnx" ], + "projectUrl": "https://github.com/NLog/NLog.Web", + "licenseUrl": "http://raw.github.com/NLog/NLog.Web/master/LICENSE", + "requireLicenseAcceptance": false, + "iconUrl": "http://nlog-project.org/N.png", + "repository": { + "type": "git", + "url": "git://github.com/NLog/NLog.Web" + }, + + "title": "NLog.Web.ASPNET5", + + "frameworks": { + "dnxcore50": { + "compilationOptions": { "define": [ "DOTNET5_4", "DNX" ] }, + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23516", + "System.Collections": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516", + "System.Threading": "4.0.11-beta-23516", + "Microsoft.AspNet.Hosting": "1.0.0-rc1-final", + "NLog": "4.4.0-alpha1" + + + } + }, + "net451": { + + "compilationOptions": { "define": [ "DOTNET5_4", "DNX451", "DNX" ] }, + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23516", + "System.Collections": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516", + "System.Threading": "4.0.11-beta-23516", + "Microsoft.AspNet.Hosting": "1.0.0-rc1-final", + "NLog": "4.4.0-alpha1" + } + } + + }, + "compilationOptions": { + "keyFile": "NLog.snk" + } +} diff --git a/NLog.Web.ASPNET5/project.lock.json b/NLog.Web.ASPNET5/project.lock.json new file mode 100644 index 00000000..767a8c31 --- /dev/null +++ b/NLog.Web.ASPNET5/project.lock.json @@ -0,0 +1,10910 @@ +{ + "locked": false, + "version": 2, + "targets": { + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "System.IO": "4.0.11-beta-23516", + "System.Resources.ResourceManager": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23516", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Text.RegularExpressions": "4.0.11-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging": "1.0.0-rc1-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.Console": "4.0.0-beta-23516", + "System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516", + "System.Diagnostics.StackTrace": "4.0.1-beta-23516", + "System.Reflection.Extensions": "4.0.1-beta-23516" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.Text.Encoding": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Tools": "4.0.1-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Globalization.Extensions": "4.0.1-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Linq.Expressions": "4.0.11-beta-23516", + "System.Net.Primitives": "4.0.11-beta-23516", + "System.Net.WebSockets": "4.0.0-beta-23516", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.InteropServices": "4.0.21-beta-23516", + "System.Security.Claims": "4.0.1-beta-23516", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516", + "System.Security.Principal": "4.0.1-beta-23516", + "System.Threading.Tasks": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Net.Primitives": "4.0.11-beta-23516", + "System.Net.WebSockets": "4.0.0-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Security.Claims": "4.0.1-beta-23516", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516", + "System.Security.Principal": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CSharp/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Dynamic.Runtime": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.IO.FileSystem": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Runtime.InteropServices": "4.0.21-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "System.Linq": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final", + "System.AppContext": "4.0.0" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc1-final", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.Threading": "4.0.11-beta-23516", + "System.Threading.Tasks": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Linq.Expressions": "4.0.11-beta-23516", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.ComponentModel": "4.0.1-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Runtime.InteropServices": "4.0.21-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23516", + "System.ComponentModel": "4.0.1-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Threading.Tasks": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Contracts": "4.0.1-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Globalization.Extensions": "4.0.1-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516", + "System.Text.Encoding": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + } + }, + "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": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "NLog/4.4.0-alpha1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23516", + "System.Console": "4.0.0-beta-23516", + "System.Data.Common": "4.0.0", + "System.Diagnostics.Contracts": "4.0.1-beta-23516", + "System.Diagnostics.StackTrace": "4.0.1-beta-23516", + "System.Diagnostics.Tools": "4.0.1-beta-23516", + "System.Diagnostics.TraceSource": "4.0.0-beta-23516", + "System.IO.Compression": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23516", + "System.Net.Requests": "4.0.10", + "System.Runtime.Serialization.Primitives": "4.1.0-beta-23516", + "System.ServiceModel.Primitives": "4.0.0", + "System.Threading.Thread": "4.0.0-beta-23516", + "System.Threading.ThreadPool": "4.0.10-beta-23516", + "System.Xml.XmlDocument": "4.0.1-beta-23516" + }, + "compile": { + "lib/dnxcore50/NLog.dll": {} + }, + "runtime": { + "lib/dnxcore50/NLog.dll": {} + } + }, + "System.AppContext/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23516" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "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", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/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.Collections.Specialized/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0", + "System.Globalization": "4.0.10", + "System.Globalization.Extensions": "4.0.0", + "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.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.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.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Collections.NonGeneric": "4.0.0", + "System.Globalization": "4.0.10", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.TraceSource.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.Dynamic.Runtime/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "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.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.Requests/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.IO": "4.0.10", + "System.Net.Http": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Net.WebHeaderCollection": "4.0.0", + "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.Net.Requests.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.0.0": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.10", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0", + "System.Collections.Specialized": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Serialization.Primitives": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10", + "System.Xml.XmlSerializer": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.ServiceModel/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.10", + "System.Collections.NonGeneric": "4.0.0", + "System.Collections.Specialized": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Contracts": "4.0.0", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.Linq.Queryable": "4.0.0", + "System.Net.Http": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Net.Sockets": "4.0.0", + "System.Net.WebHeaderCollection": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.DispatchProxy": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Serialization.Primitives": "4.0.10", + "System.Runtime.Serialization.Xml": "4.0.10", + "System.Security.Claims": "4.0.0", + "System.Security.Principal": "4.0.0", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10", + "System.Threading.Timer": "4.0.0", + "System.Xml.ReaderWriter": "4.0.10", + "System.Xml.XmlDocument": "4.0.0", + "System.Xml.XmlSerializer": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23516": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "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.DispatchProxy/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.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.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23516": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23516" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/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.21-beta-23516": { + "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/dotnet5.4/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "type": "package", + "dependencies": { + "System.Private.DataContractSerialization": "4.0.0", + "System.Runtime.Serialization.Primitives": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Claims/4.0.1-beta-23516": { + "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/dotnet5.1/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23516" + }, + "compile": { + "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23516": { + "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.1/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23516", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23516" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.0.0" + }, + "compile": { + "ref/dotnet/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.Text.Encoding/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/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.Text.RegularExpressions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "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/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.InteropServices": "4.0.0" + }, + "compile": { + "ref/dotnet5.2/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "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.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10", + "System.Xml.XmlDocument": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + ".NETFramework,Version=v4.5.1": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging": "1.0.0-rc1-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CSharp/4.0.1-beta-23516": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc1-final", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "NLog/4.4.0-alpha1": { + "type": "package", + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Configuration", + "System.Core", + "System.Data", + "System.Runtime.Serialization", + "System.ServiceModel", + "System.Transactions", + "System.Xml" + ], + "compile": { + "lib/net35/NLog.dll": {} + }, + "runtime": { + "lib/net35/NLog.dll": {} + } + }, + "System.Collections/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.1-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.21-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + "DNXCore,Version=v5.0/win7-x86": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "System.IO": "4.0.11-beta-23516", + "System.Resources.ResourceManager": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23516", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Text.RegularExpressions": "4.0.11-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging": "1.0.0-rc1-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.Console": "4.0.0-beta-23516", + "System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516", + "System.Diagnostics.StackTrace": "4.0.1-beta-23516", + "System.Reflection.Extensions": "4.0.1-beta-23516" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.Text.Encoding": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Tools": "4.0.1-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Globalization.Extensions": "4.0.1-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Linq.Expressions": "4.0.11-beta-23516", + "System.Net.Primitives": "4.0.11-beta-23516", + "System.Net.WebSockets": "4.0.0-beta-23516", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.InteropServices": "4.0.21-beta-23516", + "System.Security.Claims": "4.0.1-beta-23516", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516", + "System.Security.Principal": "4.0.1-beta-23516", + "System.Threading.Tasks": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Net.Primitives": "4.0.11-beta-23516", + "System.Net.WebSockets": "4.0.0-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Security.Claims": "4.0.1-beta-23516", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516", + "System.Security.Principal": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CSharp/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Dynamic.Runtime": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.IO.FileSystem": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Runtime.InteropServices": "4.0.21-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "System.Linq": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final", + "System.AppContext": "4.0.0" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc1-final", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.Threading": "4.0.11-beta-23516", + "System.Threading.Tasks": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Linq.Expressions": "4.0.11-beta-23516", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.ComponentModel": "4.0.1-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Runtime.InteropServices": "4.0.21-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23516", + "System.ComponentModel": "4.0.1-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Threading.Tasks": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Contracts": "4.0.1-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Globalization.Extensions": "4.0.1-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516", + "System.Text.Encoding": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + } + }, + "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": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "NLog/4.4.0-alpha1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23516", + "System.Console": "4.0.0-beta-23516", + "System.Data.Common": "4.0.0", + "System.Diagnostics.Contracts": "4.0.1-beta-23516", + "System.Diagnostics.StackTrace": "4.0.1-beta-23516", + "System.Diagnostics.Tools": "4.0.1-beta-23516", + "System.Diagnostics.TraceSource": "4.0.0-beta-23516", + "System.IO.Compression": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23516", + "System.Net.Requests": "4.0.10", + "System.Runtime.Serialization.Primitives": "4.1.0-beta-23516", + "System.ServiceModel.Primitives": "4.0.0", + "System.Threading.Thread": "4.0.0-beta-23516", + "System.Threading.ThreadPool": "4.0.10-beta-23516", + "System.Xml.XmlDocument": "4.0.1-beta-23516" + }, + "compile": { + "lib/dnxcore50/NLog.dll": {} + }, + "runtime": { + "lib/dnxcore50/NLog.dll": {} + } + }, + "runtime.any.System.Linq.Expressions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Emit.Lightweight": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "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/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "runtime.win7.System.Console/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "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.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Console.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "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/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Diagnostics.TraceSource.dll": {} + } + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-beta-23516": { + "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", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "runtime.win7.System.IO.Compression/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "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.Text.Encoding": "4.0.10", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.IO.Compression.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": { + "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/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "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.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} + } + }, + "runtime.win7.System.Net.Primitives/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.1-beta-23516" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.1-beta-23516": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23516": { + "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-23516", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-beta-23516": { + "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-23516" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": { + "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.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-23516", + "System.Security.Cryptography.Cng": "4.0.0-beta-23516", + "System.Security.Cryptography.Csp": "4.0.0-beta-23516", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23516", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23516", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Threading.dll": {} + } + }, + "runtime.win7-x86.System.IO.Compression.clrcompression/4.0.1-beta-23409": { + "type": "package", + "native": { + "runtimes/win7-x86/native/clrcompression.dll": {} + } + }, + "System.AppContext/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23516" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "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", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/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.Collections.Specialized/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0", + "System.Globalization": "4.0.10", + "System.Globalization.Extensions": "4.0.0", + "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.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.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.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Collections.NonGeneric": "4.0.0", + "System.Globalization": "4.0.10", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.TraceSource.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.Dynamic.Runtime/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/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.Globalization.Extensions/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "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.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.Requests/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.IO": "4.0.10", + "System.Net.Http": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Net.WebHeaderCollection": "4.0.0", + "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.Net.Requests.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.0.0": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.10", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0", + "System.Collections.Specialized": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Serialization.Primitives": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10", + "System.Xml.XmlSerializer": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.1-beta-23516": { + "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.Security.Cryptography.Primitives": "4.0.0-beta-23516", + "System.Security.Principal": "4.0.0", + "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.ServiceModel/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.10", + "System.Collections.NonGeneric": "4.0.0", + "System.Collections.Specialized": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Contracts": "4.0.0", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.Linq.Queryable": "4.0.0", + "System.Net.Http": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Net.Sockets": "4.0.0", + "System.Net.WebHeaderCollection": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.DispatchProxy": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Serialization.Primitives": "4.0.10", + "System.Runtime.Serialization.Xml": "4.0.10", + "System.Security.Claims": "4.0.0", + "System.Security.Principal": "4.0.0", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10", + "System.Threading.Timer": "4.0.0", + "System.Xml.ReaderWriter": "4.0.10", + "System.Xml.XmlDocument": "4.0.0", + "System.Xml.XmlSerializer": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23516": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "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.DispatchProxy/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.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.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23516": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23516" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/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.21-beta-23516": { + "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/dotnet5.4/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.Runtime.Serialization.Primitives/4.1.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "type": "package", + "dependencies": { + "System.Private.DataContractSerialization": "4.0.0", + "System.Runtime.Serialization.Primitives": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Claims/4.0.1-beta-23516": { + "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/dotnet5.1/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23516" + }, + "compile": { + "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "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.Cryptography.Algorithms": "4.0.0-beta-23516", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23516", + "System.Text.Encoding": "4.0.0" + }, + "compile": { + "ref/dotnet5.2/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Reflection": "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.Algorithms": "4.0.0-beta-23516", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23516", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23516", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Security.Cryptography.Csp.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23516": { + "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.1/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23516", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23516" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.0.0" + }, + "compile": { + "ref/dotnet/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.Text.Encoding/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/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.Text.RegularExpressions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "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/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/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.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.InteropServices": "4.0.0" + }, + "compile": { + "ref/dotnet5.2/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "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.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10", + "System.Xml.XmlDocument": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "DNXCore,Version=v5.0/win7-x64": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "System.IO": "4.0.11-beta-23516", + "System.Resources.ResourceManager": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23516", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Text.RegularExpressions": "4.0.11-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging": "1.0.0-rc1-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.Console": "4.0.0-beta-23516", + "System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516", + "System.Diagnostics.StackTrace": "4.0.1-beta-23516", + "System.Reflection.Extensions": "4.0.1-beta-23516" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.Text.Encoding": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Tools": "4.0.1-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Globalization.Extensions": "4.0.1-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Linq.Expressions": "4.0.11-beta-23516", + "System.Net.Primitives": "4.0.11-beta-23516", + "System.Net.WebSockets": "4.0.0-beta-23516", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.InteropServices": "4.0.21-beta-23516", + "System.Security.Claims": "4.0.1-beta-23516", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516", + "System.Security.Principal": "4.0.1-beta-23516", + "System.Threading.Tasks": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Net.Primitives": "4.0.11-beta-23516", + "System.Net.WebSockets": "4.0.0-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Security.Claims": "4.0.1-beta-23516", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23516", + "System.Security.Principal": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CSharp/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Dynamic.Runtime": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.IO.FileSystem": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.IO.FileSystem": "4.0.1-beta-23516", + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Runtime.InteropServices": "4.0.21-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "System.Linq": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final", + "System.AppContext": "4.0.0" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc1-final", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.Threading": "4.0.11-beta-23516", + "System.Threading.Tasks": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Linq.Expressions": "4.0.11-beta-23516", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final", + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.ComponentModel": "4.0.1-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23516", + "System.Collections.Concurrent": "4.0.11-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Runtime.InteropServices": "4.0.21-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23516", + "System.ComponentModel": "4.0.1-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Threading.Tasks": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23516", + "System.Diagnostics.Debug": "4.0.11-beta-23516", + "System.IO": "4.0.11-beta-23516", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.1-beta-23516", + "System.Runtime.Extensions": "4.0.11-beta-23516", + "System.Threading": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23516", + "System.Diagnostics.Contracts": "4.0.1-beta-23516", + "System.Globalization": "4.0.11-beta-23516", + "System.Globalization.Extensions": "4.0.1-beta-23516", + "System.Linq": "4.0.1-beta-23516", + "System.Runtime": "4.0.21-beta-23516", + "System.Text.Encoding": "4.0.11-beta-23516" + }, + "compile": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {} + } + }, + "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": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "NLog/4.4.0-alpha1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23516", + "System.Console": "4.0.0-beta-23516", + "System.Data.Common": "4.0.0", + "System.Diagnostics.Contracts": "4.0.1-beta-23516", + "System.Diagnostics.StackTrace": "4.0.1-beta-23516", + "System.Diagnostics.Tools": "4.0.1-beta-23516", + "System.Diagnostics.TraceSource": "4.0.0-beta-23516", + "System.IO.Compression": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23516", + "System.Net.Requests": "4.0.10", + "System.Runtime.Serialization.Primitives": "4.1.0-beta-23516", + "System.ServiceModel.Primitives": "4.0.0", + "System.Threading.Thread": "4.0.0-beta-23516", + "System.Threading.ThreadPool": "4.0.10-beta-23516", + "System.Xml.XmlDocument": "4.0.1-beta-23516" + }, + "compile": { + "lib/dnxcore50/NLog.dll": {} + }, + "runtime": { + "lib/dnxcore50/NLog.dll": {} + } + }, + "runtime.any.System.Linq.Expressions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Emit.Lightweight": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "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/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "runtime.win7.System.Console/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "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.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Console.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "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/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Diagnostics.TraceSource.dll": {} + } + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-beta-23516": { + "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", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {} + } + }, + "runtime.win7.System.IO.Compression/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "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.Text.Encoding": "4.0.10", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.IO.Compression.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": { + "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/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "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.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {} + } + }, + "runtime.win7.System.Net.Primitives/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.1-beta-23516" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.1-beta-23516": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23516": { + "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-23516", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-beta-23516": { + "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-23516" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": { + "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.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-23516", + "System.Security.Cryptography.Cng": "4.0.0-beta-23516", + "System.Security.Cryptography.Csp": "4.0.0-beta-23516", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23516", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23516", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Threading.dll": {} + } + }, + "runtime.win7-x64.System.IO.Compression.clrcompression/4.0.1-beta-23409": { + "type": "package", + "native": { + "runtimes/win7-x64/native/clrcompression.dll": {} + } + }, + "System.AppContext/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23516" + }, + "compile": { + "ref/dotnet5.4/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "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", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet5.4/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.Collections.Specialized/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0", + "System.Globalization": "4.0.10", + "System.Globalization.Extensions": "4.0.0", + "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.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.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.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Collections.NonGeneric": "4.0.0", + "System.Globalization": "4.0.10", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Diagnostics.TraceSource.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.Dynamic.Runtime/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.4/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/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.Globalization.Extensions/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.1/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "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.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Net.Primitives.dll": {} + } + }, + "System.Net.Requests/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.IO": "4.0.10", + "System.Net.Http": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Net.WebHeaderCollection": "4.0.0", + "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.Net.Requests.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.0.0": { + "type": "package", + "dependencies": { + "System.Net.Primitives": "4.0.10", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0", + "System.Collections.Specialized": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Serialization.Primitives": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10", + "System.Xml.XmlSerializer": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.1-beta-23516": { + "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.Security.Cryptography.Primitives": "4.0.0-beta-23516", + "System.Security.Principal": "4.0.0", + "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.ServiceModel/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.10", + "System.Collections.NonGeneric": "4.0.0", + "System.Collections.Specialized": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Contracts": "4.0.0", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.Linq.Queryable": "4.0.0", + "System.Net.Http": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Net.Sockets": "4.0.0", + "System.Net.WebHeaderCollection": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.DispatchProxy": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Serialization.Primitives": "4.0.10", + "System.Runtime.Serialization.Xml": "4.0.10", + "System.Security.Claims": "4.0.0", + "System.Security.Principal": "4.0.0", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10", + "System.Threading.Timer": "4.0.0", + "System.Xml.ReaderWriter": "4.0.10", + "System.Xml.XmlDocument": "4.0.0", + "System.Xml.XmlSerializer": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23516": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "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.DispatchProxy/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.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.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23516": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23516" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/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.21-beta-23516": { + "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/dotnet5.4/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.Runtime.Serialization.Primitives/4.1.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "type": "package", + "dependencies": { + "System.Private.DataContractSerialization": "4.0.0", + "System.Runtime.Serialization.Primitives": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Claims/4.0.1-beta-23516": { + "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/dotnet5.1/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23516" + }, + "compile": { + "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "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.Cryptography.Algorithms": "4.0.0-beta-23516", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23516", + "System.Text.Encoding": "4.0.0" + }, + "compile": { + "ref/dotnet5.2/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Reflection": "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.Algorithms": "4.0.0-beta-23516", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23516", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23516", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Security.Cryptography.Csp.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23516": { + "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.1/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23516", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23516" + }, + "compile": { + "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet5.1/System.Security.Principal.dll": {} + } + }, + "System.ServiceModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.0.0" + }, + "compile": { + "ref/dotnet/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.Text.Encoding/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/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.Text.RegularExpressions/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "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/dotnet5.4/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/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.11-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.4/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet5.1/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23516": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.InteropServices": "4.0.0" + }, + "compile": { + "ref/dotnet5.2/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "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.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.1-beta-23516": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10" + }, + "compile": { + "ref/dotnet5.1/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet5.4/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10", + "System.Xml.XmlDocument": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x86": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging": "1.0.0-rc1-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CSharp/4.0.1-beta-23516": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc1-final", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "NLog/4.4.0-alpha1": { + "type": "package", + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Configuration", + "System.Core", + "System.Data", + "System.Runtime.Serialization", + "System.ServiceModel", + "System.Transactions", + "System.Xml" + ], + "compile": { + "lib/net35/NLog.dll": {} + }, + "runtime": { + "lib/net35/NLog.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "System.Collections/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.1-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.21-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETFramework,Version=v4.5.1/win7-x64": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.CommandLine": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc1-final", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging": "1.0.0-rc1-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", + "System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.AspNet.WebUtilities": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final", + "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CSharp/4.0.1-beta-23516": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc1-final", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc1-final", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc1-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "NLog/4.4.0-alpha1": { + "type": "package", + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Configuration", + "System.Core", + "System.Data", + "System.Runtime.Serialization", + "System.ServiceModel", + "System.Transactions", + "System.Xml" + ], + "compile": { + "lib/net35/NLog.dll": {} + }, + "runtime": { + "lib/net35/NLog.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + } + }, + "System.Collections/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tracing": "4.0.0", + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.1-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.21-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.11-beta-23516": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": { + "type": "package", + "sha512": "Tv6YJk78cH+gFipRNjeMpzzUg3t4BQiS0xYVlv/8gVNl4sI6ytAMYYfIbx8pCacIRH5Nx/Tw9GVn28eyw+JZfA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc1-final.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": { + "type": "package", + "sha512": "Ni5o7X21cN97krdkg3F77F5app0KpLwdpHbxdpwqaMjhMKYcmNDcyZB8Ke/qgbSMqHRwT3aQVhgEp/iJTbgl6g==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/net451/Microsoft.AspNet.FileProviders.Physical.xml", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc1-final.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-rc1-final": { + "type": "package", + "sha512": "6ZVZK5Ql+z6UeVOBcXCRLahcAd/NKdMAK17JBZWGZqqmxKO0LtQMdb6drb9H4nBM3/a8vbhd+23wxzyIfoCLQQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.xml", + "lib/dotnet5.4/Microsoft.AspNet.Hosting.dll", + "lib/dotnet5.4/Microsoft.AspNet.Hosting.xml", + "lib/net451/Microsoft.AspNet.Hosting.dll", + "lib/net451/Microsoft.AspNet.Hosting.xml", + "Microsoft.AspNet.Hosting.1.0.0-rc1-final.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": { + "type": "package", + "sha512": "07N5rzYcsjkLgwoI923FcAvvf7167qhLgCExXwYYkdZUIJQzneRG0DqZJTm6qpnaD5igf4FM9F+eh2m7y5NFbg==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc1-final.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": { + "type": "package", + "sha512": "55ovPKPLsLvXsZ2xxtCOkQXmLwrE5iMUXe1y3A3Y/DCcI2u9VBJezu1y2EPYmZCM+uP/Y/BaQm68AWg2r8RV5w==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc1-final.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http/1.0.0-rc1-final": { + "type": "package", + "sha512": "2vVd6xlfDKxl7pln5VOSczVo5bdJK6VLF6LR62Tb+le6e0COju7diAPHujFcXQlX/eLq2GrctN5vbIMeQ6vRTg==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.xml", + "lib/net451/Microsoft.AspNet.Http.dll", + "lib/net451/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-rc1-final.nupkg", + "Microsoft.AspNet.Http.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": { + "type": "package", + "sha512": "sfzc1WJMl8wGCF+rChVfJ7otT6tTv24RNXUej2r8tlQ2RDNnAozYyGb0SCW2mxpHrC31On99Wt0rksgF0c2WUw==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml", + "lib/net451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/net451/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc1-final.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": { + "type": "package", + "sha512": "rsjbxD9W6NfqP0WNHMRyetIh6ZoKRbK1ea0V5xWdVAx53WdvgBy0HmkSwXt506+xU65jjZP19F4Ua4YjZdPHfQ==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.xml", + "lib/net451/Microsoft.AspNet.Http.Extensions.dll", + "lib/net451/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-rc1-final.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": { + "type": "package", + "sha512": "WlscfdAvN8XaaK1iv1Iewp5emei7+0SlXNkUh7kMJpeaS6K0GhwNmwqZR6VrT1oN+Maw98nEONHS34/suqQwOA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll", + "lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml", + "lib/net451/Microsoft.AspNet.Http.Features.dll", + "lib/net451/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-rc1-final.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": { + "type": "package", + "sha512": "0D80xroAEiWlB9X5eR/JUya1H2saIYnt4d7bPru5RRf5L/66X+9WWhf3hFkLUF3W13K6g6K9Is9dCTaEfFFKTA==", + "files": [ + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll", + "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.xml", + "lib/net451/Microsoft.AspNet.WebUtilities.dll", + "lib/net451/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-rc1-final.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec" + ] + }, + "Microsoft.CSharp/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "fb+HO3nIjHao9lqsVVM0ne3GM/+1EfRQUoM58cxEOt+5biy/8DQ1nxIahZ9VaJKw7Wgb6XhRhsdwg8DkePEOJA==", + "files": [ + "lib/dotnet5.4/Microsoft.CSharp.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.CSharp.4.0.1-beta-23516.nupkg", + "Microsoft.CSharp.4.0.1-beta-23516.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet5.1/de/Microsoft.CSharp.xml", + "ref/dotnet5.1/es/Microsoft.CSharp.xml", + "ref/dotnet5.1/fr/Microsoft.CSharp.xml", + "ref/dotnet5.1/it/Microsoft.CSharp.xml", + "ref/dotnet5.1/ja/Microsoft.CSharp.xml", + "ref/dotnet5.1/ko/Microsoft.CSharp.xml", + "ref/dotnet5.1/Microsoft.CSharp.dll", + "ref/dotnet5.1/Microsoft.CSharp.xml", + "ref/dotnet5.1/ru/Microsoft.CSharp.xml", + "ref/dotnet5.1/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet5.1/zh-hant/Microsoft.CSharp.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": { + "type": "package", + "sha512": "kg3kR7H12Bs46TiuF7YT8A3SNXehhBcwsArIMQIH2ecXGkg5MPWDl2OR6bnQu6k0OMu9QUiv1oiwC9yU7rHWfw==", + "files": [ + "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.xml", + "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll", + "lib/net451/Microsoft.Dnx.Compilation.Abstractions.xml", + "Microsoft.Dnx.Compilation.Abstractions.1.0.0-rc1-final.nupkg", + "Microsoft.Dnx.Compilation.Abstractions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Dnx.Compilation.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration/1.0.0-rc1-final": { + "type": "package", + "sha512": "2ayWzqMVGWjr8o8bOSnIsyQbi9sLz9Ya8+YM+9tM/ivSnLHuN7TNHNfJv4jTyRZvoOafdh5Ivlc/OdmsZPXlQQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.xml", + "lib/net451/Microsoft.Extensions.Configuration.dll", + "lib/net451/Microsoft.Extensions.Configuration.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.xml", + "Microsoft.Extensions.Configuration.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.Configuration.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": { + "type": "package", + "sha512": "xA7ObOlIswcx2qakv69kz0pnBizFJrmwxRxJyjPOHWfevF4W+OdolZsbKOc12kY7y5upqhAvNGWTblffMvADHA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Abstractions.xml", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": { + "type": "package", + "sha512": "k+kXsefuLV5WkkG6X8GFn9zf9ZrMyC3dddgm6I6scpbanDyoKUYrRUP2VhW0ViO6TIva0soh6jJy3pFPCrNx9Q==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net451/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.CommandLine.xml", + "Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.Configuration.CommandLine.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.CommandLine.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": { + "type": "package", + "sha512": "CaNirkiOycy0L6ptGxmpDkHZ2lzqcHKDbQJBfEhobnEt43pqKGKgAPC5dW3DfnsMpuK+inypm5iht9t6tq4vjg==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": { + "type": "package", + "sha512": "w2x8nqrp2YUgNBJuZ3SUmexBtjaoZFzCQtObRTjrE4GWceFEmaLZtXFvs4n9IgRQkOqqCza7Fv7NXnD9m2emjQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.FileExtensions.xml", + "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.FileExtensions.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": { + "type": "package", + "sha512": "9v+RpswnXEpAP5mx8J1w1yZZT2pPtMBTnOAauNh2c9ju5Dhq3ljxvbm0S9j6o5F/EFSLlbfN/brxTJN3qa/upw==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll", + "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.xml", + "lib/net451/Microsoft.Extensions.Configuration.Json.dll", + "lib/net451/Microsoft.Extensions.Configuration.Json.xml", + "lib/netcore50/Microsoft.Extensions.Configuration.Json.dll", + "lib/netcore50/Microsoft.Extensions.Configuration.Json.xml", + "Microsoft.Extensions.Configuration.Json.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.Configuration.Json.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.Json.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": { + "type": "package", + "sha512": "S/+s3fq85j21H5nYOvh1fIt1arl8F5lZ7Ryiw/qend83yHQwIQbBs+dip9FhqiPmAn6Dz3UhW0likQQurfEsLQ==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.DependencyInjection.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": { + "type": "package", + "sha512": "MUKexXAsRZ55C7YZ26ShePZgBeW+6FbasxeIVmZ/BZIgiG4uw6yPOdfl9WvTaUL9SFK2sEPcYLatWmLfTpsOAA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/1.0.0-rc1-final": { + "type": "package", + "sha512": "anegHH4XHjaCmC557A0uvnJzprT44MOKr669yfiQLtITA+lQrM3aMijxjjdCREnxE8ftXuSz+6wViCvkgcAOhA==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.xml", + "lib/net451/Microsoft.Extensions.Logging.dll", + "lib/net451/Microsoft.Extensions.Logging.xml", + "lib/netcore50/Microsoft.Extensions.Logging.dll", + "lib/netcore50/Microsoft.Extensions.Logging.xml", + "Microsoft.Extensions.Logging.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.Logging.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.Logging.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": { + "type": "package", + "sha512": "ejGO1JhPXMsCCSyH12xwkOYsb9oBv2gHc3LLaT2jevrD//xuQizWaxpVk0/rHGdORkWdp+kT2Qmuz/sLyNWW/g==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net451/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": { + "type": "package", + "sha512": "26HS4c6MBisN+D7XUr8HObOI/JJvSJQYQR//Bfw/hi9UqhqK3lFpNKjOuYHI+gTxYdXT46HqZiz4D+k7d+ob3A==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.xml", + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.PlatformAbstractions.nuspec" + ] + }, + "Microsoft.Extensions.Primitives/1.0.0-rc1-final": { + "type": "package", + "sha512": "oHWqBARJveyM7LctuqQqvsTC58hxoq0gGnHr6Qsxie71LIkZpfE21IklhSLOsqmv4QIpes/G6k1vZbAQ+cC/nw==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll", + "lib/dotnet5.4/Microsoft.Extensions.Primitives.xml", + "lib/net451/Microsoft.Extensions.Primitives.dll", + "lib/net451/Microsoft.Extensions.Primitives.xml", + "lib/netcore50/Microsoft.Extensions.Primitives.dll", + "lib/netcore50/Microsoft.Extensions.Primitives.xml", + "Microsoft.Extensions.Primitives.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.Primitives.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.Primitives.nuspec" + ] + }, + "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": { + "type": "package", + "sha512": "wt47w3Zu7JvuD7CfRSCaz0IZL5EzpuzicRm6Qcidteb2TVeB98Psg7YGiwIBeYB1b52YFTBgqC+ySKk/GRhy2A==", + "files": [ + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll", + "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.xml", + "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll", + "lib/net451/Microsoft.Extensions.WebEncoders.Core.xml", + "Microsoft.Extensions.WebEncoders.Core.1.0.0-rc1-final.nupkg", + "Microsoft.Extensions.WebEncoders.Core.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Extensions.WebEncoders.Core.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-rc1-final": { + "type": "package", + "sha512": "Y10hkmHQZLieW3J6J+vTiq86vifmJ7Vc2zrwNR349oAaUGjTHL0ws6rqHn0JDIcawBna4AE3OBNsL9vuZuE8bw==", + "files": [ + "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll", + "lib/dotnet5.4/Microsoft.Net.Http.Headers.xml", + "lib/net451/Microsoft.Net.Http.Headers.dll", + "lib/net451/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-rc1-final.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-rc1-final.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.Win32.Primitives.4.0.0.nupkg", + "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "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/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "NLog/4.4.0-alpha1": { + "type": "package", + "sha512": "cdbV/3VFqaxrcRvqafowTwK4re93JDueuG9cmjpx8ivcdB6Jc226SdMmJWkDSv8vwGeUrvYKF14GuogfdycU1w==", + "files": [ + "lib/dnx451/NLog.dll", + "lib/dnx451/NLog.xml", + "lib/dnxcore50/NLog.dll", + "lib/dnxcore50/NLog.xml", + "lib/net35/NLog.dll", + "lib/net35/NLog.xml", + "lib/sl50/NLog.dll", + "lib/sl50/NLog.xml", + "lib/UAP10.0/NLog.dll", + "lib/UAP10.0/NLog.xml", + "NLog.4.4.0-alpha1.nupkg", + "NLog.4.4.0-alpha1.nupkg.sha512", + "NLog.nuspec" + ] + }, + "runtime.any.System.Linq.Expressions/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "P5nzo1Ye0GxB4BYdWian6Y427eTrhn1JS3jLWZq5bMWVn8hS/OIfyylASN0A/qqeLn4rGA0fOzmJSYqFSKvxgQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/_._", + "runtime.any.System.Linq.Expressions.4.0.11-beta-23516.nupkg", + "runtime.any.System.Linq.Expressions.4.0.11-beta-23516.nupkg.sha512", + "runtime.any.System.Linq.Expressions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.win7.System.Console/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "pfQrTtnYcWOtI3RrpqjAzwT3I55ivTVZFpbKYG59dYTTvaLFGbs2njc/mrXHij6GylyJ2YjekS/9r6I8X3LV1A==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Console.4.0.0-beta-23516.nupkg", + "runtime.win7.System.Console.4.0.0-beta-23516.nupkg.sha512", + "runtime.win7.System.Console.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Console.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "TxSgeP23B6bPfE0QFX8u4/1p1jP6Ugn993npTRf3e9F3y61BIQeCkt5Im0gGdjz0dxioHkuTr+C2m4ELsMos8Q==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Diagnostics.Debug.4.0.11-beta-23516.nupkg", + "runtime.win7.System.Diagnostics.Debug.4.0.11-beta-23516.nupkg.sha512", + "runtime.win7.System.Diagnostics.Debug.nuspec", + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll", + "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "hpD0T6zOEU/1qUSPitKSgIdsL4tZlZz7CUCu6PP7BYf8CM3vPkSEzN38kX6PnH8F6kvOqxEwzPYhZCK3PJkh/Q==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Diagnostics.TraceSource.4.0.0-beta-23516.nupkg", + "runtime.win7.System.Diagnostics.TraceSource.4.0.0-beta-23516.nupkg.sha512", + "runtime.win7.System.Diagnostics.TraceSource.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Diagnostics.TraceSource.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/_._", + "runtimes/win7/lib/win8/_._", + "runtimes/win7/lib/wp8/_._", + "runtimes/win7/lib/wpa81/_._" + ] + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "CkJDutcT9NdDbg4n2RymnEYawaI4SnNs91NdRuvCfScu9ikop3I8gp5E+R83hGjx774izYdM2uHPeh85jT+jzQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Globalization.Extensions.4.0.1-beta-23516.nupkg", + "runtime.win7.System.Globalization.Extensions.4.0.1-beta-23516.nupkg.sha512", + "runtime.win7.System.Globalization.Extensions.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.IO.Compression/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "LJ9yVmz0ufKfaK3bPW1VAQ5p6RhNCSMGcSOtBlAi0vN3p8iEp2RCMuzppQpkQlNe8JXKikUvkheUEJJmz3CAZA==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/_._", + "ref/net45/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "runtime.win7.System.IO.Compression.4.0.1-beta-23409.nupkg", + "runtime.win7.System.IO.Compression.4.0.1-beta-23409.nupkg.sha512", + "runtime.win7.System.IO.Compression.nuspec", + "runtimes/win7/lib/dotnet/de/System.IO.Compression.xml", + "runtimes/win7/lib/dotnet/es/System.IO.Compression.xml", + "runtimes/win7/lib/dotnet/fr/System.IO.Compression.xml", + "runtimes/win7/lib/dotnet/it/System.IO.Compression.xml", + "runtimes/win7/lib/dotnet/ja/System.IO.Compression.xml", + "runtimes/win7/lib/dotnet/ko/System.IO.Compression.xml", + "runtimes/win7/lib/dotnet/ru/System.IO.Compression.xml", + "runtimes/win7/lib/dotnet/System.IO.Compression.dll", + "runtimes/win7/lib/dotnet/System.IO.Compression.xml", + "runtimes/win7/lib/dotnet/zh-hans/System.IO.Compression.xml", + "runtimes/win7/lib/dotnet/zh-hant/System.IO.Compression.xml" + ] + }, + "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "UOHEVg3jQwsvy3b+8zhDk7BQ9GhHY1KcjHSuqArzIl7oemcM/+D7OfS5iOA96ydjEv9FmIKV3knkXMge+cUD0Q==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.IO.FileSystem.4.0.1-beta-23516.nupkg", + "runtime.win7.System.IO.FileSystem.4.0.1-beta-23516.nupkg.sha512", + "runtime.win7.System.IO.FileSystem.nuspec", + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll", + "runtimes/win7/lib/win8/_._", + "runtimes/win7/lib/wp8/_._", + "runtimes/win7/lib/wpa81/_._" + ] + }, + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "lDtnXKoI+I1e5nLLKICXPEgonWL+m1GfgA6ngSGM2n8vJqV0G/I2+SBOpbVwjafCR433w1J8K+Yszuz8LDPFGQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-beta-23516.nupkg", + "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-beta-23516.nupkg.sha512", + "runtime.win7.System.IO.FileSystem.Watcher.nuspec", + "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/_._", + "runtimes/win7/lib/win8/_._", + "runtimes/win7/lib/wp8/_._", + "runtimes/win7/lib/wpa81/_._" + ] + }, + "runtime.win7.System.Net.Primitives/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "V4bv5VTaBcy0FekQbKgJKP+c+RJhNxOacpngLGADf9kUqoNkSJLj083d4I0L5iTKMWALlAN/tfzAlRm0VxiDeA==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "ref/dotnet/_._", + "runtime.win7.System.Net.Primitives.4.0.11-beta-23516.nupkg", + "runtime.win7.System.Net.Primitives.4.0.11-beta-23516.nupkg.sha512", + "runtime.win7.System.Net.Primitives.nuspec", + "runtimes/win7/lib/netcore50/System.Net.Primitives.dll" + ] + }, + "runtime.win7.System.Private.Uri/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "dENjtxxx1L+OXWnxGRzeAD8mJC//NljPPLXNWg1H5BG6IB4YTLzBSzfeCOZQVpQaKfCYE7Mzjq12uCVZpBG4vg==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Private.Uri.4.0.1-beta-23516.nupkg", + "runtime.win7.System.Private.Uri.4.0.1-beta-23516.nupkg.sha512", + "runtime.win7.System.Private.Uri.nuspec", + "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll", + "runtimes/win7/lib/netcore50/System.Private.Uri.dll", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll" + ] + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "Jm+LAzN7CZl1BZSxz4TsMBNy1rHNqyY/1+jxZf3BpF7vkPlWRXa/vSfY0lZJZdy4Doxa893bmcCf9pZNsJU16Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/_._", + "runtime.win7.System.Runtime.Extensions.4.0.11-beta-23516.nupkg", + "runtime.win7.System.Runtime.Extensions.4.0.11-beta-23516.nupkg.sha512", + "runtime.win7.System.Runtime.Extensions.nuspec", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "MRAq2N94D6wKC5UFbUZVWcOz8YpknDj6ttOpF5R3sxBdZJWI6qUngnGdHE2eYAuCerHlLV/0m4WJxoSaQHDNTA==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-beta-23516.nupkg", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-beta-23516.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Algorithms.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "9afZgu5/BbwC/K82/Y4pmj4ta/xKP01iF847tZbzW6gqW9RX6H0acjLRoWT1JbQgydiUFZ81SRiwlyCbxP0nYw==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-beta-23516.nupkg", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-beta-23516.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Encoding.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll", + "runtimes/win7/lib/net/_._" + ] + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "vflvBQj1eY1A7DsqqKzWwGvSkdedq7bSNEHrzsuY9K5sxNRiCRFf0jAIwvQPvshx0oHxVya3dR1YYNUFTLd8tg==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-beta-23516.nupkg", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-beta-23516.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.X509Certificates.nuspec", + "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win7/lib/net/_._", + "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "runtime.win7.System.Threading/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "paSNXQ5Y6Exu3OpekooyMJFQ8mitn69fGO5Br3XLIfQ1KiMYVmRf+o6dMprC0SpPROVCiCxdUaJx5XkDEVL3uA==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Threading.4.0.11-beta-23516.nupkg", + "runtime.win7.System.Threading.4.0.11-beta-23516.nupkg.sha512", + "runtime.win7.System.Threading.nuspec", + "runtimes/win7/lib/DNXCore50/System.Threading.dll", + "runtimes/win7/lib/netcore50/System.Threading.dll", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "runtime.win7-x64.System.IO.Compression.clrcompression/4.0.1-beta-23409": { + "type": "package", + "sha512": "QMa7nSASFZZOoM+b0sKDVCTx5j5TKTScQNvt48Fk4VYMTTnyscR6nHxaKqmhsbPgXqDyQF7G56S2xJd6KtderA==", + "files": [ + "runtime.win7-x64.System.IO.Compression.clrcompression.4.0.1-beta-23409.nupkg", + "runtime.win7-x64.System.IO.Compression.clrcompression.4.0.1-beta-23409.nupkg.sha512", + "runtime.win7-x64.System.IO.Compression.clrcompression.nuspec", + "runtimes/win10-x64/native/ClrCompression.dll", + "runtimes/win7-x64/native/clrcompression.dll" + ] + }, + "runtime.win7-x86.System.IO.Compression.clrcompression/4.0.1-beta-23409": { + "type": "package", + "sha512": "uYbTF8tljtG8xtU7oAYHc18LDnzjZ/ukCnKEnSnn4uMMwxXvIoNgLKgASw9GmwV9KC0pC8RGdZTBT+ypph2/mw==", + "files": [ + "runtime.win7-x86.System.IO.Compression.clrcompression.4.0.1-beta-23409.nupkg", + "runtime.win7-x86.System.IO.Compression.clrcompression.4.0.1-beta-23409.nupkg.sha512", + "runtime.win7-x86.System.IO.Compression.clrcompression.nuspec", + "runtimes/win10-x86/native/ClrCompression.dll", + "runtimes/win7-x86/native/clrcompression.dll" + ] + }, + "System.AppContext/4.0.0": { + "type": "package", + "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.AppContext.xml", + "ref/dotnet/es/System.AppContext.xml", + "ref/dotnet/fr/System.AppContext.xml", + "ref/dotnet/it/System.AppContext.xml", + "ref/dotnet/ja/System.AppContext.xml", + "ref/dotnet/ko/System.AppContext.xml", + "ref/dotnet/ru/System.AppContext.xml", + "ref/dotnet/System.AppContext.dll", + "ref/dotnet/System.AppContext.xml", + "ref/dotnet/zh-hans/System.AppContext.xml", + "ref/dotnet/zh-hant/System.AppContext.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.AppContext.4.0.0.nupkg", + "System.AppContext.4.0.0.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "TDca4OETV0kkXdpkyivMw1/EKKD1Sa/NVAjirw+fA0LZ37jLDYX+KhPPUQxgkvhCe/SVvxETD5Viiudza2k7OQ==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Collections.xml", + "ref/dotnet5.1/es/System.Collections.xml", + "ref/dotnet5.1/fr/System.Collections.xml", + "ref/dotnet5.1/it/System.Collections.xml", + "ref/dotnet5.1/ja/System.Collections.xml", + "ref/dotnet5.1/ko/System.Collections.xml", + "ref/dotnet5.1/ru/System.Collections.xml", + "ref/dotnet5.1/System.Collections.dll", + "ref/dotnet5.1/System.Collections.xml", + "ref/dotnet5.1/zh-hans/System.Collections.xml", + "ref/dotnet5.1/zh-hant/System.Collections.xml", + "ref/dotnet5.4/de/System.Collections.xml", + "ref/dotnet5.4/es/System.Collections.xml", + "ref/dotnet5.4/fr/System.Collections.xml", + "ref/dotnet5.4/it/System.Collections.xml", + "ref/dotnet5.4/ja/System.Collections.xml", + "ref/dotnet5.4/ko/System.Collections.xml", + "ref/dotnet5.4/ru/System.Collections.xml", + "ref/dotnet5.4/System.Collections.dll", + "ref/dotnet5.4/System.Collections.xml", + "ref/dotnet5.4/zh-hans/System.Collections.xml", + "ref/dotnet5.4/zh-hant/System.Collections.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.11-beta-23516.nupkg", + "System.Collections.4.0.11-beta-23516.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "e4FscEk9ugPXPKEIQFYBS/i+0KAkKf/IEe26fiOnqk8JVZQuCLO3gJmJ+IiVD1TxJjvVmh+tayQuo2svVzZV7g==", + "files": [ + "lib/dotnet5.4/System.Collections.Concurrent.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.2/de/System.Collections.Concurrent.xml", + "ref/dotnet5.2/es/System.Collections.Concurrent.xml", + "ref/dotnet5.2/fr/System.Collections.Concurrent.xml", + "ref/dotnet5.2/it/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ja/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ko/System.Collections.Concurrent.xml", + "ref/dotnet5.2/ru/System.Collections.Concurrent.xml", + "ref/dotnet5.2/System.Collections.Concurrent.dll", + "ref/dotnet5.2/System.Collections.Concurrent.xml", + "ref/dotnet5.2/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet5.2/zh-hant/System.Collections.Concurrent.xml", + "ref/dotnet5.4/de/System.Collections.Concurrent.xml", + "ref/dotnet5.4/es/System.Collections.Concurrent.xml", + "ref/dotnet5.4/fr/System.Collections.Concurrent.xml", + "ref/dotnet5.4/it/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ja/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ko/System.Collections.Concurrent.xml", + "ref/dotnet5.4/ru/System.Collections.Concurrent.xml", + "ref/dotnet5.4/System.Collections.Concurrent.dll", + "ref/dotnet5.4/System.Collections.Concurrent.xml", + "ref/dotnet5.4/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet5.4/zh-hant/System.Collections.Concurrent.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "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/System.Collections.Concurrent.dll", + "ref/netcore50/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.Concurrent.4.0.11-beta-23516.nupkg", + "System.Collections.Concurrent.4.0.11-beta-23516.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "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/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.NonGeneric.4.0.0.nupkg", + "System.Collections.NonGeneric.4.0.0.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.0.0": { + "type": "package", + "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==", + "files": [ + "lib/dotnet/System.Collections.Specialized.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Collections.Specialized.xml", + "ref/dotnet/es/System.Collections.Specialized.xml", + "ref/dotnet/fr/System.Collections.Specialized.xml", + "ref/dotnet/it/System.Collections.Specialized.xml", + "ref/dotnet/ja/System.Collections.Specialized.xml", + "ref/dotnet/ko/System.Collections.Specialized.xml", + "ref/dotnet/ru/System.Collections.Specialized.xml", + "ref/dotnet/System.Collections.Specialized.dll", + "ref/dotnet/System.Collections.Specialized.xml", + "ref/dotnet/zh-hans/System.Collections.Specialized.xml", + "ref/dotnet/zh-hant/System.Collections.Specialized.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.Specialized.4.0.0.nupkg", + "System.Collections.Specialized.4.0.0.nupkg.sha512", + "System.Collections.Specialized.nuspec" + ] + }, + "System.ComponentModel/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "PdAC1M7yT9EBtLpXICbOtPDpDjYSlV2RXyQ7AiKyBD7mV1DNTIK7tcM1056GIOlMoJDDdxU5Z3otBeAM8v5PAg==", + "files": [ + "lib/dotnet5.4/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.ComponentModel.xml", + "ref/dotnet5.1/es/System.ComponentModel.xml", + "ref/dotnet5.1/fr/System.ComponentModel.xml", + "ref/dotnet5.1/it/System.ComponentModel.xml", + "ref/dotnet5.1/ja/System.ComponentModel.xml", + "ref/dotnet5.1/ko/System.ComponentModel.xml", + "ref/dotnet5.1/ru/System.ComponentModel.xml", + "ref/dotnet5.1/System.ComponentModel.dll", + "ref/dotnet5.1/System.ComponentModel.xml", + "ref/dotnet5.1/zh-hans/System.ComponentModel.xml", + "ref/dotnet5.1/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.1-beta-23516.nupkg", + "System.ComponentModel.4.0.1-beta-23516.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "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/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.EventBasedAsync.4.0.10.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==", + "files": [ + "lib/dotnet/System.ComponentModel.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ComponentModel.Primitives.xml", + "ref/dotnet/es/System.ComponentModel.Primitives.xml", + "ref/dotnet/fr/System.ComponentModel.Primitives.xml", + "ref/dotnet/it/System.ComponentModel.Primitives.xml", + "ref/dotnet/ja/System.ComponentModel.Primitives.xml", + "ref/dotnet/ko/System.ComponentModel.Primitives.xml", + "ref/dotnet/ru/System.ComponentModel.Primitives.xml", + "ref/dotnet/System.ComponentModel.Primitives.dll", + "ref/dotnet/System.ComponentModel.Primitives.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Primitives.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.ComponentModel.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.Primitives.4.0.0.nupkg", + "System.ComponentModel.Primitives.4.0.0.nupkg.sha512", + "System.ComponentModel.Primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "qDsYqQxdMF/hu9yTRHYU3qIYmMATKvVeytFd0GEnZwOMrvv5EQj2IhhYccIifukAo7eTfQSMCAZkn9A9XPOtaQ==", + "files": [ + "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/es/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/fr/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/it/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ja/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ko/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/ru/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll", + "ref/dotnet5.1/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/dotnet5.1/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.ComponentModel.TypeConverter.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.TypeConverter.4.0.1-beta-23516.nupkg", + "System.ComponentModel.TypeConverter.4.0.1-beta-23516.nupkg.sha512", + "System.ComponentModel.TypeConverter.nuspec" + ] + }, + "System.Console/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "0YTzoNamTU+6qfZEYtMuGjtkJHB1MEDyFsZ5L/x97GkZO3Bw91uwdPh0DkFwQ6E8KaQTgZAecSXoboUHAcdSLA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Console.xml", + "ref/dotnet5.1/es/System.Console.xml", + "ref/dotnet5.1/fr/System.Console.xml", + "ref/dotnet5.1/it/System.Console.xml", + "ref/dotnet5.1/ja/System.Console.xml", + "ref/dotnet5.1/ko/System.Console.xml", + "ref/dotnet5.1/ru/System.Console.xml", + "ref/dotnet5.1/System.Console.dll", + "ref/dotnet5.1/System.Console.xml", + "ref/dotnet5.1/zh-hans/System.Console.xml", + "ref/dotnet5.1/zh-hant/System.Console.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Console.4.0.0-beta-23516.nupkg", + "System.Console.4.0.0-beta-23516.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Data.Common/4.0.0": { + "type": "package", + "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Data.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Data.Common.4.0.0.nupkg", + "System.Data.Common.4.0.0.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "iG9kHAu2B251lTHH2B4qXjctRkiEuCov8fDiSqZAuqFTMegcZ27wLKWAQxXANs1A5PmqSPzrfro+mBUxqlaCVA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/es/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/it/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/System.Diagnostics.Contracts.dll", + "ref/dotnet5.1/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Contracts.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Contracts.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Contracts.xml", + "ref/netcore50/es/System.Diagnostics.Contracts.xml", + "ref/netcore50/fr/System.Diagnostics.Contracts.xml", + "ref/netcore50/it/System.Diagnostics.Contracts.xml", + "ref/netcore50/ja/System.Diagnostics.Contracts.xml", + "ref/netcore50/ko/System.Diagnostics.Contracts.xml", + "ref/netcore50/ru/System.Diagnostics.Contracts.xml", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.1-beta-23516.nupkg", + "System.Diagnostics.Contracts.4.0.1-beta-23516.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "wK52HdO2OW7P6hVk/Q9FCnKE9WcTDA3Yio1D8xmeE+6nfOqwWw6d+jVjgn5TSuDghudJK9xq77wseiGa6i7OTQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/es/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/it/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/System.Diagnostics.Debug.dll", + "ref/dotnet5.1/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/de/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/es/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/fr/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/it/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ja/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ko/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/ru/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/System.Diagnostics.Debug.dll", + "ref/dotnet5.4/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet5.4/zh-hant/System.Diagnostics.Debug.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Diagnostics.Debug.4.0.11-beta-23516.nupkg", + "System.Diagnostics.Debug.4.0.11-beta-23516.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "WHVhr5/p8UDjqNV7l9PCxZgOufE2tO4XOWva9pau9c7PzJJTdB1By6scO5dgHLpmlB/u4y27Y9AzT8AqtG8sxw==", + "files": [ + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll", + "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "System.Diagnostics.DiagnosticSource.4.0.0-beta-23516.nupkg", + "System.Diagnostics.DiagnosticSource.4.0.0-beta-23516.nupkg.sha512", + "System.Diagnostics.DiagnosticSource.nuspec" + ] + }, + "System.Diagnostics.StackTrace/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "yuZ7s6ttGN7RHK/RRWIz/O7yctfBLUFCUZYcwB4ZrKI6gmwfdGI5wlrNEV1IJe3dW4t+Xh1F+eaQu7FZdW8lcA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.StackTrace.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/netcore50/System.Diagnostics.StackTrace.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.1/es/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.1/fr/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.1/it/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.1/ja/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.1/ko/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.1/ru/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.1/System.Diagnostics.StackTrace.dll", + "ref/dotnet5.1/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "System.Diagnostics.StackTrace.4.0.1-beta-23516.nupkg", + "System.Diagnostics.StackTrace.4.0.1-beta-23516.nupkg.sha512", + "System.Diagnostics.StackTrace.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "E8oQK7C7tScD+2oTpsx36a60BWTjBpw/RLzoll4niFX39EF/ZBCYhRx7SoniwF9ql3iKG0UWY/p0VmaCh/Y9Nw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/es/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/fr/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/it/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ja/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ko/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/ru/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/System.Diagnostics.Tools.dll", + "ref/dotnet5.1/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.1-beta-23516.nupkg", + "System.Diagnostics.Tools.4.0.1-beta-23516.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "OIWB5pvMqOdCraAtiJBhRahrsnP2sNaXbCZNdAadzwiPLzRI7EvLTc7/NlkFDxm3I6YKVGxnJ5aO+YJ/XPC8yw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Diagnostics.TraceSource.xml", + "ref/dotnet5.1/es/System.Diagnostics.TraceSource.xml", + "ref/dotnet5.1/fr/System.Diagnostics.TraceSource.xml", + "ref/dotnet5.1/it/System.Diagnostics.TraceSource.xml", + "ref/dotnet5.1/ja/System.Diagnostics.TraceSource.xml", + "ref/dotnet5.1/ko/System.Diagnostics.TraceSource.xml", + "ref/dotnet5.1/ru/System.Diagnostics.TraceSource.xml", + "ref/dotnet5.1/System.Diagnostics.TraceSource.dll", + "ref/dotnet5.1/System.Diagnostics.TraceSource.xml", + "ref/dotnet5.1/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/dotnet5.1/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Diagnostics.TraceSource.4.0.0-beta-23516.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23516.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.0": { + "type": "package", + "sha512": "tzqQJPgD4bKs0eE5Gx9HEsxiHSBGcL42PImkjhwXTQK6iQbLTTB9mi+G7mUyEjlH8LUcm7F5QHEs+O+LpruOrQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "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/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Diagnostics.Tracing.4.0.0.nupkg", + "System.Diagnostics.Tracing.4.0.0.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "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/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20.nupkg", + "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "ypkxS0e+yUw7F6JEwuB22u0qqruMeZFOmtcImh2efDHpTAuhF2FOqCDJ7f4qLf9yomVvB4kjkZ6xGunbIQryxQ==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/es/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/fr/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/it/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/ja/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/ko/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/ru/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/System.Dynamic.Runtime.dll", + "ref/dotnet5.1/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet5.1/zh-hant/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/de/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/es/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/fr/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/it/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/ja/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/ko/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/ru/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/System.Dynamic.Runtime.dll", + "ref/dotnet5.4/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet5.4/zh-hant/System.Dynamic.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.11-beta-23516.nupkg", + "System.Dynamic.Runtime.4.0.11-beta-23516.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "htoF4cS3WhCkU3HloMj3mz+h2FHnF8Hz0po/26otT5e46LlJ8p7LpFpxckxVviyYg9Fab9gr8aIB0ZDN9Cjpig==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Globalization.xml", + "ref/dotnet5.1/es/System.Globalization.xml", + "ref/dotnet5.1/fr/System.Globalization.xml", + "ref/dotnet5.1/it/System.Globalization.xml", + "ref/dotnet5.1/ja/System.Globalization.xml", + "ref/dotnet5.1/ko/System.Globalization.xml", + "ref/dotnet5.1/ru/System.Globalization.xml", + "ref/dotnet5.1/System.Globalization.dll", + "ref/dotnet5.1/System.Globalization.xml", + "ref/dotnet5.1/zh-hans/System.Globalization.xml", + "ref/dotnet5.1/zh-hant/System.Globalization.xml", + "ref/dotnet5.4/de/System.Globalization.xml", + "ref/dotnet5.4/es/System.Globalization.xml", + "ref/dotnet5.4/fr/System.Globalization.xml", + "ref/dotnet5.4/it/System.Globalization.xml", + "ref/dotnet5.4/ja/System.Globalization.xml", + "ref/dotnet5.4/ko/System.Globalization.xml", + "ref/dotnet5.4/ru/System.Globalization.xml", + "ref/dotnet5.4/System.Globalization.dll", + "ref/dotnet5.4/System.Globalization.xml", + "ref/dotnet5.4/zh-hans/System.Globalization.xml", + "ref/dotnet5.4/zh-hant/System.Globalization.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.11-beta-23516.nupkg", + "System.Globalization.4.0.11-beta-23516.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/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/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0.nupkg", + "System.Globalization.Calendars.4.0.0.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "fRlxcftQ0sxalExgrmSp3AL6srJJQQfuLEoGKQbMAWmaeK0/KkshB01hMWVVuQ36bOg3Alr+By9v2ULsIOLRkw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Globalization.Extensions.xml", + "ref/dotnet5.1/es/System.Globalization.Extensions.xml", + "ref/dotnet5.1/fr/System.Globalization.Extensions.xml", + "ref/dotnet5.1/it/System.Globalization.Extensions.xml", + "ref/dotnet5.1/ja/System.Globalization.Extensions.xml", + "ref/dotnet5.1/ko/System.Globalization.Extensions.xml", + "ref/dotnet5.1/ru/System.Globalization.Extensions.xml", + "ref/dotnet5.1/System.Globalization.Extensions.dll", + "ref/dotnet5.1/System.Globalization.Extensions.xml", + "ref/dotnet5.1/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet5.1/zh-hant/System.Globalization.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Globalization.Extensions.4.0.1-beta-23516.nupkg", + "System.Globalization.Extensions.4.0.1-beta-23516.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "dR1DaWrF0zsV2z/GVs8xVvMds6xu0ykuwv+VPou8wbpJ1XxGBK9g6v5F84DWL8Q1qi+6Kyb56wbZYdYQO8OMew==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.IO.xml", + "ref/dotnet5.1/es/System.IO.xml", + "ref/dotnet5.1/fr/System.IO.xml", + "ref/dotnet5.1/it/System.IO.xml", + "ref/dotnet5.1/ja/System.IO.xml", + "ref/dotnet5.1/ko/System.IO.xml", + "ref/dotnet5.1/ru/System.IO.xml", + "ref/dotnet5.1/System.IO.dll", + "ref/dotnet5.1/System.IO.xml", + "ref/dotnet5.1/zh-hans/System.IO.xml", + "ref/dotnet5.1/zh-hant/System.IO.xml", + "ref/dotnet5.4/de/System.IO.xml", + "ref/dotnet5.4/es/System.IO.xml", + "ref/dotnet5.4/fr/System.IO.xml", + "ref/dotnet5.4/it/System.IO.xml", + "ref/dotnet5.4/ja/System.IO.xml", + "ref/dotnet5.4/ko/System.IO.xml", + "ref/dotnet5.4/ru/System.IO.xml", + "ref/dotnet5.4/System.IO.dll", + "ref/dotnet5.4/System.IO.xml", + "ref/dotnet5.4/zh-hans/System.IO.xml", + "ref/dotnet5.4/zh-hant/System.IO.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.11-beta-23516.nupkg", + "System.IO.4.0.11-beta-23516.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.1-beta-23409": { + "type": "package", + "sha512": "zICw1/9Hmsv6JiU3RHPzwKf3py7pyO6vCmZQDjuTCgjRQuDPYG4ok/7X6nWX+CXhgVpq8wEnkXh9DmRwlltQ5g==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.Compression.4.0.1-beta-23409.nupkg", + "System.IO.Compression.4.0.1-beta-23409.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "KOYNQ6FeLQh0HdHVlp6IRjRGPCjyFvZRKfhYSDFi7DR0EHY3cC2rvfVj5HWJEW5KlSaa01Ct25m06yVnqSxwOQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.4/de/System.IO.FileSystem.xml", + "ref/dotnet5.4/es/System.IO.FileSystem.xml", + "ref/dotnet5.4/fr/System.IO.FileSystem.xml", + "ref/dotnet5.4/it/System.IO.FileSystem.xml", + "ref/dotnet5.4/ja/System.IO.FileSystem.xml", + "ref/dotnet5.4/ko/System.IO.FileSystem.xml", + "ref/dotnet5.4/ru/System.IO.FileSystem.xml", + "ref/dotnet5.4/System.IO.FileSystem.dll", + "ref/dotnet5.4/System.IO.FileSystem.xml", + "ref/dotnet5.4/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet5.4/zh-hant/System.IO.FileSystem.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.FileSystem.4.0.1-beta-23516.nupkg", + "System.IO.FileSystem.4.0.1-beta-23516.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "vaT0Coz/K9ZnuxyF50D541F9N7LmHCZJZ1RgFmBAB2T4A8U+WLrtdBrmA6jf2hl/aS7+RInYOfJ1cpDFErTbfQ==", + "files": [ + "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.1/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.1/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.1/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.1/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.1/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.1/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.1/System.IO.FileSystem.Primitives.dll", + "ref/dotnet5.1/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.1/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet5.1/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.Primitives.4.0.1-beta-23516.nupkg", + "System.IO.FileSystem.Primitives.4.0.1-beta-23516.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "PYd9QHNlSf3ZnQEYFX2foGxkdKY5J8mTjdI0axB+XqiJgXRSiV4htrreKGDl7Wpu/RNjLProqQsLft039ALypw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.1/es/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.1/fr/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.1/it/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.1/ja/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.1/ko/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.1/ru/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.1/System.IO.FileSystem.Watcher.dll", + "ref/dotnet5.1/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.1/zh-hans/System.IO.FileSystem.Watcher.xml", + "ref/dotnet5.1/zh-hant/System.IO.FileSystem.Watcher.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.FileSystem.Watcher.4.0.0-beta-23516.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23516.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "uNxm2RB+kMeiKnY26iPvOtJLzTzNaAF4A2qqyzev6j8x8w2Dr+gg7LF7BHCwC55N7OirhHrAWUb3C0n4oi9qYw==", + "files": [ + "lib/dotnet5.4/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Linq.xml", + "ref/dotnet5.1/es/System.Linq.xml", + "ref/dotnet5.1/fr/System.Linq.xml", + "ref/dotnet5.1/it/System.Linq.xml", + "ref/dotnet5.1/ja/System.Linq.xml", + "ref/dotnet5.1/ko/System.Linq.xml", + "ref/dotnet5.1/ru/System.Linq.xml", + "ref/dotnet5.1/System.Linq.dll", + "ref/dotnet5.1/System.Linq.xml", + "ref/dotnet5.1/zh-hans/System.Linq.xml", + "ref/dotnet5.1/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.1-beta-23516.nupkg", + "System.Linq.4.0.1-beta-23516.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "YEl5oyF5fifLbHHP099cvb/6f2r2h1QVHzoaoINPHOZtpNec+RfqvzETXcYDIdHT7l+bBAYsBuVUkBgfQEoYfQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Linq.Expressions.xml", + "ref/dotnet5.1/es/System.Linq.Expressions.xml", + "ref/dotnet5.1/fr/System.Linq.Expressions.xml", + "ref/dotnet5.1/it/System.Linq.Expressions.xml", + "ref/dotnet5.1/ja/System.Linq.Expressions.xml", + "ref/dotnet5.1/ko/System.Linq.Expressions.xml", + "ref/dotnet5.1/ru/System.Linq.Expressions.xml", + "ref/dotnet5.1/System.Linq.Expressions.dll", + "ref/dotnet5.1/System.Linq.Expressions.xml", + "ref/dotnet5.1/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet5.1/zh-hant/System.Linq.Expressions.xml", + "ref/dotnet5.4/de/System.Linq.Expressions.xml", + "ref/dotnet5.4/es/System.Linq.Expressions.xml", + "ref/dotnet5.4/fr/System.Linq.Expressions.xml", + "ref/dotnet5.4/it/System.Linq.Expressions.xml", + "ref/dotnet5.4/ja/System.Linq.Expressions.xml", + "ref/dotnet5.4/ko/System.Linq.Expressions.xml", + "ref/dotnet5.4/ru/System.Linq.Expressions.xml", + "ref/dotnet5.4/System.Linq.Expressions.dll", + "ref/dotnet5.4/System.Linq.Expressions.xml", + "ref/dotnet5.4/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet5.4/zh-hant/System.Linq.Expressions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Linq.Expressions.4.0.11-beta-23516.nupkg", + "System.Linq.Expressions.4.0.11-beta-23516.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0": { + "type": "package", + "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", + "files": [ + "lib/dotnet/System.Linq.Queryable.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.Queryable.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.Queryable.xml", + "ref/dotnet/es/System.Linq.Queryable.xml", + "ref/dotnet/fr/System.Linq.Queryable.xml", + "ref/dotnet/it/System.Linq.Queryable.xml", + "ref/dotnet/ja/System.Linq.Queryable.xml", + "ref/dotnet/ko/System.Linq.Queryable.xml", + "ref/dotnet/ru/System.Linq.Queryable.xml", + "ref/dotnet/System.Linq.Queryable.dll", + "ref/dotnet/System.Linq.Queryable.xml", + "ref/dotnet/zh-hans/System.Linq.Queryable.xml", + "ref/dotnet/zh-hant/System.Linq.Queryable.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.Queryable.dll", + "ref/netcore50/System.Linq.Queryable.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.Queryable.4.0.0.nupkg", + "System.Linq.Queryable.4.0.0.nupkg.sha512", + "System.Linq.Queryable.nuspec" + ] + }, + "System.Net.Http/4.0.0": { + "type": "package", + "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Net.Http.xml", + "ref/dotnet/es/System.Net.Http.xml", + "ref/dotnet/fr/System.Net.Http.xml", + "ref/dotnet/it/System.Net.Http.xml", + "ref/dotnet/ja/System.Net.Http.xml", + "ref/dotnet/ko/System.Net.Http.xml", + "ref/dotnet/ru/System.Net.Http.xml", + "ref/dotnet/System.Net.Http.dll", + "ref/dotnet/System.Net.Http.xml", + "ref/dotnet/zh-hans/System.Net.Http.xml", + "ref/dotnet/zh-hant/System.Net.Http.xml", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Net.Http.4.0.0.nupkg", + "System.Net.Http.4.0.0.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "lEMwORLJNk7tEAO+4RJ/aPjF2KlismwYxCYgqJZza3ArRznAqrzKeCpcnBlo3zJPHjR1tSNhRWk9SLRGGV2K3Q==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Net.Primitives.xml", + "ref/dotnet5.1/es/System.Net.Primitives.xml", + "ref/dotnet5.1/fr/System.Net.Primitives.xml", + "ref/dotnet5.1/it/System.Net.Primitives.xml", + "ref/dotnet5.1/ja/System.Net.Primitives.xml", + "ref/dotnet5.1/ko/System.Net.Primitives.xml", + "ref/dotnet5.1/ru/System.Net.Primitives.xml", + "ref/dotnet5.1/System.Net.Primitives.dll", + "ref/dotnet5.1/System.Net.Primitives.xml", + "ref/dotnet5.1/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.1/zh-hant/System.Net.Primitives.xml", + "ref/dotnet5.2/de/System.Net.Primitives.xml", + "ref/dotnet5.2/es/System.Net.Primitives.xml", + "ref/dotnet5.2/fr/System.Net.Primitives.xml", + "ref/dotnet5.2/it/System.Net.Primitives.xml", + "ref/dotnet5.2/ja/System.Net.Primitives.xml", + "ref/dotnet5.2/ko/System.Net.Primitives.xml", + "ref/dotnet5.2/ru/System.Net.Primitives.xml", + "ref/dotnet5.2/System.Net.Primitives.dll", + "ref/dotnet5.2/System.Net.Primitives.xml", + "ref/dotnet5.2/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.2/zh-hant/System.Net.Primitives.xml", + "ref/dotnet5.4/de/System.Net.Primitives.xml", + "ref/dotnet5.4/es/System.Net.Primitives.xml", + "ref/dotnet5.4/fr/System.Net.Primitives.xml", + "ref/dotnet5.4/it/System.Net.Primitives.xml", + "ref/dotnet5.4/ja/System.Net.Primitives.xml", + "ref/dotnet5.4/ko/System.Net.Primitives.xml", + "ref/dotnet5.4/ru/System.Net.Primitives.xml", + "ref/dotnet5.4/System.Net.Primitives.dll", + "ref/dotnet5.4/System.Net.Primitives.xml", + "ref/dotnet5.4/zh-hans/System.Net.Primitives.xml", + "ref/dotnet5.4/zh-hant/System.Net.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Net.Primitives.4.0.11-beta-23516.nupkg", + "System.Net.Primitives.4.0.11-beta-23516.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Requests/4.0.10": { + "type": "package", + "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==", + "files": [ + "lib/dotnet/System.Net.Requests.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Net.Requests.xml", + "ref/dotnet/es/System.Net.Requests.xml", + "ref/dotnet/fr/System.Net.Requests.xml", + "ref/dotnet/it/System.Net.Requests.xml", + "ref/dotnet/ja/System.Net.Requests.xml", + "ref/dotnet/ko/System.Net.Requests.xml", + "ref/dotnet/ru/System.Net.Requests.xml", + "ref/dotnet/System.Net.Requests.dll", + "ref/dotnet/System.Net.Requests.xml", + "ref/dotnet/zh-hans/System.Net.Requests.xml", + "ref/dotnet/zh-hant/System.Net.Requests.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.Requests.4.0.10.nupkg", + "System.Net.Requests.4.0.10.nupkg.sha512", + "System.Net.Requests.nuspec" + ] + }, + "System.Net.Sockets/4.0.0": { + "type": "package", + "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/netcore50/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Net.Sockets.xml", + "ref/dotnet/es/System.Net.Sockets.xml", + "ref/dotnet/fr/System.Net.Sockets.xml", + "ref/dotnet/it/System.Net.Sockets.xml", + "ref/dotnet/ja/System.Net.Sockets.xml", + "ref/dotnet/ko/System.Net.Sockets.xml", + "ref/dotnet/ru/System.Net.Sockets.xml", + "ref/dotnet/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.xml", + "ref/dotnet/zh-hans/System.Net.Sockets.xml", + "ref/dotnet/zh-hant/System.Net.Sockets.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.Sockets.4.0.0.nupkg", + "System.Net.Sockets.4.0.0.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.Net.WebHeaderCollection/4.0.0": { + "type": "package", + "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==", + "files": [ + "lib/dotnet/System.Net.WebHeaderCollection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Net.WebHeaderCollection.xml", + "ref/dotnet/es/System.Net.WebHeaderCollection.xml", + "ref/dotnet/fr/System.Net.WebHeaderCollection.xml", + "ref/dotnet/it/System.Net.WebHeaderCollection.xml", + "ref/dotnet/ja/System.Net.WebHeaderCollection.xml", + "ref/dotnet/ko/System.Net.WebHeaderCollection.xml", + "ref/dotnet/ru/System.Net.WebHeaderCollection.xml", + "ref/dotnet/System.Net.WebHeaderCollection.dll", + "ref/dotnet/System.Net.WebHeaderCollection.xml", + "ref/dotnet/zh-hans/System.Net.WebHeaderCollection.xml", + "ref/dotnet/zh-hant/System.Net.WebHeaderCollection.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.WebHeaderCollection.4.0.0.nupkg", + "System.Net.WebHeaderCollection.4.0.0.nupkg.sha512", + "System.Net.WebHeaderCollection.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "aMSs8kyRS5CNa20h8XWv6IOcZHqOZOHBO/rEOjP+rS+dOmn0tBu5zhJJdkhzb4GS9qAikjwc7UXB0MK3LnuBTA==", + "files": [ + "lib/dotnet5.4/System.Net.WebSockets.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.WebSockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Net.WebSockets.xml", + "ref/dotnet5.1/es/System.Net.WebSockets.xml", + "ref/dotnet5.1/fr/System.Net.WebSockets.xml", + "ref/dotnet5.1/it/System.Net.WebSockets.xml", + "ref/dotnet5.1/ja/System.Net.WebSockets.xml", + "ref/dotnet5.1/ko/System.Net.WebSockets.xml", + "ref/dotnet5.1/ru/System.Net.WebSockets.xml", + "ref/dotnet5.1/System.Net.WebSockets.dll", + "ref/dotnet5.1/System.Net.WebSockets.xml", + "ref/dotnet5.1/zh-hans/System.Net.WebSockets.xml", + "ref/dotnet5.1/zh-hant/System.Net.WebSockets.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.WebSockets.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.WebSockets.4.0.0-beta-23516.nupkg", + "System.Net.WebSockets.4.0.0-beta-23516.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ObjectModel.4.0.10.nupkg", + "System.ObjectModel.4.0.10.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.DataContractSerialization/4.0.0": { + "type": "package", + "sha512": "uQvzoXHXHn/9YqUmPtgD8ZPJIlBuuL3QHegbuik97W/umoI28fOnGLnvjRHhju1VMWvFLRQoh7uZkBaoZ+KpVQ==", + "files": [ + "lib/DNXCore50/System.Private.DataContractSerialization.dll", + "lib/netcore50/System.Private.DataContractSerialization.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll", + "System.Private.DataContractSerialization.4.0.0.nupkg", + "System.Private.DataContractSerialization.4.0.0.nupkg.sha512", + "System.Private.DataContractSerialization.nuspec" + ] + }, + "System.Private.Networking/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "YjBc3HcJBVtoeFNe9cY33dyTGME2T7B5mwuh/wBpxuGuvBMBWqrRKWkSOmnUT7ON7/U2SkpVeM5FCeqE3QRMNw==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.1-beta-23516.nupkg", + "System.Private.Networking.4.0.1-beta-23516.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.ServiceModel/4.0.0": { + "type": "package", + "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==", + "files": [ + "lib/DNXCore50/System.Private.ServiceModel.dll", + "lib/netcore50/System.Private.ServiceModel.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.ServiceModel.4.0.0.nupkg", + "System.Private.ServiceModel.4.0.0.nupkg.sha512", + "System.Private.ServiceModel.nuspec" + ] + }, + "System.Private.Uri/4.0.1-beta-23516": { + "type": "package", + "sha512": "PISxTW5FSZw8cQ8DOvq2pHHz48mok3ex0/QU2gcHG5PACvobxaXQl2oR345vqOx6C15l10bJPVkKZlgi2Ic4KQ==", + "files": [ + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtime.json", + "System.Private.Uri.4.0.1-beta-23516.nupkg", + "System.Private.Uri.4.0.1-beta-23516.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.1.0-beta-23225.nupkg", + "System.Reflection.4.1.0-beta-23225.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.DispatchProxy/4.0.0": { + "type": "package", + "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", + "files": [ + "lib/DNXCore50/System.Reflection.DispatchProxy.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.DispatchProxy.dll", + "lib/netcore50/System.Reflection.DispatchProxy.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Reflection.DispatchProxy.xml", + "ref/dotnet/es/System.Reflection.DispatchProxy.xml", + "ref/dotnet/fr/System.Reflection.DispatchProxy.xml", + "ref/dotnet/it/System.Reflection.DispatchProxy.xml", + "ref/dotnet/ja/System.Reflection.DispatchProxy.xml", + "ref/dotnet/ko/System.Reflection.DispatchProxy.xml", + "ref/dotnet/ru/System.Reflection.DispatchProxy.xml", + "ref/dotnet/System.Reflection.DispatchProxy.dll", + "ref/dotnet/System.Reflection.DispatchProxy.xml", + "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "System.Reflection.DispatchProxy.4.0.0.nupkg", + "System.Reflection.DispatchProxy.4.0.0.nupkg.sha512", + "System.Reflection.DispatchProxy.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/xamarinmac20/_._", + "System.Reflection.Emit.4.0.0.nupkg", + "System.Reflection.Emit.4.0.0.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", + "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/System.Reflection.Emit.Lightweight.dll", + "ref/dotnet/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.Lightweight.4.0.0.nupkg", + "System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512", + "System.Reflection.Emit.Lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "CiaYbkU2dzOSTSB7X/xLvlae3rop8xz62XjflUSnyCaRPB5XaQR4JasHW07/lRKJowt67Km7K1LMpYEmoRku8w==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Reflection.Extensions.xml", + "ref/dotnet5.1/es/System.Reflection.Extensions.xml", + "ref/dotnet5.1/fr/System.Reflection.Extensions.xml", + "ref/dotnet5.1/it/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ja/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ko/System.Reflection.Extensions.xml", + "ref/dotnet5.1/ru/System.Reflection.Extensions.xml", + "ref/dotnet5.1/System.Reflection.Extensions.dll", + "ref/dotnet5.1/System.Reflection.Extensions.xml", + "ref/dotnet5.1/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet5.1/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.1-beta-23516.nupkg", + "System.Reflection.Extensions.4.0.1-beta-23516.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0.nupkg", + "System.Reflection.Primitives.4.0.0.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==", + "files": [ + "lib/DNXCore50/de/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/es/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/fr/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/it/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ja/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ko/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ru/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/DNXCore50/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/de/System.Reflection.TypeExtensions.xml", + "lib/net46/es/System.Reflection.TypeExtensions.xml", + "lib/net46/fr/System.Reflection.TypeExtensions.xml", + "lib/net46/it/System.Reflection.TypeExtensions.xml", + "lib/net46/ja/System.Reflection.TypeExtensions.xml", + "lib/net46/ko/System.Reflection.TypeExtensions.xml", + "lib/net46/ru/System.Reflection.TypeExtensions.xml", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.xml", + "lib/net46/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/net46/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/netcore50/de/System.Reflection.TypeExtensions.xml", + "lib/netcore50/es/System.Reflection.TypeExtensions.xml", + "lib/netcore50/fr/System.Reflection.TypeExtensions.xml", + "lib/netcore50/it/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ja/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ko/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ru/System.Reflection.TypeExtensions.xml", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.xml", + "lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/de/System.Reflection.TypeExtensions.xml", + "ref/net46/es/System.Reflection.TypeExtensions.xml", + "ref/net46/fr/System.Reflection.TypeExtensions.xml", + "ref/net46/it/System.Reflection.TypeExtensions.xml", + "ref/net46/ja/System.Reflection.TypeExtensions.xml", + "ref/net46/ko/System.Reflection.TypeExtensions.xml", + "ref/net46/ru/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.xml", + "ref/net46/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/net46/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", + "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg", + "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "d1PiB1k57GP5EJZJKnJ+LgrOQCgHPnn5oySQAy4pL2MpEDDpTyTPKv+q9aRWUA25ICXaHkWJzeTkj898ePteWQ==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/es/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/fr/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/it/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ja/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ko/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/ru/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/System.Resources.ResourceManager.dll", + "ref/dotnet5.1/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet5.1/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.1-beta-23516.nupkg", + "System.Resources.ResourceManager.4.0.1-beta-23516.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.21-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "R174ctQjJnCIVxA2Yzp1v68wfLfPSROZWrbaSBcnEzHAQbOjprBQi37aWdr5y05Pq2J/O7h6SjTsYhVOLdiRYQ==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Runtime.xml", + "ref/dotnet5.1/es/System.Runtime.xml", + "ref/dotnet5.1/fr/System.Runtime.xml", + "ref/dotnet5.1/it/System.Runtime.xml", + "ref/dotnet5.1/ja/System.Runtime.xml", + "ref/dotnet5.1/ko/System.Runtime.xml", + "ref/dotnet5.1/ru/System.Runtime.xml", + "ref/dotnet5.1/System.Runtime.dll", + "ref/dotnet5.1/System.Runtime.xml", + "ref/dotnet5.1/zh-hans/System.Runtime.xml", + "ref/dotnet5.1/zh-hant/System.Runtime.xml", + "ref/dotnet5.3/de/System.Runtime.xml", + "ref/dotnet5.3/es/System.Runtime.xml", + "ref/dotnet5.3/fr/System.Runtime.xml", + "ref/dotnet5.3/it/System.Runtime.xml", + "ref/dotnet5.3/ja/System.Runtime.xml", + "ref/dotnet5.3/ko/System.Runtime.xml", + "ref/dotnet5.3/ru/System.Runtime.xml", + "ref/dotnet5.3/System.Runtime.dll", + "ref/dotnet5.3/System.Runtime.xml", + "ref/dotnet5.3/zh-hans/System.Runtime.xml", + "ref/dotnet5.3/zh-hant/System.Runtime.xml", + "ref/dotnet5.4/de/System.Runtime.xml", + "ref/dotnet5.4/es/System.Runtime.xml", + "ref/dotnet5.4/fr/System.Runtime.xml", + "ref/dotnet5.4/it/System.Runtime.xml", + "ref/dotnet5.4/ja/System.Runtime.xml", + "ref/dotnet5.4/ko/System.Runtime.xml", + "ref/dotnet5.4/ru/System.Runtime.xml", + "ref/dotnet5.4/System.Runtime.dll", + "ref/dotnet5.4/System.Runtime.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.21-beta-23516.nupkg", + "System.Runtime.4.0.21-beta-23516.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "HX4wNPrcCV9D+jpbsJCRPuVJbcDM+JobSotQWKq40lCq0WJbJi+0lNQ/T1zHEdWcf4W2PmtMkug1rW7yKW9PiQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Runtime.Extensions.xml", + "ref/dotnet5.1/es/System.Runtime.Extensions.xml", + "ref/dotnet5.1/fr/System.Runtime.Extensions.xml", + "ref/dotnet5.1/it/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ja/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ko/System.Runtime.Extensions.xml", + "ref/dotnet5.1/ru/System.Runtime.Extensions.xml", + "ref/dotnet5.1/System.Runtime.Extensions.dll", + "ref/dotnet5.1/System.Runtime.Extensions.xml", + "ref/dotnet5.1/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet5.1/zh-hant/System.Runtime.Extensions.xml", + "ref/dotnet5.4/de/System.Runtime.Extensions.xml", + "ref/dotnet5.4/es/System.Runtime.Extensions.xml", + "ref/dotnet5.4/fr/System.Runtime.Extensions.xml", + "ref/dotnet5.4/it/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ja/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ko/System.Runtime.Extensions.xml", + "ref/dotnet5.4/ru/System.Runtime.Extensions.xml", + "ref/dotnet5.4/System.Runtime.Extensions.dll", + "ref/dotnet5.4/System.Runtime.Extensions.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Runtime.Extensions.4.0.11-beta-23516.nupkg", + "System.Runtime.Extensions.4.0.11-beta-23516.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "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/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0.nupkg", + "System.Runtime.Handles.4.0.0.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.21-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "XRWX4yFPKQ3t3hbPReLB9d2ViTuGqMLYHGcuWteIYgoIaKtHp7Uae2xHjiUG/QZbVN6vUp+KnL04aIi5dOj8lQ==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.2/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/System.Runtime.InteropServices.dll", + "ref/dotnet5.2/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/System.Runtime.InteropServices.dll", + "ref/dotnet5.3/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/de/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/es/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/fr/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/it/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ja/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ko/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/ru/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/System.Runtime.InteropServices.dll", + "ref/dotnet5.4/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.InteropServices.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.21-beta-23516.nupkg", + "System.Runtime.InteropServices.4.0.21-beta-23516.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "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/System.Runtime.Numerics.dll", + "ref/dotnet/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.Runtime.Numerics.4.0.0.nupkg", + "System.Runtime.Numerics.4.0.0.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.0-beta-23516": { + "type": "package", + "sha512": "Dsl95PE2vyGIy9voclfTVKSqYD8O4PjsMS+TV0bM3N1xNraS2BBaChGk1stGmf04cn2/xA3cZyh80bkZL+v1/Q==", + "files": [ + "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.1/es/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.1/fr/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.1/it/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.1/ja/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.1/ko/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.1/ru/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.1/System.Runtime.Serialization.Primitives.dll", + "ref/dotnet5.1/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.1/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.1/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.4/de/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.4/es/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.4/fr/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.4/it/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.4/ja/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.4/ko/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.4/ru/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll", + "ref/dotnet5.4/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.4/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet5.4/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Runtime.Serialization.Primitives.4.1.0-beta-23516.nupkg", + "System.Runtime.Serialization.Primitives.4.1.0-beta-23516.nupkg.sha512", + "System.Runtime.Serialization.Primitives.nuspec" + ] + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "type": "package", + "sha512": "xsy7XbH8RTpKoDPNcibSGCOpujsmwUmOWAby3PssqkZFpLBXUbDO2s6JKITRjxejET2g0PK8t+mdIvu3xmUuKA==", + "files": [ + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Serialization.Xml.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/es/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/fr/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/it/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ja/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ko/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ru/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/System.Runtime.Serialization.Xml.dll", + "ref/dotnet/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll", + "System.Runtime.Serialization.Xml.4.0.10.nupkg", + "System.Runtime.Serialization.Xml.4.0.10.nupkg.sha512", + "System.Runtime.Serialization.Xml.nuspec" + ] + }, + "System.Security.Claims/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "+BDgRxwI4ClDxkLgNof/FdUF92U3+phdvsIT/CX8Ym3iOrughd7tMJIlGYzQrJSIp+0+ivHgWvOb5ytmPAgJhw==", + "files": [ + "lib/dotnet5.4/System.Security.Claims.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Security.Claims.xml", + "ref/dotnet5.1/es/System.Security.Claims.xml", + "ref/dotnet5.1/fr/System.Security.Claims.xml", + "ref/dotnet5.1/it/System.Security.Claims.xml", + "ref/dotnet5.1/ja/System.Security.Claims.xml", + "ref/dotnet5.1/ko/System.Security.Claims.xml", + "ref/dotnet5.1/ru/System.Security.Claims.xml", + "ref/dotnet5.1/System.Security.Claims.dll", + "ref/dotnet5.1/System.Security.Claims.xml", + "ref/dotnet5.1/zh-hans/System.Security.Claims.xml", + "ref/dotnet5.1/zh-hant/System.Security.Claims.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Claims.4.0.1-beta-23516.nupkg", + "System.Security.Claims.4.0.1-beta-23516.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "yvMpzC6Cd/UBHB3LU4z4jorW8nuitQfG171R8INxoUtNTZPBUmVhW4MW4adQYmwZ9IJ5C5rxnXKNfsvF5g9eog==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23516.nupkg", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23516.nupkg.sha512", + "System.Security.Cryptography.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "lAal573pXRlQSCRp3YtYDfCdcLGKHGMXAKybSw5zwxsABhz2FesQ1bo0EFHjwwiWbaK8/4Yx0NLUzNso4Y0NjA==", + "files": [ + "lib/dotnet5.4/System.Security.Cryptography.Cng.dll", + "lib/net46/System.Security.Cryptography.Cng.dll", + "ref/dotnet5.2/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "System.Security.Cryptography.Cng.4.0.0-beta-23516.nupkg", + "System.Security.Cryptography.Cng.4.0.0-beta-23516.nupkg.sha512", + "System.Security.Cryptography.Cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "CaZ6gsDZTfm1Arce5fFoRNnNdAp2/jFAYJg+UaoluaDbjLh2iyK8JmSd5GIbTH55M1FRb6phn+uHFC9UtUfStA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Csp.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/System.Security.Cryptography.Csp.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Csp.4.0.0-beta-23516.nupkg", + "System.Security.Cryptography.Csp.4.0.0-beta-23516.nupkg.sha512", + "System.Security.Cryptography.Csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "UQxu43zAZI+UIaiUCrBKnmF4A7RLDBYUgms37iSYfNvEkBAIzrAsoRKaSMocIRI1bq58ULVO2NCqMnt2qWOnoA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.1/es/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.1/fr/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.1/it/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.1/ja/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.1/ko/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.1/ru/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll", + "ref/dotnet5.1/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.1/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/dotnet5.1/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.Encoding.4.0.0-beta-23516.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23516.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "YEHmq6x6u2grEuZFAX9au+6uY8SCIkA6lu4wbrt2C71RFQKWEyO5G9+pk1v0QcNPqay/38aSm9v/BoTFNQii1Q==", + "files": [ + "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/System.Security.Cryptography.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Primitives.4.0.0-beta-23516.nupkg", + "System.Security.Cryptography.Primitives.4.0.0-beta-23516.nupkg.sha512", + "System.Security.Cryptography.Primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "IHh/XFAiku2Xih0WCN4LsZ4QC5bAiq0Qb+SIkiKHBSTHXDtQJNBuMoTZUSr51uIfuw/Fep3sW04rH4cxXmO36w==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "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/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet5.4/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/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23516.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23516.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "gErwOwetybJxJgsFuNS8H55BzQxfwHG+yZ0MjzK6Bz1rsNEIBit2e5A+uU/aQirImohcQpKNL902zMDzu8fLag==", + "files": [ + "lib/dotnet5.1/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet5.1/de/System.Security.Principal.xml", + "ref/dotnet5.1/es/System.Security.Principal.xml", + "ref/dotnet5.1/fr/System.Security.Principal.xml", + "ref/dotnet5.1/it/System.Security.Principal.xml", + "ref/dotnet5.1/ja/System.Security.Principal.xml", + "ref/dotnet5.1/ko/System.Security.Principal.xml", + "ref/dotnet5.1/ru/System.Security.Principal.xml", + "ref/dotnet5.1/System.Security.Principal.dll", + "ref/dotnet5.1/System.Security.Principal.xml", + "ref/dotnet5.1/zh-hans/System.Security.Principal.xml", + "ref/dotnet5.1/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.1-beta-23516.nupkg", + "System.Security.Principal.4.0.1-beta-23516.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.ServiceModel.Primitives/4.0.0": { + "type": "package", + "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==", + "files": [ + "lib/DNXCore50/System.ServiceModel.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/de/System.ServiceModel.Primitives.xml", + "ref/dotnet/es/System.ServiceModel.Primitives.xml", + "ref/dotnet/fr/System.ServiceModel.Primitives.xml", + "ref/dotnet/it/System.ServiceModel.Primitives.xml", + "ref/dotnet/ja/System.ServiceModel.Primitives.xml", + "ref/dotnet/ko/System.ServiceModel.Primitives.xml", + "ref/dotnet/ru/System.ServiceModel.Primitives.xml", + "ref/dotnet/System.ServiceModel.Primitives.dll", + "ref/dotnet/System.ServiceModel.Primitives.xml", + "ref/dotnet/zh-hans/System.ServiceModel.Primitives.xml", + "ref/dotnet/zh-hant/System.ServiceModel.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netcore50/System.ServiceModel.Primitives.xml", + "ref/win8/_._", + "System.ServiceModel.Primitives.4.0.0.nupkg", + "System.ServiceModel.Primitives.4.0.0.nupkg.sha512", + "System.ServiceModel.Primitives.nuspec" + ] + }, + "System.Text.Encoding/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "gk4da/Y3VReZpIeQ3UDTCknbkO/FuYKOJtP+5+Vtc07mTcPHvhgbZLXEGTTneP6yWPDWTTh20nZZMF/19YsRtA==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Text.Encoding.xml", + "ref/dotnet5.1/es/System.Text.Encoding.xml", + "ref/dotnet5.1/fr/System.Text.Encoding.xml", + "ref/dotnet5.1/it/System.Text.Encoding.xml", + "ref/dotnet5.1/ja/System.Text.Encoding.xml", + "ref/dotnet5.1/ko/System.Text.Encoding.xml", + "ref/dotnet5.1/ru/System.Text.Encoding.xml", + "ref/dotnet5.1/System.Text.Encoding.dll", + "ref/dotnet5.1/System.Text.Encoding.xml", + "ref/dotnet5.1/zh-hans/System.Text.Encoding.xml", + "ref/dotnet5.1/zh-hant/System.Text.Encoding.xml", + "ref/dotnet5.4/de/System.Text.Encoding.xml", + "ref/dotnet5.4/es/System.Text.Encoding.xml", + "ref/dotnet5.4/fr/System.Text.Encoding.xml", + "ref/dotnet5.4/it/System.Text.Encoding.xml", + "ref/dotnet5.4/ja/System.Text.Encoding.xml", + "ref/dotnet5.4/ko/System.Text.Encoding.xml", + "ref/dotnet5.4/ru/System.Text.Encoding.xml", + "ref/dotnet5.4/System.Text.Encoding.dll", + "ref/dotnet5.4/System.Text.Encoding.xml", + "ref/dotnet5.4/zh-hans/System.Text.Encoding.xml", + "ref/dotnet5.4/zh-hant/System.Text.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.11-beta-23516.nupkg", + "System.Text.Encoding.4.0.11-beta-23516.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10": { + "type": "package", + "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/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/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10.nupkg", + "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "Iz3942FXA47VxsuJTBq4aA/gevsbdMhyUnQD6Y0aHt57oP6KAwZLaxVtrRzB03yxh6oGBlvQfxBlsXWnLLj4gg==", + "files": [ + "lib/dotnet5.4/System.Text.RegularExpressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/es/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/fr/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/it/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ja/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ko/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/ru/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/System.Text.RegularExpressions.dll", + "ref/dotnet5.1/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet5.1/zh-hant/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/de/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/es/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/fr/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/it/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ja/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ko/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/ru/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/System.Text.RegularExpressions.dll", + "ref/dotnet5.4/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet5.4/zh-hant/System.Text.RegularExpressions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Text.RegularExpressions.4.0.11-beta-23516.nupkg", + "System.Text.RegularExpressions.4.0.11-beta-23516.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "AiuvOzOo6CZpIIw3yGJZcs3IhiCZcy0P/ThubazmWExERHJZoOnD/jB+Bn2gxTAD0rc/ytrRdBur9PuX6DvvvA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Threading.xml", + "ref/dotnet5.1/es/System.Threading.xml", + "ref/dotnet5.1/fr/System.Threading.xml", + "ref/dotnet5.1/it/System.Threading.xml", + "ref/dotnet5.1/ja/System.Threading.xml", + "ref/dotnet5.1/ko/System.Threading.xml", + "ref/dotnet5.1/ru/System.Threading.xml", + "ref/dotnet5.1/System.Threading.dll", + "ref/dotnet5.1/System.Threading.xml", + "ref/dotnet5.1/zh-hans/System.Threading.xml", + "ref/dotnet5.1/zh-hant/System.Threading.xml", + "ref/dotnet5.4/de/System.Threading.xml", + "ref/dotnet5.4/es/System.Threading.xml", + "ref/dotnet5.4/fr/System.Threading.xml", + "ref/dotnet5.4/it/System.Threading.xml", + "ref/dotnet5.4/ja/System.Threading.xml", + "ref/dotnet5.4/ko/System.Threading.xml", + "ref/dotnet5.4/ru/System.Threading.xml", + "ref/dotnet5.4/System.Threading.dll", + "ref/dotnet5.4/System.Threading.xml", + "ref/dotnet5.4/zh-hans/System.Threading.xml", + "ref/dotnet5.4/zh-hant/System.Threading.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Threading.4.0.11-beta-23516.nupkg", + "System.Threading.4.0.11-beta-23516.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "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/System.Threading.Overlapped.dll", + "ref/dotnet/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.Overlapped.4.0.0.nupkg", + "System.Threading.Overlapped.4.0.0.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "xjN0l+GsHEdV3G2lKF7DnH7kEM2OXoWq56jcvByNaiirrs1om5RyI6gwX7F4rTbkf8eZk1pjg01l4CI3nLyTKg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Threading.Tasks.xml", + "ref/dotnet5.1/es/System.Threading.Tasks.xml", + "ref/dotnet5.1/fr/System.Threading.Tasks.xml", + "ref/dotnet5.1/it/System.Threading.Tasks.xml", + "ref/dotnet5.1/ja/System.Threading.Tasks.xml", + "ref/dotnet5.1/ko/System.Threading.Tasks.xml", + "ref/dotnet5.1/ru/System.Threading.Tasks.xml", + "ref/dotnet5.1/System.Threading.Tasks.dll", + "ref/dotnet5.1/System.Threading.Tasks.xml", + "ref/dotnet5.1/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet5.1/zh-hant/System.Threading.Tasks.xml", + "ref/dotnet5.4/de/System.Threading.Tasks.xml", + "ref/dotnet5.4/es/System.Threading.Tasks.xml", + "ref/dotnet5.4/fr/System.Threading.Tasks.xml", + "ref/dotnet5.4/it/System.Threading.Tasks.xml", + "ref/dotnet5.4/ja/System.Threading.Tasks.xml", + "ref/dotnet5.4/ko/System.Threading.Tasks.xml", + "ref/dotnet5.4/ru/System.Threading.Tasks.xml", + "ref/dotnet5.4/System.Threading.Tasks.dll", + "ref/dotnet5.4/System.Threading.Tasks.xml", + "ref/dotnet5.4/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet5.4/zh-hant/System.Threading.Tasks.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.11-beta-23516.nupkg", + "System.Threading.Tasks.4.0.11-beta-23516.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "2a5k/EmBXNiIoQZ8hk32KjoCVs1E5OdQtqJCHcW4qThmk+m/siQgB7zYamlRBeQ5zJs7c1l4oN/y5+YRq8oQ2Q==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Threading.Thread.xml", + "ref/dotnet5.1/es/System.Threading.Thread.xml", + "ref/dotnet5.1/fr/System.Threading.Thread.xml", + "ref/dotnet5.1/it/System.Threading.Thread.xml", + "ref/dotnet5.1/ja/System.Threading.Thread.xml", + "ref/dotnet5.1/ko/System.Threading.Thread.xml", + "ref/dotnet5.1/ru/System.Threading.Thread.xml", + "ref/dotnet5.1/System.Threading.Thread.dll", + "ref/dotnet5.1/System.Threading.Thread.xml", + "ref/dotnet5.1/zh-hans/System.Threading.Thread.xml", + "ref/dotnet5.1/zh-hant/System.Threading.Thread.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.Thread.4.0.0-beta-23516.nupkg", + "System.Threading.Thread.4.0.0-beta-23516.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "xDTdxmxDAfIMrbANWXQih80yOTbyXhU5z/2P15n3EuyJOetqKKVWEXouoD8bV25RzJHuB2rHMTZhUmbtLmEpwA==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.2/de/System.Threading.ThreadPool.xml", + "ref/dotnet5.2/es/System.Threading.ThreadPool.xml", + "ref/dotnet5.2/fr/System.Threading.ThreadPool.xml", + "ref/dotnet5.2/it/System.Threading.ThreadPool.xml", + "ref/dotnet5.2/ja/System.Threading.ThreadPool.xml", + "ref/dotnet5.2/ko/System.Threading.ThreadPool.xml", + "ref/dotnet5.2/ru/System.Threading.ThreadPool.xml", + "ref/dotnet5.2/System.Threading.ThreadPool.dll", + "ref/dotnet5.2/System.Threading.ThreadPool.xml", + "ref/dotnet5.2/zh-hans/System.Threading.ThreadPool.xml", + "ref/dotnet5.2/zh-hant/System.Threading.ThreadPool.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.ThreadPool.4.0.10-beta-23516.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23516.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0": { + "type": "package", + "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0.nupkg", + "System.Threading.Timer.4.0.0.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10": { + "type": "package", + "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Xml.ReaderWriter.xml", + "ref/dotnet/es/System.Xml.ReaderWriter.xml", + "ref/dotnet/fr/System.Xml.ReaderWriter.xml", + "ref/dotnet/it/System.Xml.ReaderWriter.xml", + "ref/dotnet/ja/System.Xml.ReaderWriter.xml", + "ref/dotnet/ko/System.Xml.ReaderWriter.xml", + "ref/dotnet/ru/System.Xml.ReaderWriter.xml", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/dotnet/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Xml.ReaderWriter.4.0.10.nupkg", + "System.Xml.ReaderWriter.4.0.10.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.1-beta-23516": { + "type": "package", + "sha512": "4gaHGHF5YfchhO6pqz2LtfcejCd+XpsVc1m9js78JequgYT6UihV+j6T0hZN/xb8rloHsAJTf8jZaFOLDY8msw==", + "files": [ + "lib/dotnet5.4/System.Xml.XmlDocument.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet5.1/de/System.Xml.XmlDocument.xml", + "ref/dotnet5.1/es/System.Xml.XmlDocument.xml", + "ref/dotnet5.1/fr/System.Xml.XmlDocument.xml", + "ref/dotnet5.1/it/System.Xml.XmlDocument.xml", + "ref/dotnet5.1/ja/System.Xml.XmlDocument.xml", + "ref/dotnet5.1/ko/System.Xml.XmlDocument.xml", + "ref/dotnet5.1/ru/System.Xml.XmlDocument.xml", + "ref/dotnet5.1/System.Xml.XmlDocument.dll", + "ref/dotnet5.1/System.Xml.XmlDocument.xml", + "ref/dotnet5.1/zh-hans/System.Xml.XmlDocument.xml", + "ref/dotnet5.1/zh-hant/System.Xml.XmlDocument.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Xml.XmlDocument.4.0.1-beta-23516.nupkg", + "System.Xml.XmlDocument.4.0.1-beta-23516.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10": { + "type": "package", + "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Xml.XmlSerializer.xml", + "ref/dotnet/es/System.Xml.XmlSerializer.xml", + "ref/dotnet/fr/System.Xml.XmlSerializer.xml", + "ref/dotnet/it/System.Xml.XmlSerializer.xml", + "ref/dotnet/ja/System.Xml.XmlSerializer.xml", + "ref/dotnet/ko/System.Xml.XmlSerializer.xml", + "ref/dotnet/ru/System.Xml.XmlSerializer.xml", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.xml", + "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml", + "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10.nupkg", + "System.Xml.XmlSerializer.4.0.10.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [], + "DNXCore,Version=v5.0": [ + "Microsoft.CSharp >= 4.0.1-beta-23516", + "System.Collections >= 4.0.11-beta-23516", + "System.Linq >= 4.0.1-beta-23516", + "System.Runtime >= 4.0.21-beta-23516", + "System.Threading >= 4.0.11-beta-23516", + "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final", + "NLog >= 4.4.0-alpha1" + ], + ".NETFramework,Version=v4.5.1": [ + "Microsoft.CSharp >= 4.0.1-beta-23516", + "System.Collections >= 4.0.11-beta-23516", + "System.Linq >= 4.0.1-beta-23516", + "System.Runtime >= 4.0.21-beta-23516", + "System.Threading >= 4.0.11-beta-23516", + "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final", + "NLog >= 4.4.0-alpha1" + ] + } +} \ No newline at end of file diff --git a/NLog.Web.Tests/NLog.Web.Tests.csproj b/NLog.Web.Tests/NLog.Web.Tests.csproj index 28c2cb4a..98c3ccd9 100644 --- a/NLog.Web.Tests/NLog.Web.Tests.csproj +++ b/NLog.Web.Tests/NLog.Web.Tests.csproj @@ -1,4 +1,4 @@ - + @@ -50,6 +50,7 @@ + ..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll True @@ -76,16 +77,16 @@ - - - - - - - - - - + + + + + + + + + + @@ -95,7 +96,9 @@ - + + Designer + diff --git a/NLog.Web.Tests/Properties/AssemblyInfo.cs b/NLog.Web.Tests/Properties/AssemblyInfo.cs index 56e92195..b3b7158d 100644 --- a/NLog.Web.Tests/Properties/AssemblyInfo.cs +++ b/NLog.Web.Tests/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("NLog.Web.Tests")] -[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyCopyright("Copyright © 2015-2016")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/NLog.Web.Tests/packages.config b/NLog.Web.Tests/packages.NLog.Web.Tests.config similarity index 100% rename from NLog.Web.Tests/packages.config rename to NLog.Web.Tests/packages.NLog.Web.Tests.config diff --git a/NLog.Web.aspnet5.sln b/NLog.Web.aspnet5.sln new file mode 100644 index 00000000..f3a7c3bd --- /dev/null +++ b/NLog.Web.aspnet5.sln @@ -0,0 +1,26 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.24720.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{52CA242D-DB20-41D9-8B79-A5A965ECA105}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NLog.Web.aspnet5", "NLog.Web.ASPNET5\NLog.Web.aspnet5.xproj", "{74D5915B-BEA9-404C-B4D0-B663164DEF37}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {74D5915B-BEA9-404C-B4D0-B663164DEF37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {74D5915B-BEA9-404C-B4D0-B663164DEF37}.Debug|Any CPU.Build.0 = Debug|Any CPU + {74D5915B-BEA9-404C-B4D0-B663164DEF37}.Release|Any CPU.ActiveCfg = Release|Any CPU + {74D5915B-BEA9-404C-B4D0-B663164DEF37}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {74D5915B-BEA9-404C-B4D0-B663164DEF37} = {52CA242D-DB20-41D9-8B79-A5A965ECA105} + EndGlobalSection +EndGlobal diff --git a/NLog.Web.sln b/NLog.Web.sln index 02f30391..48ce7ed2 100644 --- a/NLog.Web.sln +++ b/NLog.Web.sln @@ -1,8 +1,9 @@ - Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0.40629.0 MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{52CA242D-DB20-41D9-8B79-A5A965ECA105}" +EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NLog.Web", "NLog.Web\NLog.Web.csproj", "{E30DC886-8431-4CFA-90FA-38D9BE4203A0}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NLog.Web.Tests", "NLog.Web.Tests\NLog.Web.Tests.csproj", "{E318FB41-9712-44CA-B792-E865EFE1A564}" @@ -25,4 +26,8 @@ Global GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {E30DC886-8431-4CFA-90FA-38D9BE4203A0} = {52CA242D-DB20-41D9-8B79-A5A965ECA105} + {E318FB41-9712-44CA-B792-E865EFE1A564} = {52CA242D-DB20-41D9-8B79-A5A965ECA105} + EndGlobalSection EndGlobal diff --git a/NLog.Web/NLog.Web.csproj b/NLog.Web/NLog.Web.csproj index 6fd279e5..0cee3f6b 100644 --- a/NLog.Web/NLog.Web.csproj +++ b/NLog.Web/NLog.Web.csproj @@ -1,4 +1,4 @@ - + @@ -17,7 +17,7 @@ full false bin\Debug\ - DEBUG;TRACE + TRACE;DEBUG;NET451 prompt 4 true @@ -54,26 +54,26 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - +