From aa70b72d6b738ddb48193272248a1f203e1f723f Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 7 Feb 2016 22:19:46 +0100
Subject: [PATCH 01/21] Init version
---
NLog.Web.sln | 20 +-
.../{NLog.Web.csproj => @NLog.Web.csproj} | 0
NLog.Web/DefaultHttpContextAccessor.cs | 13 +-
NLog.Web/IHttpContextAccessor.cs | 6 +-
NLog.Web/Internal/PropertyReader.cs | 3 +-
.../AspNetApplicationValueLayoutRenderer.cs | 15 +-
.../AspNetItemValueLayoutRenderer.cs | 17 +-
.../AspNetLayoutRendererBase.cs | 25 +-
.../AspNetRequestValueLayoutRenderer.cs | 37 +-
.../AspNetSessionIDLayoutRenderer.cs | 19 +-
.../AspNetSessionValueLayoutRenderer.cs | 19 +-
.../AspNetUserAuthTypeLayoutRenderer.cs | 15 +-
.../AspNetUserIdentityLayoutRenderer.cs | 15 +-
.../IISInstanceNameLayoutRenderer.cs | 20 +
NLog.Web/NLog.Web.xproj | 20 +
NLog.Web/NLogHttpModule.cs | 4 +-
NLog.Web/Properties/AssemblyInfo.cs | 26 +-
NLog.Web/Targets/AspNetTrace.cs | 18 +-
.../Wrappers/AspNetBufferingTargetWrapper.cs | 4 +-
NLog.Web/project.json | 32 +
NLog.Web/project.lock.json | 9196 +++++++++++++++++
21 files changed, 9472 insertions(+), 52 deletions(-)
rename NLog.Web/{NLog.Web.csproj => @NLog.Web.csproj} (100%)
create mode 100644 NLog.Web/NLog.Web.xproj
create mode 100644 NLog.Web/project.json
create mode 100644 NLog.Web/project.lock.json
diff --git a/NLog.Web.sln b/NLog.Web.sln
index 02f30391..50e23858 100644
--- a/NLog.Web.sln
+++ b/NLog.Web.sln
@@ -1,11 +1,9 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 2013
-VisualStudioVersion = 12.0.40629.0
+# Visual Studio 14
+VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
-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}"
+Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NLog.Web", "NLog.Web\NLog.Web.xproj", "{74D5915B-BEA9-404C-B4D0-B663164DEF37}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -13,14 +11,10 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {E30DC886-8431-4CFA-90FA-38D9BE4203A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {E30DC886-8431-4CFA-90FA-38D9BE4203A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {E30DC886-8431-4CFA-90FA-38D9BE4203A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {E30DC886-8431-4CFA-90FA-38D9BE4203A0}.Release|Any CPU.Build.0 = Release|Any CPU
- {E318FB41-9712-44CA-B792-E865EFE1A564}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {E318FB41-9712-44CA-B792-E865EFE1A564}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {E318FB41-9712-44CA-B792-E865EFE1A564}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {E318FB41-9712-44CA-B792-E865EFE1A564}.Release|Any CPU.Build.0 = Release|Any CPU
+ {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
diff --git a/NLog.Web/NLog.Web.csproj b/NLog.Web/@NLog.Web.csproj
similarity index 100%
rename from NLog.Web/NLog.Web.csproj
rename to NLog.Web/@NLog.Web.csproj
diff --git a/NLog.Web/DefaultHttpContextAccessor.cs b/NLog.Web/DefaultHttpContextAccessor.cs
index ed231216..8ec9f09d 100644
--- a/NLog.Web/DefaultHttpContextAccessor.cs
+++ b/NLog.Web/DefaultHttpContextAccessor.cs
@@ -1,7 +1,16 @@
+#if NET451
using System.Web;
+#else
+using Microsoft.AspNet.Hosting;
+using Microsoft.AspNet.Http;
+
+#endif
+
+
namespace NLog.Web
{
+#if NET451
///
/// 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/IHttpContextAccessor.cs
index 2611e042..4ccf1dbb 100644
--- a/NLog.Web/IHttpContextAccessor.cs
+++ b/NLog.Web/IHttpContextAccessor.cs
@@ -1,8 +1,11 @@
-using System;
+#if NET451
+
+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/Internal/PropertyReader.cs
index 676b6c3d..2a7eb907 100644
--- a/NLog.Web/Internal/PropertyReader.cs
+++ b/NLog.Web/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 = value.GetType().GetTypeInfo().GetDeclaredProperty(property);
value = propertyInfo.GetValue(value, null);
}
}
diff --git a/NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs b/NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs
index 5b121290..11ea4af2 100644
--- a/NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs
@@ -1,10 +1,17 @@
using System;
using System.Globalization;
using System.Text;
+#if NET451
using System.Web;
+#else
+using Microsoft.AspNet.Hosting;
+using Microsoft.AspNet.Http;
+#endif
using NLog.Config;
using NLog.LayoutRenderers;
+
+#if NET451
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/LayoutRenderers/AspNetItemValueLayoutRenderer.cs
index a1c41686..6f5a6646 100644
--- a/NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs
@@ -2,7 +2,12 @@
using System.Globalization;
using System.Linq;
using System.Text;
+#if NET451
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 DOTNET5_4
+ ///
+ /// 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/LayoutRenderers/AspNetLayoutRendererBase.cs
index 81710909..765a6010 100644
--- a/NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs
+++ b/NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs
@@ -1,5 +1,11 @@
using System.Text;
using NLog.LayoutRenderers;
+#if NET451
+using System.Web;
+#else
+using Microsoft.AspNet.Hosting;
+using Microsoft.AspNet.Http;
+#endif
namespace NLog.Web.LayoutRenderers
{
@@ -8,14 +14,29 @@ namespace NLog.Web.LayoutRenderers
///
public abstract class AspNetLayoutRendererBase : LayoutRenderer
{
+
+#if DOTNET5_4
+ ///
+ /// Initializes the with the .
+ ///
+ protected AspNetLayoutRendererBase(IHttpContextAccessor accessor)
+ {
+ HttpContextAccessor = accessor;
+
+ }
+#endif
+#if NET451
+
///
- /// 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/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs
index 27fd6c74..8de39769 100644
--- a/NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs
@@ -1,5 +1,11 @@
+using System;
using System.Text;
+#if NET451
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 DOTNET5_4
+ ///
+ /// 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 NET451
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 NET451
+ 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 NET451
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 NET451
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/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs
index 86413366..03c342de 100644
--- a/NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs
@@ -1,7 +1,13 @@
using System.Text;
+#if NET451
using System.Web;
+#else
+using Microsoft.AspNet.Hosting;
+using Microsoft.AspNet.Http;
+#endif
using NLog.LayoutRenderers;
+#if NET451
namespace NLog.Web.LayoutRenderers
{
///
@@ -10,6 +16,14 @@ namespace NLog.Web.LayoutRenderers
[LayoutRenderer("aspnet-sessionid")]
public class AspNetSessionIDLayoutRenderer : AspNetLayoutRendererBase
{
+#if DOTNET5_4
+ ///
+ /// 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/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs
index aacae4b5..d69811a5 100644
--- a/NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs
@@ -2,8 +2,11 @@
using System.Globalization;
using System.Linq;
using System.Text;
+#if NET451
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 DOTNET5_4
+ ///
+ /// 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 NET451
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/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs
index d52427f6..6e7441ae 100644
--- a/NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs
@@ -1,5 +1,10 @@
using System.Text;
+#if NET451
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 DOTNET5_4
+ ///
+ /// 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/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs
index 9bf21b25..b2bda095 100644
--- a/NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs
@@ -1,5 +1,10 @@
using System.Text;
+#if NET451
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 DOTNET5_4
+ ///
+ /// 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/LayoutRenderers/IISInstanceNameLayoutRenderer.cs
index 0b30a3af..f30ef14d 100644
--- a/NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs
@@ -1,5 +1,11 @@
using System.Text;
+
+#if NET451
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 DOTNET5_4
+ 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 DOTNET5_4
+ builder.Append(_env.EnvironmentName);
+#else
builder.Append(HostingEnvironment.SiteName);
+#endif
+
}
}
}
diff --git a/NLog.Web/NLog.Web.xproj b/NLog.Web/NLog.Web.xproj
new file mode 100644
index 00000000..8243800a
--- /dev/null
+++ b/NLog.Web/NLog.Web.xproj
@@ -0,0 +1,20 @@
+
+
+
+ 14.0
+ $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
+
+
+
+
+ 74d5915b-bea9-404c-b4d0-b663164def37
+ NLog.Web
+ ..\artifacts\obj\$(MSBuildProjectName)
+ ..\artifacts\bin\$(MSBuildProjectName)\
+
+
+
+ 2.0
+
+
+
diff --git a/NLog.Web/NLogHttpModule.cs b/NLog.Web/NLogHttpModule.cs
index 958e9622..047ef558 100644
--- a/NLog.Web/NLogHttpModule.cs
+++ b/NLog.Web/NLogHttpModule.cs
@@ -1,4 +1,5 @@
-using System;
+#if NET451
+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/Properties/AssemblyInfo.cs b/NLog.Web/Properties/AssemblyInfo.cs
index f21d70ee..c58e8e91 100644
--- a/NLog.Web/Properties/AssemblyInfo.cs
+++ b/NLog.Web/Properties/AssemblyInfo.cs
@@ -2,36 +2,22 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
-// General Information about an assembly is controlled through the following
+// 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")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("NLog")]
+[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("NLog.Web")]
-[assembly: AssemblyCopyright("Copyright © NLog 2015")]
+[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
-// 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
+// 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("76508ba5-3321-41a4-90b4-99958822f19b")]
-
-// Version information for an assembly consists of the following four values:
-//
-// Major Version
-// Minor Version
-// Build Number
-// Revision
-//
-// You can specify all the values or you can default the Build and Revision Numbers
-// by using the '*' as shown below:
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
-[assembly: AssemblyInformationalVersion("NLog")]
+[assembly: Guid("74d5915b-bea9-404c-b4d0-b663164def37")]
diff --git a/NLog.Web/Targets/AspNetTrace.cs b/NLog.Web/Targets/AspNetTrace.cs
index 4fb86e95..dac69559 100644
--- a/NLog.Web/Targets/AspNetTrace.cs
+++ b/NLog.Web/Targets/AspNetTrace.cs
@@ -1,4 +1,6 @@
-using System.Web;
+
+#if NET451
+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/Targets/Wrappers/AspNetBufferingTargetWrapper.cs
index e9f3ce57..ecf68735 100644
--- a/NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs
+++ b/NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs
@@ -1,4 +1,5 @@
-using System;
+#if NET451
+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/project.json b/NLog.Web/project.json
new file mode 100644
index 00000000..2a6e90a0
--- /dev/null
+++ b/NLog.Web/project.json
@@ -0,0 +1,32 @@
+{
+ "version": "1.0.0-*",
+ "description": "NLog.Web Class Library",
+ "authors": [ "j.verdurmen" ],
+ "tags": [ "" ],
+ "projectUrl": "",
+ "licenseUrl": "",
+
+ "frameworks": {
+ "net451": {
+ "compilationOptions": { "define": [ "NET451" ] },
+ "frameworkAssemblies": { "System.Web": "4.0.0.0" },
+ "dependencies": { "NLog": "4.0.1" }
+ },
+
+ "dnxcore50": {
+
+ "compilationOptions": { "define": [ "DOTNET5_4" ] },
+ "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",
+ "NLog": "4.4.0-alpha1",
+ "Microsoft.AspNet.Hosting": "1.0.0-rc1-final"
+
+ }
+ }
+
+ }
+}
diff --git a/NLog.Web/project.lock.json b/NLog.Web/project.lock.json
new file mode 100644
index 00000000..7b222b6b
--- /dev/null
+++ b/NLog.Web/project.lock.json
@@ -0,0 +1,9196 @@
+{
+ "locked": false,
+ "version": 2,
+ "targets": {
+ ".NETFramework,Version=v4.5.1": {
+ "NLog/4.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/NLog.dll": {}
+ },
+ "runtime": {
+ "lib/net45/NLog.dll": {}
+ }
+ }
+ },
+ "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/win7-x86": {
+ "NLog/4.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/NLog.dll": {}
+ },
+ "runtime": {
+ "lib/net45/NLog.dll": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.1/win7-x64": {
+ "NLog/4.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/NLog.dll": {}
+ },
+ "runtime": {
+ "lib/net45/NLog.dll": {}
+ }
+ }
+ },
+ "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.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.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": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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.0.1": {
+ "type": "package",
+ "sha512": "ux2tUa7jkDtroJMSsrXMsHiqNVDHgbcGfFWFHg3XZg+nQNIRGZY2/emJYfjukmR+cHoTGIl8B0mYLl+zWScleg==",
+ "files": [
+ "lib/net35/NLog.dll",
+ "lib/net35/NLog.xml",
+ "lib/net40/NLog.dll",
+ "lib/net40/NLog.xml",
+ "lib/net45/NLog.dll",
+ "lib/net45/NLog.xml",
+ "lib/sl4/NLog.dll",
+ "lib/sl4/NLog.xml",
+ "lib/sl5/NLog.dll",
+ "lib/sl5/NLog.xml",
+ "NLog.4.0.1.nupkg",
+ "NLog.4.0.1.nupkg.sha512",
+ "NLog.nuspec"
+ ]
+ },
+ "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.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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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.20": {
+ "type": "package",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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": {
+ "": [],
+ ".NETFramework,Version=v4.5.1": [
+ "NLog >= 4.0.1",
+ "fx/System.Web >= 4.0.0"
+ ],
+ "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",
+ "NLog >= 4.4.0-alpha1",
+ "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final"
+ ]
+ }
+}
\ No newline at end of file
From 0053aafff26fffae17a87411ac9291cdd838e698 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 7 Feb 2016 23:05:33 +0100
Subject: [PATCH 02/21] Move test project to DNX
---
NLog.Web.Tests/NLog.Web.Tests.csproj | 134 ---
NLog.Web.Tests/NLog.Web.Tests.xproj | 21 +
NLog.Web.Tests/Properties/AssemblyInfo.cs | 2 +-
NLog.Web.Tests/project.json | 29 +
NLog.Web.Tests/project.lock.json | 1160 +++++++++++++++++++++
NLog.Web.sln | 8 +-
6 files changed, 1218 insertions(+), 136 deletions(-)
delete mode 100644 NLog.Web.Tests/NLog.Web.Tests.csproj
create mode 100644 NLog.Web.Tests/NLog.Web.Tests.xproj
create mode 100644 NLog.Web.Tests/project.json
create mode 100644 NLog.Web.Tests/project.lock.json
diff --git a/NLog.Web.Tests/NLog.Web.Tests.csproj b/NLog.Web.Tests/NLog.Web.Tests.csproj
deleted file mode 100644
index 28c2cb4a..00000000
--- a/NLog.Web.Tests/NLog.Web.Tests.csproj
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
- Debug
- AnyCPU
- {E318FB41-9712-44CA-B792-E865EFE1A564}
- Library
- Properties
- NLog.Web.Tests
- NLog.Web.Tests
- v4.5
- 512
- {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 10.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
- $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages
- False
- UnitTest
-
-
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- ..\packages\NLog.4.0.1\lib\net45\NLog.dll
- True
-
-
- ..\packages\NSubstitute.1.9.2.0\lib\net45\NSubstitute.dll
- True
-
-
-
-
-
- ..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll
- True
-
-
- ..\packages\xunit.assert.2.1.0\lib\dotnet\xunit.assert.dll
- True
-
-
- ..\packages\xunit.extensibility.core.2.1.0\lib\dotnet\xunit.core.dll
- True
-
-
- ..\packages\xunit.extensibility.execution.2.1.0\lib\net45\xunit.execution.desktop.dll
- True
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {E30DC886-8431-4CFA-90FA-38D9BE4203A0}
- NLog.Web
-
-
-
-
-
-
-
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
-
-
-
-
-
-
- This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/NLog.Web.Tests/NLog.Web.Tests.xproj b/NLog.Web.Tests/NLog.Web.Tests.xproj
new file mode 100644
index 00000000..9053d534
--- /dev/null
+++ b/NLog.Web.Tests/NLog.Web.Tests.xproj
@@ -0,0 +1,21 @@
+
+
+
+ 14.0
+ $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
+
+
+
+ 334bf11a-7e62-4469-ba1f-260d1c2f4db2
+ NLog.Web.Tests3
+ ..\artifacts\obj\$(MSBuildProjectName)
+ ..\artifacts\bin\$(MSBuildProjectName)\
+
+
+ 2.0
+
+
+
+
+
+
\ No newline at end of file
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/project.json b/NLog.Web.Tests/project.json
new file mode 100644
index 00000000..9ffef46b
--- /dev/null
+++ b/NLog.Web.Tests/project.json
@@ -0,0 +1,29 @@
+{
+ "version": "1.0.0-*",
+ "description": "NLog.Web.Tests Class Library",
+ "authors": [ "j.verdurmen" ],
+ "tags": [ "" ],
+ "projectUrl": "",
+ "licenseUrl": "",
+ "dependencies": {
+ "xunit": "2.1.0",
+ "NSubstitute": "1.9.2",
+ "xunit.runner.dnx": "2.1.0-rc1-build204",
+ "NLog.Web": "1.0.0-*"
+ },
+ "commands": {
+ "test": "xunit.runner.dnx"
+ },
+ "frameworks": {
+ "dnx451": {
+ "dependencies": {
+ },
+ "frameworkAssemblies": {
+ "System": "4.0.0.0",
+ "System.Runtime": "4.0.10.0"
+ }
+
+ }
+
+ }
+}
diff --git a/NLog.Web.Tests/project.lock.json b/NLog.Web.Tests/project.lock.json
new file mode 100644
index 00000000..254b730a
--- /dev/null
+++ b/NLog.Web.Tests/project.lock.json
@@ -0,0 +1,1160 @@
+{
+ "locked": false,
+ "version": 2,
+ "targets": {
+ "DNX,Version=v4.5.1": {
+ "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.Dnx.TestHost/1.0.0-rc1-final": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.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": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "NLog/4.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/NLog.dll": {}
+ },
+ "runtime": {
+ "lib/net45/NLog.dll": {}
+ }
+ },
+ "NLog.Web/1.0.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5.1",
+ "dependencies": {
+ "NLog": "4.0.1"
+ },
+ "frameworkAssemblies": [
+ "System.Web"
+ ]
+ },
+ "NSubstitute/1.9.2": {
+ "type": "package",
+ "compile": {
+ "lib/net45/NSubstitute.dll": {}
+ },
+ "runtime": {
+ "lib/net45/NSubstitute.dll": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.1/win7-x86": {
+ "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.Dnx.TestHost/1.0.0-rc1-final": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.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": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "NLog/4.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/NLog.dll": {}
+ },
+ "runtime": {
+ "lib/net45/NLog.dll": {}
+ }
+ },
+ "NLog.Web/1.0.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5.1",
+ "dependencies": {
+ "NLog": "4.0.1"
+ },
+ "frameworkAssemblies": [
+ "System.Web"
+ ]
+ },
+ "NSubstitute/1.9.2": {
+ "type": "package",
+ "compile": {
+ "lib/net45/NSubstitute.dll": {}
+ },
+ "runtime": {
+ "lib/net45/NSubstitute.dll": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.1/win7-x64": {
+ "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.Dnx.TestHost/1.0.0-rc1-final": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.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": {}
+ }
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "NLog/4.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/NLog.dll": {}
+ },
+ "runtime": {
+ "lib/net45/NLog.dll": {}
+ }
+ },
+ "NLog.Web/1.0.0": {
+ "type": "project",
+ "framework": ".NETFramework,Version=v4.5.1",
+ "dependencies": {
+ "NLog": "4.0.1"
+ },
+ "frameworkAssemblies": [
+ "System.Web"
+ ]
+ },
+ "NSubstitute/1.9.2": {
+ "type": "package",
+ "compile": {
+ "lib/net45/NSubstitute.dll": {}
+ },
+ "runtime": {
+ "lib/net45/NSubstitute.dll": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "NLog.Web/1.0.0": {
+ "type": "project",
+ "path": "../NLog.Web/project.json"
+ },
+ "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "serviceable": true,
+ "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.Dnx.TestHost/1.0.0-rc1-final": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "f5lDXCh4tLXXWHcuNpiyQLiOuV8HB+UjWeL70hrHyaBcssA6Oxa7KB3R/arddVwXuaXeBuGm+HVheuyhQCYGig==",
+ "files": [
+ "app/project.json",
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll",
+ "lib/dnx451/Microsoft.Dnx.TestHost.xml",
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.dll",
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.xml",
+ "Microsoft.Dnx.TestHost.1.0.0-rc1-final.nupkg",
+ "Microsoft.Dnx.TestHost.1.0.0-rc1-final.nupkg.sha512",
+ "Microsoft.Dnx.TestHost.nuspec"
+ ]
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AKeTdr5IdJQaXWw5jMyFOmmWicXt6V6WNQ7l67yBpSLsrJwYjtPg++XMmDGZVTd2CHcjzgMwz3iQfhCtMR76NQ==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll",
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.xml",
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll",
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.xml",
+ "Microsoft.Dnx.Testing.Abstractions.1.0.0-rc1-final.nupkg",
+ "Microsoft.Dnx.Testing.Abstractions.1.0.0-rc1-final.nupkg.sha512",
+ "Microsoft.Dnx.Testing.Abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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"
+ ]
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "sha512": "q3V4KLetMLnt1gpAVWgtXnHjKs0UG/RalBc29u2ZKxd5t5Ze4JBL5WiiYIklJyK/5CRiIiNwigVQUo0FgbsuWA==",
+ "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/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+dnxcore50/Newtonsoft.Json.dll",
+ "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml",
+ "Newtonsoft.Json.7.0.1.nupkg",
+ "Newtonsoft.Json.7.0.1.nupkg.sha512",
+ "Newtonsoft.Json.nuspec",
+ "tools/install.ps1"
+ ]
+ },
+ "NLog/4.0.1": {
+ "type": "package",
+ "sha512": "ux2tUa7jkDtroJMSsrXMsHiqNVDHgbcGfFWFHg3XZg+nQNIRGZY2/emJYfjukmR+cHoTGIl8B0mYLl+zWScleg==",
+ "files": [
+ "lib/net35/NLog.dll",
+ "lib/net35/NLog.xml",
+ "lib/net40/NLog.dll",
+ "lib/net40/NLog.xml",
+ "lib/net45/NLog.dll",
+ "lib/net45/NLog.xml",
+ "lib/sl4/NLog.dll",
+ "lib/sl4/NLog.xml",
+ "lib/sl5/NLog.dll",
+ "lib/sl5/NLog.xml",
+ "NLog.4.0.1.nupkg",
+ "NLog.4.0.1.nupkg.sha512",
+ "NLog.nuspec"
+ ]
+ },
+ "NSubstitute/1.9.2": {
+ "type": "package",
+ "sha512": "p0HKZIZSY3uSK7TOqo7dn1R7puR1b8VWsaVVty55epljyO/obKH6qlon1Brub6n7m4DoP3AJ+Xit6Gbj92UJ6Q==",
+ "files": [
+ "acknowledgements.txt",
+ "BreakingChanges.txt",
+ "CHANGELOG.txt",
+ "lib/net35/NSubstitute.dll",
+ "lib/net35/NSubstitute.XML",
+ "lib/net40/NSubstitute.dll",
+ "lib/net40/NSubstitute.XML",
+ "lib/net45/NSubstitute.dll",
+ "lib/net45/NSubstitute.XML",
+ "LICENSE.txt",
+ "NSubstitute.1.9.2.nupkg",
+ "NSubstitute.1.9.2.nupkg.sha512",
+ "NSubstitute.nuspec",
+ "README.txt"
+ ]
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==",
+ "files": [
+ "xunit.2.1.0.nupkg",
+ "xunit.2.1.0.nupkg.sha512",
+ "xunit.nuspec"
+ ]
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==",
+ "files": [
+ "lib/net35/xunit.abstractions.dll",
+ "lib/net35/xunit.abstractions.xml",
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll",
+ "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml",
+ "xunit.abstractions.2.0.0.nupkg",
+ "xunit.abstractions.2.0.0.nupkg.sha512",
+ "xunit.abstractions.nuspec"
+ ]
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==",
+ "files": [
+ "lib/dotnet/xunit.assert.dll",
+ "lib/dotnet/xunit.assert.pdb",
+ "lib/dotnet/xunit.assert.xml",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml",
+ "xunit.assert.2.1.0.nupkg",
+ "xunit.assert.2.1.0.nupkg.sha512",
+ "xunit.assert.nuspec"
+ ]
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==",
+ "files": [
+ "build/_desktop/xunit.execution.desktop.dll",
+ "build/dnx451/_._",
+ "build/monoandroid/_._",
+ "build/monotouch/_._",
+ "build/net45/_._",
+ "build/portable-net45+win8+wp8+wpa81/xunit.core.props",
+ "build/win8/_._",
+ "build/win81/xunit.core.props",
+ "build/wp8/_._",
+ "build/wpa81/xunit.core.props",
+ "build/xamarinios/_._",
+ "xunit.core.2.1.0.nupkg",
+ "xunit.core.2.1.0.nupkg.sha512",
+ "xunit.core.nuspec"
+ ]
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==",
+ "files": [
+ "lib/dotnet/xunit.core.dll",
+ "lib/dotnet/xunit.core.dll.tdnet",
+ "lib/dotnet/xunit.core.pdb",
+ "lib/dotnet/xunit.core.xml",
+ "lib/dotnet/xunit.runner.tdnet.dll",
+ "lib/dotnet/xunit.runner.utility.desktop.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll",
+ "xunit.extensibility.core.2.1.0.nupkg",
+ "xunit.extensibility.core.2.1.0.nupkg.sha512",
+ "xunit.extensibility.core.nuspec"
+ ]
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==",
+ "files": [
+ "lib/dnx451/xunit.execution.dotnet.dll",
+ "lib/dnx451/xunit.execution.dotnet.pdb",
+ "lib/dnx451/xunit.execution.dotnet.xml",
+ "lib/dotnet/xunit.execution.dotnet.dll",
+ "lib/dotnet/xunit.execution.dotnet.pdb",
+ "lib/dotnet/xunit.execution.dotnet.xml",
+ "lib/monoandroid/xunit.execution.dotnet.dll",
+ "lib/monoandroid/xunit.execution.dotnet.pdb",
+ "lib/monoandroid/xunit.execution.dotnet.xml",
+ "lib/monotouch/xunit.execution.dotnet.dll",
+ "lib/monotouch/xunit.execution.dotnet.pdb",
+ "lib/monotouch/xunit.execution.dotnet.xml",
+ "lib/net45/xunit.execution.desktop.dll",
+ "lib/net45/xunit.execution.desktop.pdb",
+ "lib/net45/xunit.execution.desktop.xml",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml",
+ "lib/win8/xunit.execution.dotnet.dll",
+ "lib/win8/xunit.execution.dotnet.pdb",
+ "lib/win8/xunit.execution.dotnet.xml",
+ "lib/wp8/xunit.execution.dotnet.dll",
+ "lib/wp8/xunit.execution.dotnet.pdb",
+ "lib/wp8/xunit.execution.dotnet.xml",
+ "lib/wpa81/xunit.execution.dotnet.dll",
+ "lib/wpa81/xunit.execution.dotnet.pdb",
+ "lib/wpa81/xunit.execution.dotnet.xml",
+ "lib/xamarinios/xunit.execution.dotnet.dll",
+ "lib/xamarinios/xunit.execution.dotnet.pdb",
+ "lib/xamarinios/xunit.execution.dotnet.xml",
+ "xunit.extensibility.execution.2.1.0.nupkg",
+ "xunit.extensibility.execution.2.1.0.nupkg.sha512",
+ "xunit.extensibility.execution.nuspec"
+ ]
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "sha512": "GUtWIQN3h7QGJdp5RTgvbPVjdWC7tXIRZhzpW8txNDC9nbMph4/TWbVEZKCGUOsLvE5BZg3icRGb6JR3ZwBADA==",
+ "files": [
+ "lib/dnx451/xunit.runner.dnx.dll",
+ "lib/dnx451/xunit.runner.dnx.xml",
+ "lib/dnxcore50/xunit.runner.dnx.dll",
+ "lib/dnxcore50/xunit.runner.dnx.xml",
+ "xunit.runner.dnx.2.1.0-rc1-build204.nupkg",
+ "xunit.runner.dnx.2.1.0-rc1-build204.nupkg.sha512",
+ "xunit.runner.dnx.nuspec"
+ ]
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "sha512": "ja0kJrvwSiho2TRFpfHfa+6tGJI5edcyD8fdekTkjn7Us17PbGqglIihRe8sR9YFAmS4ipEC8+7CXOM/b69ENQ==",
+ "files": [
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll",
+ "lib/dotnet/xunit.runner.reporters.dotnet.dll",
+ "lib/net45/xunit.runner.reporters.desktop.dll",
+ "xunit.runner.reporters.2.1.0.nupkg",
+ "xunit.runner.reporters.2.1.0.nupkg.sha512",
+ "xunit.runner.reporters.nuspec"
+ ]
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "sha512": "jJJHROwskIhdQuYw7exe7KaW20dOCa+lzV/lY7Zdh1ZZzdUPpScMi9ReJIutqiyjhemGF8V/GaMIPrcjyZ4ioQ==",
+ "files": [
+ "lib/dnx451/xunit.runner.utility.dotnet.dll",
+ "lib/dnx451/xunit.runner.utility.dotnet.pdb",
+ "lib/dnx451/xunit.runner.utility.dotnet.xml",
+ "lib/dotnet/xunit.runner.utility.dotnet.dll",
+ "lib/dotnet/xunit.runner.utility.dotnet.pdb",
+ "lib/dotnet/xunit.runner.utility.dotnet.xml",
+ "lib/net35/xunit.runner.utility.desktop.dll",
+ "lib/net35/xunit.runner.utility.desktop.pdb",
+ "lib/net35/xunit.runner.utility.desktop.xml",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.pdb",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.xml",
+ "xunit.runner.utility.2.1.0.nupkg",
+ "xunit.runner.utility.2.1.0.nupkg.sha512",
+ "xunit.runner.utility.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "": [
+ "xunit >= 2.1.0",
+ "NSubstitute >= 1.9.2",
+ "xunit.runner.dnx >= 2.1.0-rc1-build204",
+ "NLog.Web >= 1.0.0-*"
+ ],
+ "DNX,Version=v4.5.1": [
+ "fx/System >= 4.0.0",
+ "fx/System.Runtime >= 4.0.10"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/NLog.Web.sln b/NLog.Web.sln
index 50e23858..b7dd66b5 100644
--- a/NLog.Web.sln
+++ b/NLog.Web.sln
@@ -1,10 +1,12 @@
-
+
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NLog.Web", "NLog.Web\NLog.Web.xproj", "{74D5915B-BEA9-404C-B4D0-B663164DEF37}"
EndProject
+Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NLog.Web.Tests", "NLog.Web.Tests\NLog.Web.Tests.xproj", "{334BF11A-7E62-4469-BA1F-260D1C2F4DB2}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -15,6 +17,10 @@ Global
{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
+ {334BF11A-7E62-4469-BA1F-260D1C2F4DB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {334BF11A-7E62-4469-BA1F-260D1C2F4DB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {334BF11A-7E62-4469-BA1F-260D1C2F4DB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {334BF11A-7E62-4469-BA1F-260D1C2F4DB2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
From 7b8585eef00e179572a51f72828a595b38118ac9 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 7 Feb 2016 23:29:21 +0100
Subject: [PATCH 03/21] Added DNX451
---
NLog.Web/project.json | 14 +
NLog.Web/project.lock.json | 5813 +++++++++++++++++++++++-------------
2 files changed, 3800 insertions(+), 2027 deletions(-)
diff --git a/NLog.Web/project.json b/NLog.Web/project.json
index 2a6e90a0..eccce81e 100644
--- a/NLog.Web/project.json
+++ b/NLog.Web/project.json
@@ -25,6 +25,20 @@
"NLog": "4.4.0-alpha1",
"Microsoft.AspNet.Hosting": "1.0.0-rc1-final"
+ }
+ },
+ "dnx451": {
+
+ "compilationOptions": { "define": [ "DOTNET5_4", "DNX451" ] },
+ "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",
+ "NLog": "4.4.0-alpha1",
+ "Microsoft.AspNet.Hosting": "1.0.0-rc1-final"
+
}
}
diff --git a/NLog.Web/project.lock.json b/NLog.Web/project.lock.json
index 7b222b6b..a34b7dbe 100644
--- a/NLog.Web/project.lock.json
+++ b/NLog.Web/project.lock.json
@@ -1576,61 +1576,41 @@
}
}
},
- ".NETFramework,Version=v4.5.1/win7-x86": {
- "NLog/4.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/NLog.dll": {}
- },
- "runtime": {
- "lib/net45/NLog.dll": {}
- }
- }
- },
- ".NETFramework,Version=v4.5.1/win7-x64": {
- "NLog/4.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/NLog.dll": {}
- },
- "runtime": {
- "lib/net45/NLog.dll": {}
- }
- }
- },
- "DNXCore,Version=v5.0/win7-x86": {
+ "DNX,Version=v4.5.1": {
"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"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
+ "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",
- "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"
+ "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
}
},
"Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
@@ -1649,16 +1629,20 @@
"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"
+ "System.Diagnostics.DiagnosticSource": "4.0.0-beta-23516"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime"
+ ],
"compile": {
- "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
+ "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
},
"runtime": {
- "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
+ "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
}
},
"Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
@@ -1667,11 +1651,17 @@
"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/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
}
},
"Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
@@ -1680,11 +1670,17 @@
"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/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
}
},
"Microsoft.AspNet.Http/1.0.0-rc1-final": {
@@ -1692,43 +1688,38 @@
"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"
+ "Microsoft.Net.Http.Headers": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
+ "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",
- "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"
+ "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
}
},
"Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
@@ -1736,128 +1727,122 @@
"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"
+ "Microsoft.Net.Http.Headers": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
+ "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",
- "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"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
+ "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",
- "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"
+ "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
+ "lib/net451/Microsoft.AspNet.WebUtilities.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp"
+ ],
"compile": {
- "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ "lib/net45/_._": {}
}
},
"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"
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "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",
- "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"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
+ "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",
- "System.Linq": "4.0.1-beta-23516"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
"Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
@@ -1865,11 +1850,17 @@
"dependencies": {
"Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {}
}
},
"Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": {
@@ -1877,24 +1868,35 @@
"dependencies": {
"Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "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",
- "System.AppContext": "4.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
"Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
@@ -1902,3573 +1904,5275 @@
"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"
+ "Newtonsoft.Json": "6.0.6"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
+ "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",
- "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"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "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",
- "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"
+ "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections.Concurrent",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
+ "lib/net451/Microsoft.Extensions.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
+ "lib/net451/Microsoft.Net.Http.Headers.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
+ "lib/net451/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.Win32.Primitives/4.0.0": {
+ "Newtonsoft.Json/6.0.6": {
"type": "package",
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20"
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
},
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "NLog/4.4.0-alpha1": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Configuration",
+ "System.Core",
+ "System.Data",
+ "System.Drawing",
+ "System.IO.Compression",
+ "System.Runtime",
+ "System.Runtime.Serialization",
+ "System.ServiceModel",
+ "System.Transactions",
+ "System.Xml"
+ ],
"compile": {
- "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ "lib/dnx451/NLog.dll": {}
},
"runtime": {
- "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ "lib/dnx451/NLog.dll": {}
}
},
- "Newtonsoft.Json/6.0.6": {
+ "System.Collections/4.0.11-beta-23516": {
"type": "package",
"compile": {
- "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
+ "lib/net45/_._": {}
}
},
- "NLog/4.4.0-alpha1": {
+ "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
"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"
+ "System.Diagnostics.Tracing": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Threading": "4.0.0"
},
"compile": {
- "lib/dnxcore50/NLog.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/dnxcore50/NLog.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "System.Diagnostics.Tracing/4.0.0": {
"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/_._": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.Console.dll": {}
+ "lib/net45/_._": {}
}
},
- "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23516": {
+ "System.Linq/4.0.1-beta-23516": {
"type": "package",
"compile": {
- "ref/dotnet/_._": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ "lib/net45/_._": {}
}
},
- "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23516": {
+ "System.Runtime/4.0.21-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/_._": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.Diagnostics.TraceSource.dll": {}
+ "lib/net45/_._": {}
}
},
- "runtime.win7.System.Globalization.Extensions/4.0.1-beta-23516": {
+ "System.Threading/4.0.11-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/net45/_._": {}
},
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ }
+ },
+ ".NETFramework,Version=v4.5.1/win7-x86": {
+ "NLog/4.0.1": {
+ "type": "package",
"compile": {
- "ref/dotnet/_._": {}
+ "lib/net45/NLog.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {}
+ "lib/net45/NLog.dll": {}
}
- },
- "runtime.win7.System.IO.Compression/4.0.1-beta-23409": {
+ }
+ },
+ ".NETFramework,Version=v4.5.1/win7-x64": {
+ "NLog/4.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/NLog.dll": {}
+ },
+ "runtime": {
+ "lib/net45/NLog.dll": {}
+ }
+ }
+ },
+ "DNXCore,Version=v5.0/win7-x86": {
+ "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final",
+ "System.IO": "4.0.11-beta-23516",
+ "System.Resources.ResourceManager": "4.0.1-beta-23516"
},
"compile": {
- "ref/dotnet/_._": {}
+ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet/System.IO.Compression.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
}
},
- "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/_._": {}
+ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
}
},
- "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-beta-23516": {
+ "Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/_._": {}
+ "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {}
+ "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
}
},
- "runtime.win7.System.Net.Primitives/4.0.11-beta-23516": {
+ "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Private.Networking": "4.0.1-beta-23516"
+ "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final"
},
"compile": {
- "ref/dotnet/_._": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Net.Primitives.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
}
},
- "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "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": {
- "ref/dotnet/_._": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
},
"runtime": {
- "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
}
},
- "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "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": {
- "ref/dotnet/_._": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.Extensions.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
}
},
- "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
+ "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/_._": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
}
},
- "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-beta-23516": {
+ "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/_._": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
}
},
- "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
+ "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/System.AppContext.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.AppContext.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
}
},
- "System.Collections/4.0.11-beta-23516": {
+ "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.21-beta-23516"
+ "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": {
- "ref/dotnet5.4/System.Collections.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Collections.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
}
},
- "System.Collections.Concurrent/4.0.11-beta-23516": {
+ "Microsoft.CSharp/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
"System.Collections": "4.0.10",
"System.Diagnostics.Debug": "4.0.10",
- "System.Diagnostics.Tracing": "4.0.20",
+ "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.Threading": "4.0.10",
- "System.Threading.Tasks": "4.0.10"
+ "System.Runtime.InteropServices": "4.0.20",
+ "System.Threading": "4.0.10"
},
"compile": {
- "ref/dotnet5.4/System.Collections.Concurrent.dll": {}
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Collections.Concurrent.dll": {}
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
}
},
- "System.Collections.NonGeneric/4.0.0": {
+ "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "System.IO.FileSystem": "4.0.1-beta-23516"
},
"compile": {
- "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
}
},
- "System.Collections.Specialized/4.0.0": {
+ "Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/System.Collections.Specialized.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
},
"runtime": {
- "lib/dotnet/System.Collections.Specialized.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
}
},
- "System.ComponentModel/4.0.1-beta-23516": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.20"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final",
+ "System.Linq": "4.0.1-beta-23516"
},
"compile": {
- "ref/dotnet5.1/System.ComponentModel.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.ComponentModel.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
},
"compile": {
- "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
},
"runtime": {
- "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
}
},
- "System.ComponentModel.Primitives/4.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.0",
- "System.Runtime": "4.0.20"
+ "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
},
"compile": {
- "ref/dotnet/System.ComponentModel.Primitives.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
},
"runtime": {
- "lib/dotnet/System.ComponentModel.Primitives.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.0.1-beta-23516": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final",
+ "System.AppContext": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "System.Console/4.0.0-beta-23516": {
+ "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.IO": "4.0.0",
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.1/System.Console.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "System.Data.Common/4.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/System.Data.Common.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
- "lib/dotnet/System.Data.Common.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1-beta-23516": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Contracts.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11-beta-23516": {
+ "Microsoft.Extensions.Logging/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.4/System.Diagnostics.Debug.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Tracing": "4.0.0",
- "System.Runtime": "4.0.0",
- "System.Threading": "4.0.0"
+ "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.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "System.Diagnostics.StackTrace/4.0.1-beta-23516": {
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet5.1/System.Diagnostics.Tools.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.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": {}
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "System.Diagnostics.Tracing/4.0.20": {
+ "Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Resources.ResourceManager": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
},
"compile": {
- "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
}
},
- "System.Dynamic.Runtime/4.0.11-beta-23516": {
+ "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": {
"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.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.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"
+ "System.Resources.ResourceManager": "4.0.1-beta-23516",
+ "System.Runtime.Extensions": "4.0.11-beta-23516",
+ "System.Threading": "4.0.11-beta-23516"
},
"compile": {
- "ref/dotnet5.4/System.Dynamic.Runtime.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Dynamic.Runtime.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
}
},
- "System.Globalization/4.0.11-beta-23516": {
+ "Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.4/System.Globalization.dll": {}
+ "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Globalization.dll": {}
+ "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
}
},
- "System.Globalization.Calendars/4.0.0": {
+ "Microsoft.Win32.Primitives/4.0.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.0",
- "System.Runtime": "4.0.0"
+ "System.Runtime": "4.0.20",
+ "System.Runtime.InteropServices": "4.0.20"
},
"compile": {
- "ref/dotnet/System.Globalization.Calendars.dll": {}
+ "ref/dotnet/Microsoft.Win32.Primitives.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": {}
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
}
},
- "System.IO/4.0.11-beta-23516": {
+ "Newtonsoft.Json/6.0.6": {
"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": {}
+ "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.IO.dll": {}
+ "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
}
},
- "System.IO.Compression/4.0.1-beta-23409": {
+ "NLog/4.4.0-alpha1": {
"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"
+ "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": {
- "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"
+ "lib/dnxcore50/NLog.dll": {}
},
- "compile": {
- "ref/dotnet5.4/System.IO.FileSystem.dll": {}
+ "runtime": {
+ "lib/dnxcore50/NLog.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1-beta-23516": {
+ "runtime.win7.System.Console/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.20"
+ "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/dotnet5.1/System.IO.FileSystem.Primitives.dll": {}
+ "ref/dotnet/_._": {}
},
"runtime": {
- "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {}
+ "runtimes/win7/lib/dotnet5.4/System.Console.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0-beta-23516": {
+ "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23516": {
"type": "package",
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
"compile": {
- "ref/dotnet5.1/System.IO.FileSystem.Watcher.dll": {}
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {}
}
},
- "System.Linq/4.0.1-beta-23516": {
+ "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.Runtime.Extensions": "4.0.10",
+ "System.Threading": "4.0.10"
},
"compile": {
- "ref/dotnet5.1/System.Linq.dll": {}
+ "ref/dotnet/_._": {}
},
"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": {}
+ "runtimes/win7/lib/dotnet5.4/System.Diagnostics.TraceSource.dll": {}
}
},
- "System.Linq.Queryable/4.0.0": {
+ "runtime.win7.System.Globalization.Extensions/4.0.1-beta-23516": {
"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.Globalization": "4.0.10",
"System.Resources.ResourceManager": "4.0.0",
- "System.Runtime": "4.0.20"
+ "System.Runtime": "4.0.20",
+ "System.Runtime.Extensions": "4.0.10",
+ "System.Runtime.InteropServices": "4.0.20"
},
"compile": {
- "ref/dotnet/System.Linq.Queryable.dll": {}
+ "ref/dotnet/_._": {}
},
"runtime": {
- "lib/dotnet/System.Linq.Queryable.dll": {}
+ "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {}
}
},
- "System.Net.Http/4.0.0": {
+ "runtime.win7.System.IO.Compression/4.0.1-beta-23409": {
"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": "4.0.0",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
- "ref/dotnet/System.Net.Http.dll": {}
+ "ref/dotnet/_._": {}
},
"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": {}
+ "runtimes/win7/lib/dotnet/System.IO.Compression.dll": {}
}
},
- "System.Net.Requests/4.0.10": {
+ "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
"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.IO.FileSystem.Primitives": "4.0.0",
"System.Resources.ResourceManager": "4.0.0",
"System.Runtime": "4.0.20",
+ "System.Runtime.Extensions": "4.0.10",
+ "System.Runtime.Handles": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.20",
+ "System.Text.Encoding": "4.0.10",
+ "System.Text.Encoding.Extensions": "4.0.10",
"System.Threading": "4.0.10",
+ "System.Threading.Overlapped": "4.0.0",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
- "ref/dotnet/System.Net.Requests.dll": {}
+ "ref/dotnet/_._": {}
},
"runtime": {
- "lib/dotnet/System.Net.Requests.dll": {}
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {}
}
},
- "System.Net.Sockets/4.0.0": {
+ "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "System.Net.Primitives": "4.0.10",
- "System.Runtime": "4.0.0"
- },
+ "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/System.Net.Sockets.dll": {}
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {}
}
},
- "System.Net.WebHeaderCollection/4.0.0": {
+ "runtime.win7.System.Net.Primitives/4.0.11-beta-23516": {
"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"
+ "System.Private.Networking": "4.0.1-beta-23516"
},
"compile": {
- "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ "ref/dotnet/_._": {}
},
"runtime": {
- "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ "lib/DNXCore50/System.Net.Primitives.dll": {}
}
},
- "System.Net.WebSockets/4.0.0-beta-23516": {
+ "runtime.win7.System.Private.Uri/4.0.1-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": {}
+ "ref/dotnet/_._": {}
},
"runtime": {
- "lib/dotnet5.4/System.Net.WebSockets.dll": {}
+ "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {}
}
},
- "System.ObjectModel/4.0.10": {
+ "runtime.win7.System.Runtime.Extensions/4.0.11-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.Threading": "4.0.10"
- },
"compile": {
- "ref/dotnet/System.ObjectModel.dll": {}
+ "ref/dotnet/_._": {}
},
"runtime": {
- "lib/dotnet/System.ObjectModel.dll": {}
+ "lib/DNXCore50/System.Runtime.Extensions.dll": {}
}
},
- "System.Private.DataContractSerialization/4.0.0": {
+ "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
"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"
+ "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/dnxcore50/_._": {}
+ "ref/dotnet/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Private.DataContractSerialization.dll": {}
+ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
}
},
- "System.Private.Networking/4.0.1-beta-23516": {
+ "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "Microsoft.Win32.Primitives": "4.0.0",
- "System.Collections": "4.0.10",
+ "System.Collections": "4.0.0",
"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.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",
- "System.Security.Principal": "4.0.0",
- "System.Threading": "4.0.10",
- "System.Threading.Overlapped": "4.0.0",
- "System.Threading.Tasks": "4.0.10"
+ "System.Security.Cryptography.Primitives": "4.0.0-beta-23516"
},
"compile": {
- "ref/dnxcore50/_._": {}
+ "ref/dotnet/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Private.Networking.dll": {}
+ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {}
}
},
- "System.Private.ServiceModel/4.0.0": {
+ "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
"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.Globalization.Calendars": "4.0.0",
"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.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.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.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",
- "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"
+ "System.Threading": "4.0.10"
},
"compile": {
- "ref/dnxcore50/_._": {}
+ "ref/dotnet/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Private.ServiceModel.dll": {}
+ "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
}
},
- "System.Private.Uri/4.0.1-beta-23516": {
+ "runtime.win7.System.Threading/4.0.11-beta-23516": {
"type": "package",
"compile": {
- "ref/dnxcore50/_._": {}
+ "ref/dotnet/_._": {}
+ },
+ "runtime": {
+ "runtimes/win7/lib/DNXCore50/System.Threading.dll": {}
}
},
- "System.Reflection/4.1.0-beta-23225": {
+ "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.IO": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Runtime": "4.0.20"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Reflection.dll": {}
+ "ref/dotnet/System.AppContext.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.dll": {}
+ "lib/DNXCore50/System.AppContext.dll": {}
}
},
- "System.Reflection.DispatchProxy/4.0.0": {
+ "System.Collections/4.0.11-beta-23516": {
"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"
+ "System.Runtime": "4.0.21-beta-23516"
},
"compile": {
- "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ "ref/dotnet5.4/System.Collections.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {}
+ "lib/DNXCore50/System.Collections.dll": {}
}
},
- "System.Reflection.Emit/4.0.0": {
+ "System.Collections.Concurrent/4.0.11-beta-23516": {
"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"
+ "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/dotnet/System.Reflection.Emit.dll": {}
+ "ref/dotnet5.4/System.Collections.Concurrent.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Emit.dll": {}
+ "lib/dotnet5.4/System.Collections.Concurrent.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.0": {
+ "System.Collections.NonGeneric/4.0.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Runtime": "4.0.0"
+ "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.Reflection.Emit.ILGeneration.dll": {}
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
}
},
- "System.Reflection.Emit.Lightweight/4.0.0": {
+ "System.Collections.Specialized/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"
+ "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.Reflection.Emit.Lightweight.dll": {}
+ "ref/dotnet/System.Collections.Specialized.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {}
+ "lib/dotnet/System.Collections.Specialized.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "System.ComponentModel/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "System.Runtime": "4.0.20"
},
"compile": {
- "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ "ref/dotnet5.1/System.ComponentModel.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ "lib/dotnet5.4/System.ComponentModel.dll": {}
}
},
- "System.Reflection.Primitives/4.0.0": {
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
"type": "package",
"dependencies": {
- "System.Runtime": "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.Reflection.Primitives.dll": {}
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.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": {
+ "System.ComponentModel.Primitives/4.0.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "System.ComponentModel": "4.0.0",
+ "System.Runtime": "4.0.20"
},
"compile": {
- "ref/dotnet5.1/System.Resources.ResourceManager.dll": {}
+ "ref/dotnet/System.ComponentModel.Primitives.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ "lib/dotnet/System.ComponentModel.Primitives.dll": {}
}
},
- "System.Runtime/4.0.21-beta-23516": {
+ "System.ComponentModel.TypeConverter/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
- "System.Private.Uri": "4.0.1-beta-23516"
+ "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.4/System.Runtime.dll": {}
+ "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.dll": {}
+ "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "System.Console/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.20"
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ "ref/dotnet5.1/System.Console.dll": {}
}
},
- "System.Runtime.Handles/4.0.0": {
+ "System.Data.Common/4.0.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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.Runtime.Handles.dll": {}
+ "ref/dotnet/System.Data.Common.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ "lib/dotnet/System.Data.Common.dll": {}
}
},
- "System.Runtime.InteropServices/4.0.21-beta-23516": {
+ "System.Diagnostics.Contracts/4.0.1-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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.4/System.Runtime.InteropServices.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ "lib/DNXCore50/System.Diagnostics.Contracts.dll": {}
}
},
- "System.Runtime.Numerics/4.0.0": {
+ "System.Diagnostics.Debug/4.0.11-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": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Runtime.Numerics.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Runtime.Numerics.dll": {}
+ "ref/dotnet5.4/System.Diagnostics.Debug.dll": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.0-beta-23516": {
+ "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.0",
- "System.Runtime": "4.0.20"
+ "System.Diagnostics.Tracing": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Threading": "4.0.0"
},
"compile": {
- "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Runtime.Serialization.Xml/4.0.10": {
+ "System.Diagnostics.StackTrace/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
- "System.Private.DataContractSerialization": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.0.10"
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {}
+ "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {}
}
},
- "System.Security.Claims/4.0.1-beta-23516": {
+ "System.Diagnostics.Tools/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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Security.Claims.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.Tools.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Security.Claims.dll": {}
+ "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
+ "System.Diagnostics.TraceSource/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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.TraceSource.dll": {}
}
},
- "System.Security.Cryptography.Cng/4.0.0-beta-23516": {
+ "System.Diagnostics.Tracing/4.0.20": {
"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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.2/System.Security.Cryptography.Cng.dll": {}
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {}
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
}
},
- "System.Security.Cryptography.Csp/4.0.0-beta-23516": {
+ "System.Dynamic.Runtime/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
- "System.IO": "4.0.10",
- "System.Reflection": "4.0.0",
+ "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.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": {}
+ "ref/dotnet5.4/System.Dynamic.Runtime.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {}
+ "lib/DNXCore50/System.Dynamic.Runtime.dll": {}
}
},
- "System.Security.Cryptography.Encoding/4.0.0-beta-23516": {
+ "System.Globalization/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll": {}
+ "ref/dotnet5.4/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
}
},
- "System.Security.Cryptography.Primitives/4.0.0-beta-23516": {
+ "System.Globalization.Calendars/4.0.0": {
"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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Primitives.dll": {}
+ "ref/dotnet/System.Globalization.Calendars.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
+ "lib/DNXCore50/System.Globalization.Calendars.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
+ "System.Globalization.Extensions/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
+ "System.Globalization": "4.0.0",
"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"
+ "System.Runtime.Extensions": "4.0.0"
},
"compile": {
- "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
+ "ref/dotnet5.1/System.Globalization.Extensions.dll": {}
}
},
- "System.Security.Principal/4.0.1-beta-23516": {
+ "System.IO/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Security.Principal.dll": {}
+ "ref/dotnet5.4/System.IO.dll": {}
},
"runtime": {
- "lib/dotnet5.1/System.Security.Principal.dll": {}
+ "lib/DNXCore50/System.IO.dll": {}
}
},
- "System.ServiceModel.Primitives/4.0.0": {
+ "System.IO.Compression/4.0.1-beta-23409": {
"type": "package",
"dependencies": {
- "System.Private.ServiceModel": "4.0.0"
+ "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.ServiceModel.Primitives.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.ServiceModel.Primitives.dll": {}
+ "ref/dotnet/System.IO.Compression.dll": {}
}
},
- "System.Text.Encoding/4.0.11-beta-23516": {
+ "System.IO.FileSystem/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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.Text.Encoding.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Text.Encoding.dll": {}
+ "ref/dotnet5.4/System.IO.FileSystem.dll": {}
}
},
- "System.Text.Encoding.Extensions/4.0.10": {
+ "System.IO.FileSystem.Primitives/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Text.Encoding": "4.0.10"
+ "System.Runtime": "4.0.20"
},
"compile": {
- "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ "ref/dotnet5.1/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {}
+ "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {}
}
},
- "System.Text.RegularExpressions/4.0.11-beta-23516": {
+ "System.IO.FileSystem.Watcher/4.0.0-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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ "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.Text.RegularExpressions.dll": {}
+ "lib/dotnet5.4/System.Linq.dll": {}
}
},
- "System.Threading/4.0.11-beta-23516": {
+ "System.Linq.Expressions/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Threading.Tasks": "4.0.0"
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.4/System.Threading.dll": {}
+ "ref/dotnet5.4/System.Linq.Expressions.dll": {}
}
},
- "System.Threading.Overlapped/4.0.0": {
+ "System.Linq.Queryable/4.0.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.Handles": "4.0.0"
+ "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.Threading.Overlapped.dll": {}
+ "ref/dotnet/System.Linq.Queryable.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Overlapped.dll": {}
+ "lib/dotnet/System.Linq.Queryable.dll": {}
}
},
- "System.Threading.Tasks/4.0.11-beta-23516": {
+ "System.Net.Http/4.0.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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/dotnet5.4/System.Threading.Tasks.dll": {}
+ "ref/dotnet/System.Net.Http.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Tasks.dll": {}
+ "lib/DNXCore50/System.Net.Http.dll": {}
}
},
- "System.Threading.Thread/4.0.0-beta-23516": {
+ "System.Net.Primitives/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Threading.Thread.dll": {}
+ "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/DNXCore50/System.Threading.Thread.dll": {}
+ "lib/dotnet/System.Net.Requests.dll": {}
}
},
- "System.Threading.ThreadPool/4.0.10-beta-23516": {
+ "System.Net.Sockets/4.0.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.InteropServices": "4.0.0"
+ "System.Net.Primitives": "4.0.10",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.2/System.Threading.ThreadPool.dll": {}
+ "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/DNXCore50/System.Threading.ThreadPool.dll": {}
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
}
},
- "System.Threading.Timer/4.0.0": {
+ "System.Net.WebSockets/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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/dotnet/System.Threading.Timer.dll": {}
+ "ref/dotnet5.1/System.Net.WebSockets.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Timer.dll": {}
+ "lib/dotnet5.4/System.Net.WebSockets.dll": {}
}
},
- "System.Xml.ReaderWriter/4.0.10": {
+ "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.IO.FileSystem": "4.0.0",
- "System.IO.FileSystem.Primitives": "4.0.0",
+ "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.InteropServices": "4.0.20",
+ "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.Tasks": "4.0.10"
+ "System.Threading": "4.0.10",
+ "System.Xml.ReaderWriter": "4.0.10",
+ "System.Xml.XmlSerializer": "4.0.10"
},
"compile": {
- "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ "ref/dnxcore50/_._": {}
},
"runtime": {
- "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ "lib/DNXCore50/System.Private.DataContractSerialization.dll": {}
}
},
- "System.Xml.XmlDocument/4.0.1-beta-23516": {
+ "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.Text.Encoding": "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.Xml.ReaderWriter": "4.0.10"
+ "System.Threading.Overlapped": "4.0.0",
+ "System.Threading.Tasks": "4.0.10"
},
"compile": {
- "ref/dotnet5.1/System.Xml.XmlDocument.dll": {}
+ "ref/dnxcore50/_._": {}
},
"runtime": {
- "lib/dotnet5.4/System.Xml.XmlDocument.dll": {}
+ "lib/DNXCore50/System.Private.Networking.dll": {}
}
},
- "System.Xml.XmlSerializer/4.0.10": {
+ "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.Text.RegularExpressions": "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.XmlDocument": "4.0.0",
+ "System.Xml.XmlSerializer": "4.0.10"
},
"compile": {
- "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ "ref/dnxcore50/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Xml.XmlSerializer.dll": {}
+ "lib/DNXCore50/System.Private.ServiceModel.dll": {}
}
- }
- },
- "DNXCore,Version=v5.0/win7-x64": {
- "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
+ },
+ "System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/dnxcore50/_._": {}
+ }
+ },
+ "System.Reflection/4.1.0-beta-23225": {
"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"
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
+ "ref/dotnet/System.Reflection.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
+ "lib/DNXCore50/System.Reflection.dll": {}
}
},
- "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
+ "System.Reflection.DispatchProxy/4.0.0": {
"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"
+ "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": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {}
}
},
- "Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
+ "System.Reflection.Emit/4.0.0": {
"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"
+ "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": {
- "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
+ "ref/dotnet/System.Reflection.Emit.dll": {}
},
"runtime": {
- "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
+ "lib/DNXCore50/System.Reflection.Emit.dll": {}
}
},
- "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
+ "System.Reflection.Emit.ILGeneration/4.0.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final",
- "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final"
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
+ "System.Reflection.Emit.Lightweight/4.0.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final"
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Emit.ILGeneration": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {}
}
},
- "Microsoft.AspNet.Http/1.0.0-rc1-final": {
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
"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"
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
}
},
- "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
+ "System.Reflection.Primitives/4.0.0": {
"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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "ref/dotnet/System.Reflection.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
}
},
- "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
"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"
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
}
},
- "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
+ "System.Resources.ResourceManager/4.0.1-beta-23516": {
"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"
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
+ "ref/dotnet5.1/System.Resources.ResourceManager.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
}
},
- "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
+ "System.Runtime/4.0.21-beta-23516": {
"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"
+ "System.Private.Uri": "4.0.1-beta-23516"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
+ "ref/dotnet5.4/System.Runtime.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
+ "lib/DNXCore50/System.Runtime.dll": {}
}
},
- "Microsoft.CSharp/4.0.1-beta-23516": {
+ "System.Runtime.Extensions/4.0.11-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"
+ "System.Runtime": "4.0.20"
},
"compile": {
- "ref/dotnet5.1/Microsoft.CSharp.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
}
},
- "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
+ "System.Runtime.Handles/4.0.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
- "System.IO.FileSystem": "4.0.1-beta-23516"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "ref/dotnet/System.Runtime.Handles.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
+ "System.Runtime.InteropServices/4.0.21-beta-23516": {
"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"
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
+ "ref/dotnet5.4/System.Runtime.InteropServices.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": {
+ "System.Runtime.Numerics/4.0.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0-rc1-final",
- "System.Linq": "4.0.1-beta-23516"
+ "System.Globalization": "4.0.10",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Runtime.Extensions": "4.0.10"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "ref/dotnet/System.Runtime.Numerics.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "lib/dotnet/System.Runtime.Numerics.dll": {}
}
},
- "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
+ "System.Runtime.Serialization.Primitives/4.1.0-beta-23516": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": {
+ "System.Runtime.Serialization.Xml/4.0.10": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
+ "System.Private.DataContractSerialization": "4.0.0",
+ "System.Runtime.Serialization.Primitives": "4.0.10"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": {
+ "System.Security.Claims/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final",
- "System.AppContext": "4.0.0"
+ "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": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "ref/dotnet5.1/System.Security.Claims.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "lib/dotnet5.4/System.Security.Claims.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
+ "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
"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"
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Security.Cryptography.Primitives": "4.0.0-beta-23516"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
+ "System.Security.Cryptography.Cng/4.0.0-beta-23516": {
"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": {}
- },
+ "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/Microsoft.Extensions.DependencyInjection.dll": {}
+ "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
+ "System.Security.Cryptography.Csp/4.0.0-beta-23516": {
"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"
+ "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": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Csp.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0-rc1-final": {
+ "System.Security.Cryptography.Encoding/4.0.0-beta-23516": {
"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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ "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/Microsoft.Extensions.Logging.dll": {}
+ "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
+ "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
"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"
+ "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": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "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.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/dotnet5.1/System.Security.Principal.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": {
+ "System.ServiceModel.Primitives/4.0.0": {
"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"
+ "System.Private.ServiceModel": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "ref/dotnet/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "lib/DNXCore50/System.ServiceModel.Primitives.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
+ "System.Text.Encoding/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1-beta-23516",
- "System.Runtime": "4.0.21-beta-23516"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
+ "ref/dotnet5.4/System.Text.Encoding.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
+ "lib/DNXCore50/System.Text.Encoding.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": {
+ "System.Text.Encoding.Extensions/4.0.10": {
"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"
+ "System.Runtime": "4.0.0",
+ "System.Text.Encoding": "4.0.10"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
+ "System.Text.RegularExpressions/4.0.11-beta-23516": {
"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"
+ "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": {
- "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
}
},
- "Microsoft.Win32.Primitives/4.0.0": {
+ "System.Threading/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20"
+ "System.Runtime": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
},
"compile": {
- "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ "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/dotnet/Microsoft.Win32.Primitives.dll": {}
+ "lib/DNXCore50/System.Threading.Overlapped.dll": {}
}
},
- "Newtonsoft.Json/6.0.6": {
+ "System.Threading.Tasks/4.0.11-beta-23516": {
"type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
"compile": {
- "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
+ "ref/dotnet5.4/System.Threading.Tasks.dll": {}
},
"runtime": {
- "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
+ "lib/DNXCore50/System.Threading.Tasks.dll": {}
}
},
- "NLog/4.4.0-alpha1": {
+ "System.Threading.Thread/4.0.0-beta-23516": {
"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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dnxcore50/NLog.dll": {}
+ "ref/dotnet5.1/System.Threading.Thread.dll": {}
},
"runtime": {
- "lib/dnxcore50/NLog.dll": {}
+ "lib/DNXCore50/System.Threading.Thread.dll": {}
}
},
- "runtime.win7.System.Console/4.0.0-beta-23516": {
+ "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.Threading": "4.0.10",
+ "System.Text.RegularExpressions": "4.0.10",
"System.Threading.Tasks": "4.0.10"
},
"compile": {
- "ref/dotnet/_._": {}
+ "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.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": {
- "runtimes/win7/lib/dotnet5.4/System.Console.dll": {}
+ "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {}
}
},
- "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23516": {
+ "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/_._": {}
+ "ref/dotnet/System.Reflection.Emit.dll": {}
},
"runtime": {
- "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {}
+ "lib/DNXCore50/System.Reflection.Emit.dll": {}
}
},
- "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23516": {
+ "System.Reflection.Emit.ILGeneration/4.0.0": {
"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"
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/_._": {}
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.Diagnostics.TraceSource.dll": {}
+ "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "runtime.win7.System.Globalization.Extensions/4.0.1-beta-23516": {
+ "System.Reflection.Emit.Lightweight/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",
- "System.Runtime.InteropServices": "4.0.20"
+ "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/_._": {}
+ "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.Globalization.Extensions.dll": {}
+ "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {}
}
},
- "runtime.win7.System.IO.Compression/4.0.1-beta-23409": {
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
"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"
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/_._": {}
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet/System.IO.Compression.dll": {}
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
}
},
- "runtime.win7.System.IO.FileSystem/4.0.1-beta-23516": {
+ "System.Reflection.Primitives/4.0.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.10",
- "System.IO": "4.0.10",
- "System.IO.FileSystem.Primitives": "4.0.0",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Runtime": "4.0.20",
- "System.Runtime.Extensions": "4.0.10",
- "System.Runtime.Handles": "4.0.0",
- "System.Runtime.InteropServices": "4.0.20",
- "System.Text.Encoding": "4.0.10",
- "System.Text.Encoding.Extensions": "4.0.10",
- "System.Threading": "4.0.10",
- "System.Threading.Overlapped": "4.0.0",
- "System.Threading.Tasks": "4.0.10"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/_._": {}
+ "ref/dotnet/System.Reflection.Primitives.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.dll": {}
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
}
},
- "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-beta-23516": {
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
"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"
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/_._": {}
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.IO.FileSystem.Watcher.dll": {}
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
}
},
- "runtime.win7.System.Net.Primitives/4.0.11-beta-23516": {
+ "System.Resources.ResourceManager/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
- "System.Private.Networking": "4.0.1-beta-23516"
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/_._": {}
+ "ref/dotnet5.1/System.Resources.ResourceManager.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Net.Primitives.dll": {}
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
}
},
- "runtime.win7.System.Private.Uri/4.0.1-beta-23516": {
+ "System.Runtime/4.0.21-beta-23516": {
"type": "package",
+ "dependencies": {
+ "System.Private.Uri": "4.0.1-beta-23516"
+ },
"compile": {
- "ref/dotnet/_._": {}
+ "ref/dotnet5.4/System.Runtime.dll": {}
},
"runtime": {
- "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {}
+ "lib/DNXCore50/System.Runtime.dll": {}
}
},
- "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23516": {
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
"type": "package",
- "compile": {
- "ref/dotnet/_._": {}
+ "dependencies": {
+ "System.Runtime": "4.0.20"
},
- "runtime": {
- "lib/DNXCore50/System.Runtime.Extensions.dll": {}
+ "compile": {
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
}
},
- "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
+ "System.Runtime.Handles/4.0.0": {
"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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/_._": {}
+ "ref/dotnet/System.Runtime.Handles.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Algorithms.dll": {}
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
}
},
- "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-beta-23516": {
+ "System.Runtime.InteropServices/4.0.21-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"
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
},
"compile": {
- "ref/dotnet/_._": {}
+ "ref/dotnet5.4/System.Runtime.InteropServices.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.Encoding.dll": {}
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
}
},
- "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
+ "System.Runtime.Numerics/4.0.0": {
"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"
+ "System.Runtime.Extensions": "4.0.10"
},
"compile": {
- "ref/dotnet/_._": {}
+ "ref/dotnet/System.Runtime.Numerics.dll": {}
},
"runtime": {
- "runtimes/win7/lib/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
+ "lib/dotnet/System.Runtime.Numerics.dll": {}
}
},
- "runtime.win7.System.Threading/4.0.11-beta-23516": {
+ "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/dotnet/_._": {}
+ "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
- "runtimes/win7/lib/DNXCore50/System.Threading.dll": {}
+ "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "runtime.win7-x64.System.IO.Compression.clrcompression/4.0.1-beta-23409": {
+ "System.Runtime.Serialization.Xml/4.0.10": {
"type": "package",
- "native": {
- "runtimes/win7-x64/native/clrcompression.dll": {}
+ "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.AppContext/4.0.0": {
+ "System.Security.Claims/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Collections": "4.0.0",
+ "System.Diagnostics.Debug": "4.0.0",
+ "System.Globalization": "4.0.0",
+ "System.IO": "4.0.0",
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Runtime.Extensions": "4.0.0",
+ "System.Security.Principal": "4.0.0"
},
"compile": {
- "ref/dotnet/System.AppContext.dll": {}
+ "ref/dotnet5.1/System.Security.Claims.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.AppContext.dll": {}
+ "lib/dotnet5.4/System.Security.Claims.dll": {}
}
},
- "System.Collections/4.0.11-beta-23516": {
+ "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.21-beta-23516"
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Security.Cryptography.Primitives": "4.0.0-beta-23516"
},
"compile": {
- "ref/dotnet5.4/System.Collections.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Collections.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {}
}
},
- "System.Collections.Concurrent/4.0.11-beta-23516": {
+ "System.Security.Cryptography.Cng/4.0.0-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.IO": "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"
+ "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.4/System.Collections.Concurrent.dll": {}
+ "ref/dotnet5.2/System.Security.Cryptography.Cng.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Collections.Concurrent.dll": {}
+ "lib/dotnet5.4/System.Security.Cryptography.Cng.dll": {}
}
},
- "System.Collections.NonGeneric/4.0.0": {
+ "System.Security.Cryptography.Csp/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.10",
- "System.Globalization": "4.0.10",
+ "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/dotnet/System.Collections.NonGeneric.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Csp.dll": {}
},
"runtime": {
- "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {}
}
},
- "System.Collections.Specialized/4.0.0": {
+ "System.Security.Cryptography.Encoding/4.0.0-beta-23516": {
"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"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Collections.Specialized.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.Collections.Specialized.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll": {}
}
},
- "System.ComponentModel/4.0.1-beta-23516": {
+ "System.Security.Cryptography.Primitives/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.20"
+ "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.ComponentModel.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.ComponentModel.dll": {}
+ "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
}
},
- "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
"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"
+ "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/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
}
},
- "System.ComponentModel.Primitives/4.0.0": {
+ "System.Security.Principal/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.0",
- "System.Runtime": "4.0.20"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/System.ComponentModel.Primitives.dll": {}
+ "ref/dotnet5.1/System.Security.Principal.dll": {}
},
"runtime": {
- "lib/dotnet/System.ComponentModel.Primitives.dll": {}
+ "lib/dotnet5.1/System.Security.Principal.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.0.1-beta-23516": {
+ "System.ServiceModel.Primitives/4.0.0": {
"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"
+ "System.Private.ServiceModel": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {}
+ "ref/dotnet/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll": {}
+ "lib/DNXCore50/System.ServiceModel.Primitives.dll": {}
}
},
- "System.Console/4.0.0-beta-23516": {
+ "System.Text.Encoding/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
- "System.IO": "4.0.0",
"System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Console.dll": {}
+ "ref/dotnet5.4/System.Text.Encoding.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Text.Encoding.dll": {}
}
},
- "System.Data.Common/4.0.0": {
+ "System.Text.Encoding.Extensions/4.0.10": {
"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"
+ "System.Runtime": "4.0.0",
+ "System.Text.Encoding": "4.0.10"
},
"compile": {
- "ref/dotnet/System.Data.Common.dll": {}
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
- "lib/dotnet/System.Data.Common.dll": {}
+ "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1-beta-23516": {
+ "System.Text.RegularExpressions/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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.1/System.Diagnostics.Contracts.dll": {}
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Contracts.dll": {}
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11-beta-23516": {
+ "System.Threading/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Runtime": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
},
"compile": {
- "ref/dotnet5.4/System.Diagnostics.Debug.dll": {}
+ "ref/dotnet5.4/System.Threading.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
+ "System.Threading.Overlapped/4.0.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Tracing": "4.0.0",
"System.Runtime": "4.0.0",
- "System.Threading": "4.0.0"
+ "System.Runtime.Handles": "4.0.0"
},
"compile": {
- "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "ref/dotnet/System.Threading.Overlapped.dll": {}
},
"runtime": {
- "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/DNXCore50/System.Threading.Overlapped.dll": {}
}
},
- "System.Diagnostics.StackTrace/4.0.1-beta-23516": {
+ "System.Threading.Tasks/4.0.11-beta-23516": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.0.0",
"System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Diagnostics.StackTrace.dll": {}
+ "ref/dotnet5.4/System.Threading.Tasks.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {}
+ "lib/DNXCore50/System.Threading.Tasks.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1-beta-23516": {
+ "System.Threading.Thread/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Diagnostics.Tools.dll": {}
+ "ref/dotnet5.1/System.Threading.Thread.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
+ "lib/DNXCore50/System.Threading.Thread.dll": {}
}
},
- "System.Diagnostics.TraceSource/4.0.0-beta-23516": {
+ "System.Threading.ThreadPool/4.0.10-beta-23516": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Runtime": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Diagnostics.TraceSource.dll": {}
+ "ref/dotnet5.2/System.Threading.ThreadPool.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
}
},
- "System.Diagnostics.Tracing/4.0.20": {
+ "System.Threading.Timer/4.0.0": {
"type": "package",
"dependencies": {
"System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ "ref/dotnet/System.Threading.Timer.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
+ "lib/DNXCore50/System.Threading.Timer.dll": {}
}
},
- "System.Dynamic.Runtime/4.0.11-beta-23516": {
+ "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.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.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.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"
+ "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/dotnet5.4/System.Globalization.dll": {}
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Globalization.dll": {}
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Globalization.Calendars/4.0.0": {
+ "System.Xml.XmlDocument/4.0.1-beta-23516": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.0",
- "System.Runtime": "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.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/dotnet/System.Globalization.Calendars.dll": {}
+ "ref/dotnet5.1/System.Xml.XmlDocument.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": {}
+ "lib/dotnet5.4/System.Xml.XmlDocument.dll": {}
}
},
- "System.IO/4.0.11-beta-23516": {
+ "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.Text.Encoding": "4.0.0",
- "System.Threading.Tasks": "4.0.0"
+ "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/dotnet5.4/System.IO.dll": {}
+ "ref/dotnet/System.Xml.XmlSerializer.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.IO.dll": {}
+ "lib/DNXCore50/System.Xml.XmlSerializer.dll": {}
}
- },
- "System.IO.Compression/4.0.1-beta-23409": {
+ }
+ },
+ "DNX,Version=v4.5.1/win7-x86": {
+ "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"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"
+ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
},
- "compile": {
- "ref/dotnet5.4/System.IO.FileSystem.dll": {}
+ "runtime": {
+ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1-beta-23516": {
+ "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.20"
+ "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.IO.FileSystem.Primitives.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0-beta-23516": {
+ "Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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",
+ "System.Runtime"
+ ],
"compile": {
- "ref/dotnet5.1/System.IO.FileSystem.Watcher.dll": {}
+ "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
}
},
- "System.Linq/4.0.1-beta-23516": {
+ "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet5.1/System.Linq.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Linq.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
}
},
- "System.Linq.Expressions/4.0.11-beta-23516": {
+ "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.4/System.Linq.Expressions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
}
},
- "System.Linq.Queryable/4.0.0": {
+ "Microsoft.AspNet.Http/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/System.Linq.Queryable.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.dll": {}
},
"runtime": {
- "lib/dotnet/System.Linq.Queryable.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.dll": {}
}
},
- "System.Net.Http/4.0.0": {
+ "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/System.Net.Http.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Net.Http.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
}
},
- "System.Net.Primitives/4.0.11-beta-23516": {
+ "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.Handles": "4.0.0"
+ "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": {
- "ref/dotnet5.4/System.Net.Primitives.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
}
},
- "System.Net.Requests/4.0.10": {
+ "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.Net.Requests.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
},
"runtime": {
- "lib/dotnet/System.Net.Requests.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
}
},
- "System.Net.Sockets/4.0.0": {
+ "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Net.Primitives": "4.0.10",
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet/System.Net.Sockets.dll": {}
+ "lib/net451/Microsoft.AspNet.WebUtilities.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNet.WebUtilities.dll": {}
}
},
- "System.Net.WebHeaderCollection/4.0.0": {
+ "Microsoft.CSharp/4.0.1-beta-23516": {
"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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp"
+ ],
"compile": {
- "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Net.WebSockets/4.0.0-beta-23516": {
+ "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.Net.WebSockets.dll": {}
+ "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Net.WebSockets.dll": {}
+ "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
}
},
- "System.ObjectModel/4.0.10": {
+ "Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.ObjectModel.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.dll": {}
},
"runtime": {
- "lib/dotnet/System.ObjectModel.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.dll": {}
}
},
- "System.Private.DataContractSerialization/4.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dnxcore50/_._": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Private.DataContractSerialization.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "System.Private.Networking/4.0.1-beta-23516": {
+ "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dnxcore50/_._": {}
+ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Private.Networking.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.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"
+ },
+ "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": {
- "ref/dnxcore50/_._": {}
+ "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Private.ServiceModel.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "System.Private.Uri/4.0.1-beta-23516": {
+ "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": {
- "ref/dnxcore50/_._": {}
+ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "System.Reflection/4.1.0-beta-23225": {
+ "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.IO": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Runtime": "4.0.20"
+ "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": {
- "ref/dotnet/System.Reflection.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "System.Reflection.DispatchProxy/4.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "System.Reflection.Emit/4.0.0": {
+ "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": {
- "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"
+ "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": {
- "ref/dotnet/System.Reflection.Emit.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Emit.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
"type": "package",
- "dependencies": {
- "System.Reflection": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "System.Reflection.Emit.Lightweight/4.0.0": {
+ "Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {}
+ "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {}
+ "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
"type": "package",
- "dependencies": {
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ "lib/net45/Newtonsoft.Json.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ "lib/net45/Newtonsoft.Json.dll": {}
}
},
- "System.Reflection.Primitives/4.0.0": {
+ "NLog/4.4.0-alpha1": {
"type": "package",
- "dependencies": {
- "System.Runtime": "4.0.0"
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Configuration",
+ "System.Core",
+ "System.Data",
+ "System.Drawing",
+ "System.IO.Compression",
+ "System.Runtime",
+ "System.Runtime.Serialization",
+ "System.ServiceModel",
+ "System.Transactions",
+ "System.Xml"
+ ],
+ "compile": {
+ "lib/dnx451/NLog.dll": {}
},
+ "runtime": {
+ "lib/dnx451/NLog.dll": {}
+ }
+ },
+ "runtime.win7.System.Threading/4.0.11-beta-23516": {
+ "type": "package",
"compile": {
- "ref/dotnet/System.Reflection.Primitives.dll": {}
+ "ref/dotnet/_._": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "System.Diagnostics.Tracing": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Threading": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1-beta-23516": {
+ "System.Diagnostics.Tracing/4.0.0": {
"type": "package",
- "dependencies": {
- "System.Globalization": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "compile": {
+ "ref/net45/_._": {}
},
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
"compile": {
- "ref/dotnet5.1/System.Resources.ResourceManager.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ "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/_._": {}
+ }
+ }
+ },
+ "DNX,Version=v4.5.1/win7-x64": {
+ "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Private.Uri": "4.0.1-beta-23516"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.4/System.Runtime.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
}
},
- "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.20"
+ "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
}
},
- "System.Runtime.Handles/4.0.0": {
+ "Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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",
+ "System.Runtime"
+ ],
"compile": {
- "ref/dotnet/System.Runtime.Handles.dll": {}
+ "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
}
},
- "System.Runtime.InteropServices/4.0.21-beta-23516": {
+ "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet5.4/System.Runtime.InteropServices.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
}
},
- "System.Runtime.Numerics/4.0.0": {
+ "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/System.Runtime.Numerics.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet/System.Runtime.Numerics.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.0-beta-23516": {
+ "Microsoft.AspNet.Http/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.0",
- "System.Runtime": "4.0.20"
+ "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": {
- "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.dll": {}
}
},
- "System.Runtime.Serialization.Xml/4.0.10": {
+ "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Private.DataContractSerialization": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.0.10"
+ "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": {
- "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
}
},
- "System.Security.Claims/4.0.1-beta-23516": {
+ "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet5.1/System.Security.Claims.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Security.Claims.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
+ "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.IO": "4.0.0",
- "System.Runtime": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0-beta-23516"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
}
},
- "System.Security.Cryptography.Cng/4.0.0-beta-23516": {
+ "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet5.2/System.Security.Cryptography.Cng.dll": {}
+ "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/dotnet5.4/System.Security.Cryptography.Cng.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Security.Cryptography.Csp/4.0.0-beta-23516": {
+ "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Csp.dll": {}
+ "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {}
+ "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
}
},
- "System.Security.Cryptography.Encoding/4.0.0-beta-23516": {
+ "Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Configuration.dll": {}
}
},
- "System.Security.Cryptography.Primitives/4.0.0-beta-23516": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Primitives.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
+ "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
"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"
+ "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {}
}
},
- "System.Security.Principal/4.0.1-beta-23516": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.Security.Principal.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
},
"runtime": {
- "lib/dotnet5.1/System.Security.Principal.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "System.ServiceModel.Primitives/4.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Private.ServiceModel": "4.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.ServiceModel.Primitives.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.ServiceModel.Primitives.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "System.Text.Encoding/4.0.11-beta-23516": {
+ "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.4/System.Text.Encoding.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Text.Encoding.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "System.Text.Encoding.Extensions/4.0.10": {
+ "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Text.Encoding": "4.0.10"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "System.Text.RegularExpressions/4.0.11-beta-23516": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
"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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "System.Threading/4.0.11-beta-23516": {
+ "Microsoft.Extensions.Logging/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Threading.Tasks": "4.0.0"
+ "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": {
- "ref/dotnet5.4/System.Threading.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
}
},
- "System.Threading.Overlapped/4.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
"type": "package",
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.Handles": "4.0.0"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.Threading.Overlapped.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Overlapped.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "System.Threading.Tasks/4.0.11-beta-23516": {
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": {
"type": "package",
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.4/System.Threading.Tasks.dll": {}
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Tasks.dll": {}
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "System.Threading.Thread/4.0.0-beta-23516": {
+ "Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
"type": "package",
- "dependencies": {
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.1/System.Threading.Thread.dll": {}
+ "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Thread.dll": {}
+ "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
}
},
- "System.Threading.ThreadPool/4.0.10-beta-23516": {
+ "Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
"type": "package",
- "dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.InteropServices": "4.0.0"
+ "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": {
- "ref/dotnet5.2/System.Threading.ThreadPool.dll": {}
+ "lib/net45/Newtonsoft.Json.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
+ "lib/net45/Newtonsoft.Json.dll": {}
}
},
- "System.Threading.Timer/4.0.0": {
+ "NLog/4.4.0-alpha1": {
"type": "package",
- "dependencies": {
- "System.Runtime": "4.0.0"
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Configuration",
+ "System.Core",
+ "System.Data",
+ "System.Drawing",
+ "System.IO.Compression",
+ "System.Runtime",
+ "System.Runtime.Serialization",
+ "System.ServiceModel",
+ "System.Transactions",
+ "System.Xml"
+ ],
+ "compile": {
+ "lib/dnx451/NLog.dll": {}
},
+ "runtime": {
+ "lib/dnx451/NLog.dll": {}
+ }
+ },
+ "runtime.win7.System.Threading/4.0.11-beta-23516": {
+ "type": "package",
"compile": {
- "ref/dotnet/System.Threading.Timer.dll": {}
+ "ref/dotnet/_._": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Timer.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Xml.ReaderWriter/4.0.10": {
+ "System.Diagnostics.DiagnosticSource/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.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"
+ "System.Diagnostics.Tracing": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Threading": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Xml.XmlDocument/4.0.1-beta-23516": {
+ "System.Diagnostics.Tracing/4.0.0": {
"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/net45/_._": {}
},
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
"compile": {
- "ref/dotnet5.1/System.Xml.XmlDocument.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet5.4/System.Xml.XmlDocument.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Xml.XmlSerializer/4.0.10": {
+ "System.Runtime/4.0.21-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.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/net45/_._": {}
},
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Threading/4.0.11-beta-23516": {
+ "type": "package",
"compile": {
- "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Xml.XmlSerializer.dll": {}
+ "lib/net45/_._": {}
}
}
}
@@ -6876,6 +8580,52 @@
"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",
"serviceable": true,
@@ -9191,6 +10941,15 @@
"System.Threading >= 4.0.11-beta-23516",
"NLog >= 4.4.0-alpha1",
"Microsoft.AspNet.Hosting >= 1.0.0-rc1-final"
+ ],
+ "DNX,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",
+ "NLog >= 4.4.0-alpha1",
+ "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final"
]
}
}
\ No newline at end of file
From 72531107ec141723d19c88c87e8af4c5e5511291 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 7 Feb 2016 23:29:35 +0100
Subject: [PATCH 04/21] Fix unit tests for autoload issue
---
.../AspNetSessionValueLayoutRendererTests.cs | 11 +++++++++++
.../TestInvolvingAspNetHttpContext.cs | 14 +++++++++++++-
2 files changed, 24 insertions(+), 1 deletion(-)
diff --git a/NLog.Web.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs b/NLog.Web.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs
index 6438c63f..84044155 100644
--- a/NLog.Web.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs
+++ b/NLog.Web.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/TestInvolvingAspNetHttpContext.cs b/NLog.Web.Tests/LayoutRenderers/TestInvolvingAspNetHttpContext.cs
index 7414a8f1..459652b9 100644
--- a/NLog.Web.Tests/LayoutRenderers/TestInvolvingAspNetHttpContext.cs
+++ b/NLog.Web.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);
From 937d5dfbb6a5f428e597aa332a7bf2aec467ef4f Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 7 Feb 2016 23:44:23 +0100
Subject: [PATCH 05/21] added before_build
---
appveyor.yml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/appveyor.yml b/appveyor.yml
index 42032732..08b9f99e 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -14,6 +14,11 @@ before_build:
- nuget restore -DisableParallelProcessing
matrix:
fast_finish: true
+before_build:
+- cmd: >-
+ dnvm install latest
+
+ dnu restore --quiet
build:
publish_nuget: true
publish_nuget_symbols: true
From 6549dd81321dd8ed15a7fbf215e2a760353f2c52 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 7 Feb 2016 23:45:25 +0100
Subject: [PATCH 06/21] Fix appveyor.yml
---
appveyor.yml | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/appveyor.yml b/appveyor.yml
index 08b9f99e..d0b903f1 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -10,15 +10,13 @@ assembly_info:
assembly_informational_version: '4.1'
nuget:
project_feed: true
-before_build:
- - nuget restore -DisableParallelProcessing
-matrix:
- fast_finish: true
before_build:
- cmd: >-
dnvm install latest
- dnu restore --quiet
+ dnu restore --quiet
+matrix:
+ fast_finish: true
build:
publish_nuget: true
publish_nuget_symbols: true
From dd694fe2367d196fbe8803e719bfb2447fe5a9f9 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Mon, 8 Feb 2016 00:06:58 +0100
Subject: [PATCH 07/21] move unit tests to net451
---
NLog.Web.Tests/project.json | 11 +-
NLog.Web.Tests/project.lock.json | 740 +------------------------------
2 files changed, 17 insertions(+), 734 deletions(-)
diff --git a/NLog.Web.Tests/project.json b/NLog.Web.Tests/project.json
index 9ffef46b..86358b70 100644
--- a/NLog.Web.Tests/project.json
+++ b/NLog.Web.Tests/project.json
@@ -8,19 +8,18 @@
"dependencies": {
"xunit": "2.1.0",
"NSubstitute": "1.9.2",
- "xunit.runner.dnx": "2.1.0-rc1-build204",
+
"NLog.Web": "1.0.0-*"
},
- "commands": {
- "test": "xunit.runner.dnx"
- },
+
"frameworks": {
- "dnx451": {
+ "net451": {
"dependencies": {
},
"frameworkAssemblies": {
"System": "4.0.0.0",
- "System.Runtime": "4.0.10.0"
+ "System.Runtime": "4.0.10.0",
+ "System.Xml": "4.0.0.0"
}
}
diff --git a/NLog.Web.Tests/project.lock.json b/NLog.Web.Tests/project.lock.json
index 254b730a..3b691dbb 100644
--- a/NLog.Web.Tests/project.lock.json
+++ b/NLog.Web.Tests/project.lock.json
@@ -2,137 +2,7 @@
"locked": false,
"version": 2,
"targets": {
- "DNX,Version=v4.5.1": {
- "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.Dnx.TestHost/1.0.0-rc1-final": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
- "Newtonsoft.Json": "6.0.6"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core",
- "System.Runtime",
- "System.Threading.Tasks"
- ],
- "compile": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- },
- "runtime": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- }
- },
- "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
- "compile": {
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
- },
- "runtime": {
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.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": {}
- }
- },
- "Newtonsoft.Json/7.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/net45/Newtonsoft.Json.dll": {}
- }
- },
+ ".NETFramework,Version=v4.5.1": {
"NLog/4.0.1": {
"type": "package",
"compile": {
@@ -213,195 +83,14 @@
"xunit.extensibility.core": "[2.1.0]"
},
"compile": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
+ "lib/net45/xunit.execution.desktop.dll": {}
},
"runtime": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
- }
- },
- "xunit.runner.dnx/2.1.0-rc1-build204": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
- "xunit.runner.reporters": "2.1.0"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Collections",
- "System.Core",
- "System.Threading",
- "System.Xml",
- "System.Xml.Linq",
- "System.Xml.XDocument"
- ],
- "compile": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- }
- },
- "xunit.runner.reporters/2.1.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "7.0.1",
- "xunit.runner.utility": "[2.1.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- }
- },
- "xunit.runner.utility/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.abstractions": "[2.0.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ "lib/net45/xunit.execution.desktop.dll": {}
}
}
},
- "DNX,Version=v4.5.1/win7-x86": {
- "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.Dnx.TestHost/1.0.0-rc1-final": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
- "Newtonsoft.Json": "6.0.6"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core",
- "System.Runtime",
- "System.Threading.Tasks"
- ],
- "compile": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- },
- "runtime": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- }
- },
- "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
- "compile": {
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
- },
- "runtime": {
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.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": {}
- }
- },
- "Newtonsoft.Json/7.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/net45/Newtonsoft.Json.dll": {}
- }
- },
+ ".NETFramework,Version=v4.5.1/win7-x86": {
"NLog/4.0.1": {
"type": "package",
"compile": {
@@ -482,195 +171,14 @@
"xunit.extensibility.core": "[2.1.0]"
},
"compile": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
+ "lib/net45/xunit.execution.desktop.dll": {}
},
"runtime": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
- }
- },
- "xunit.runner.dnx/2.1.0-rc1-build204": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
- "xunit.runner.reporters": "2.1.0"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Collections",
- "System.Core",
- "System.Threading",
- "System.Xml",
- "System.Xml.Linq",
- "System.Xml.XDocument"
- ],
- "compile": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- }
- },
- "xunit.runner.reporters/2.1.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "7.0.1",
- "xunit.runner.utility": "[2.1.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- }
- },
- "xunit.runner.utility/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.abstractions": "[2.0.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ "lib/net45/xunit.execution.desktop.dll": {}
}
}
},
- "DNX,Version=v4.5.1/win7-x64": {
- "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.Dnx.TestHost/1.0.0-rc1-final": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
- "Newtonsoft.Json": "6.0.6"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core",
- "System.Runtime",
- "System.Threading.Tasks"
- ],
- "compile": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- },
- "runtime": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- }
- },
- "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
- "compile": {
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
- },
- "runtime": {
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.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": {}
- }
- },
- "Newtonsoft.Json/7.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/net45/Newtonsoft.Json.dll": {}
- }
- },
+ ".NETFramework,Version=v4.5.1/win7-x64": {
"NLog/4.0.1": {
"type": "package",
"compile": {
@@ -751,61 +259,10 @@
"xunit.extensibility.core": "[2.1.0]"
},
"compile": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
- }
- },
- "xunit.runner.dnx/2.1.0-rc1-build204": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
- "xunit.runner.reporters": "2.1.0"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Collections",
- "System.Core",
- "System.Threading",
- "System.Xml",
- "System.Xml.Linq",
- "System.Xml.XDocument"
- ],
- "compile": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- }
- },
- "xunit.runner.reporters/2.1.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "7.0.1",
- "xunit.runner.utility": "[2.1.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ "lib/net45/xunit.execution.desktop.dll": {}
},
"runtime": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- }
- },
- "xunit.runner.utility/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.abstractions": "[2.0.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ "lib/net45/xunit.execution.desktop.dll": {}
}
}
}
@@ -815,133 +272,6 @@
"type": "project",
"path": "../NLog.Web/project.json"
},
- "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "serviceable": true,
- "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.Dnx.TestHost/1.0.0-rc1-final": {
- "type": "package",
- "serviceable": true,
- "sha512": "f5lDXCh4tLXXWHcuNpiyQLiOuV8HB+UjWeL70hrHyaBcssA6Oxa7KB3R/arddVwXuaXeBuGm+HVheuyhQCYGig==",
- "files": [
- "app/project.json",
- "lib/dnx451/Microsoft.Dnx.TestHost.dll",
- "lib/dnx451/Microsoft.Dnx.TestHost.xml",
- "lib/dnxcore50/Microsoft.Dnx.TestHost.dll",
- "lib/dnxcore50/Microsoft.Dnx.TestHost.xml",
- "Microsoft.Dnx.TestHost.1.0.0-rc1-final.nupkg",
- "Microsoft.Dnx.TestHost.1.0.0-rc1-final.nupkg.sha512",
- "Microsoft.Dnx.TestHost.nuspec"
- ]
- },
- "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "serviceable": true,
- "sha512": "AKeTdr5IdJQaXWw5jMyFOmmWicXt6V6WNQ7l67yBpSLsrJwYjtPg++XMmDGZVTd2CHcjzgMwz3iQfhCtMR76NQ==",
- "files": [
- "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll",
- "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.xml",
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll",
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.xml",
- "Microsoft.Dnx.Testing.Abstractions.1.0.0-rc1-final.nupkg",
- "Microsoft.Dnx.Testing.Abstractions.1.0.0-rc1-final.nupkg.sha512",
- "Microsoft.Dnx.Testing.Abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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"
- ]
- },
- "Newtonsoft.Json/7.0.1": {
- "type": "package",
- "sha512": "q3V4KLetMLnt1gpAVWgtXnHjKs0UG/RalBc29u2ZKxd5t5Ze4JBL5WiiYIklJyK/5CRiIiNwigVQUo0FgbsuWA==",
- "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/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+dnxcore50/Newtonsoft.Json.dll",
- "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml",
- "Newtonsoft.Json.7.0.1.nupkg",
- "Newtonsoft.Json.7.0.1.nupkg.sha512",
- "Newtonsoft.Json.nuspec",
- "tools/install.ps1"
- ]
- },
"NLog/4.0.1": {
"type": "package",
"sha512": "ux2tUa7jkDtroJMSsrXMsHiqNVDHgbcGfFWFHg3XZg+nQNIRGZY2/emJYfjukmR+cHoTGIl8B0mYLl+zWScleg==",
@@ -1097,64 +427,18 @@
"xunit.extensibility.execution.2.1.0.nupkg.sha512",
"xunit.extensibility.execution.nuspec"
]
- },
- "xunit.runner.dnx/2.1.0-rc1-build204": {
- "type": "package",
- "sha512": "GUtWIQN3h7QGJdp5RTgvbPVjdWC7tXIRZhzpW8txNDC9nbMph4/TWbVEZKCGUOsLvE5BZg3icRGb6JR3ZwBADA==",
- "files": [
- "lib/dnx451/xunit.runner.dnx.dll",
- "lib/dnx451/xunit.runner.dnx.xml",
- "lib/dnxcore50/xunit.runner.dnx.dll",
- "lib/dnxcore50/xunit.runner.dnx.xml",
- "xunit.runner.dnx.2.1.0-rc1-build204.nupkg",
- "xunit.runner.dnx.2.1.0-rc1-build204.nupkg.sha512",
- "xunit.runner.dnx.nuspec"
- ]
- },
- "xunit.runner.reporters/2.1.0": {
- "type": "package",
- "sha512": "ja0kJrvwSiho2TRFpfHfa+6tGJI5edcyD8fdekTkjn7Us17PbGqglIihRe8sR9YFAmS4ipEC8+7CXOM/b69ENQ==",
- "files": [
- "lib/dnx451/xunit.runner.reporters.dotnet.dll",
- "lib/dotnet/xunit.runner.reporters.dotnet.dll",
- "lib/net45/xunit.runner.reporters.desktop.dll",
- "xunit.runner.reporters.2.1.0.nupkg",
- "xunit.runner.reporters.2.1.0.nupkg.sha512",
- "xunit.runner.reporters.nuspec"
- ]
- },
- "xunit.runner.utility/2.1.0": {
- "type": "package",
- "sha512": "jJJHROwskIhdQuYw7exe7KaW20dOCa+lzV/lY7Zdh1ZZzdUPpScMi9ReJIutqiyjhemGF8V/GaMIPrcjyZ4ioQ==",
- "files": [
- "lib/dnx451/xunit.runner.utility.dotnet.dll",
- "lib/dnx451/xunit.runner.utility.dotnet.pdb",
- "lib/dnx451/xunit.runner.utility.dotnet.xml",
- "lib/dotnet/xunit.runner.utility.dotnet.dll",
- "lib/dotnet/xunit.runner.utility.dotnet.pdb",
- "lib/dotnet/xunit.runner.utility.dotnet.xml",
- "lib/net35/xunit.runner.utility.desktop.dll",
- "lib/net35/xunit.runner.utility.desktop.pdb",
- "lib/net35/xunit.runner.utility.desktop.xml",
- "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.dll",
- "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.pdb",
- "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.xml",
- "xunit.runner.utility.2.1.0.nupkg",
- "xunit.runner.utility.2.1.0.nupkg.sha512",
- "xunit.runner.utility.nuspec"
- ]
}
},
"projectFileDependencyGroups": {
"": [
"xunit >= 2.1.0",
"NSubstitute >= 1.9.2",
- "xunit.runner.dnx >= 2.1.0-rc1-build204",
"NLog.Web >= 1.0.0-*"
],
- "DNX,Version=v4.5.1": [
+ ".NETFramework,Version=v4.5.1": [
"fx/System >= 4.0.0",
- "fx/System.Runtime >= 4.0.10"
+ "fx/System.Runtime >= 4.0.10",
+ "fx/System.Xml >= 4.0.0"
]
}
}
\ No newline at end of file
From 8d56ef9661504d49bca7e3d02fdebbddcce60d4d Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Mon, 8 Feb 2016 00:37:03 +0100
Subject: [PATCH 08/21] updated assembly path
---
appveyor.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/appveyor.yml b/appveyor.yml
index 5d7d3638..389c8e8c 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -24,7 +24,7 @@ build:
deploy: off
test_script:
- nuget.exe install OpenCover -ExcludeVersion
- - OpenCover\tools\OpenCover.Console.exe -register:user -target:"%xunit20%\xunit.console.x86.exe" -targetargs:"\"c:\projects\nlogweb\NLog.Web.Tests\bin\Release\NLog.Web.Tests.dll\" -appveyor -noshadow" -returntargetcode -filter:"+[NLog.Web]*" -excludebyattribute:*.ExcludeFromCodeCoverage* -hideskipped:All -output:coverage.xml
+ - OpenCover\tools\OpenCover.Console.exe -register:user -target:"%xunit20%\xunit.console.x86.exe" -targetargs:"\"c:\projects\nlogweb\NLog.Web.Tests\bin\Release\net451\NLog.Web.Tests.dll\" -appveyor -noshadow" -returntargetcode -filter:"+[NLog.Web]*" -excludebyattribute:*.ExcludeFromCodeCoverage* -hideskipped:All -output:coverage.xml
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
- pip install codecov
- codecov -f "coverage.xml"
From a2c9786231d0a7acbcdc3d97cadbeac64486049a Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Mon, 8 Feb 2016 00:42:57 +0100
Subject: [PATCH 09/21] added build_script
---
appveyor.yml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/appveyor.yml b/appveyor.yml
index 389c8e8c..d1de9825 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -21,6 +21,11 @@ build:
publish_nuget: true
publish_nuget_symbols: true
verbosity: quiet
+
+build_script:
+- dnu build NLog.Web\project.json --configuration release --quiet
+- dnu build NLog.Web.Tests\project.json --configuration release --quiet
+
deploy: off
test_script:
- nuget.exe install OpenCover -ExcludeVersion
From e2207120c808045402d1082dbc79980738311526 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 14 Feb 2016 15:36:29 +0100
Subject: [PATCH 10/21] 2SLN files, #if using DNX,
---
...sts.xproj => NLog.Web.Tests.aspnet5.xproj} | 4 +-
NLog.Web.Tests/NLog.Web.Tests.csproj | 135 +
....config => packages.NLog.Web.Tests.config} | 0
NLog.Web.Tests/project.json | 6 +-
NLog.Web.Tests/project.lock.json | 3050 ++++++++++++++++-
NLog.Web.aspnet5.sln | 26 +
NLog.Web.sln | 31 +-
NLog.Web/DefaultHttpContextAccessor.cs | 4 +-
NLog.Web/IHttpContextAccessor.cs | 2 +-
NLog.Web/Internal/PropertyReader.cs | 11 +-
.../AspNetApplicationValueLayoutRenderer.cs | 4 +-
.../AspNetItemValueLayoutRenderer.cs | 4 +-
.../AspNetLayoutRendererBase.cs | 7 +-
.../AspNetRequestValueLayoutRenderer.cs | 12 +-
.../AspNetSessionIDLayoutRenderer.cs | 6 +-
.../AspNetSessionValueLayoutRenderer.cs | 6 +-
.../AspNetUserAuthTypeLayoutRenderer.cs | 4 +-
.../AspNetUserIdentityLayoutRenderer.cs | 4 +-
.../IISInstanceNameLayoutRenderer.cs | 6 +-
...{NLog.Web.xproj => NLog.Web.aspnet5.xproj} | 0
NLog.Web/NLog.Web.csproj | 86 +
NLog.Web/NLog.Web.nuget.targets | 6 +
NLog.Web/NLog.Web.nuspec | 18 -
NLog.Web/NLogHttpModule.cs | 2 +-
NLog.Web/Targets/AspNetTrace.cs | 2 +-
.../Wrappers/AspNetBufferingTargetWrapper.cs | 2 +-
...ckages.config => packages.NLog.Web.config} | 0
NLog.Web/project.json | 27 +-
NLog.Web/project.lock.json | 228 +-
29 files changed, 3324 insertions(+), 369 deletions(-)
rename NLog.Web.Tests/{NLog.Web.Tests.xproj => NLog.Web.Tests.aspnet5.xproj} (85%)
create mode 100644 NLog.Web.Tests/NLog.Web.Tests.csproj
rename NLog.Web.Tests/{packages.config => packages.NLog.Web.Tests.config} (100%)
create mode 100644 NLog.Web.aspnet5.sln
rename NLog.Web/{NLog.Web.xproj => NLog.Web.aspnet5.xproj} (100%)
create mode 100644 NLog.Web/NLog.Web.csproj
create mode 100644 NLog.Web/NLog.Web.nuget.targets
delete mode 100644 NLog.Web/NLog.Web.nuspec
rename NLog.Web/{packages.config => packages.NLog.Web.config} (100%)
diff --git a/NLog.Web.Tests/NLog.Web.Tests.xproj b/NLog.Web.Tests/NLog.Web.Tests.aspnet5.xproj
similarity index 85%
rename from NLog.Web.Tests/NLog.Web.Tests.xproj
rename to NLog.Web.Tests/NLog.Web.Tests.aspnet5.xproj
index 9053d534..e9188fe6 100644
--- a/NLog.Web.Tests/NLog.Web.Tests.xproj
+++ b/NLog.Web.Tests/NLog.Web.Tests.aspnet5.xproj
@@ -7,13 +7,15 @@
334bf11a-7e62-4469-ba1f-260d1c2f4db2
- NLog.Web.Tests3
+ NLog.Web.Tests
..\artifacts\obj\$(MSBuildProjectName)
..\artifacts\bin\$(MSBuildProjectName)\
2.0
+ True
+
diff --git a/NLog.Web.Tests/NLog.Web.Tests.csproj b/NLog.Web.Tests/NLog.Web.Tests.csproj
new file mode 100644
index 00000000..6c688d73
--- /dev/null
+++ b/NLog.Web.Tests/NLog.Web.Tests.csproj
@@ -0,0 +1,135 @@
+
+
+
+
+
+ Debug
+ AnyCPU
+ {E318FB41-9712-44CA-B792-E865EFE1A564}
+ Library
+ Properties
+ NLog.Web.Tests
+ NLog.Web.Tests
+ v4.5
+ 512
+ {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 10.0
+ $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
+ $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages
+ False
+ UnitTest
+
+
+
+
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+ ..\packages\NLog.4.0.1\lib\net45\NLog.dll
+ True
+
+
+ ..\packages\NSubstitute.1.9.2.0\lib\net45\NSubstitute.dll
+ True
+
+
+
+
+
+
+ ..\packages\xunit.abstractions.2.0.0\lib\net35\xunit.abstractions.dll
+ True
+
+
+ ..\packages\xunit.assert.2.1.0\lib\dotnet\xunit.assert.dll
+ True
+
+
+ ..\packages\xunit.extensibility.core.2.1.0\lib\dotnet\xunit.core.dll
+ True
+
+
+ ..\packages\xunit.extensibility.execution.2.1.0\lib\net45\xunit.execution.desktop.dll
+ True
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {E30DC886-8431-4CFA-90FA-38D9BE4203A0}
+ NLog.Web
+
+
+
+
+
+
+
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+
+
+
+
+
+
+ This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
+
+
+
+
+
+
\ No newline at end of file
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.Tests/project.json b/NLog.Web.Tests/project.json
index 86358b70..9bde4fba 100644
--- a/NLog.Web.Tests/project.json
+++ b/NLog.Web.Tests/project.json
@@ -5,15 +5,15 @@
"tags": [ "" ],
"projectUrl": "",
"licenseUrl": "",
+
"dependencies": {
"xunit": "2.1.0",
- "NSubstitute": "1.9.2",
-
+ "xunit.runner.dnx": "2.1.0-rc1-build204",
"NLog.Web": "1.0.0-*"
},
"frameworks": {
- "net451": {
+ "dnx451": {
"dependencies": {
},
"frameworkAssemblies": {
diff --git a/NLog.Web.Tests/project.lock.json b/NLog.Web.Tests/project.lock.json
index 3b691dbb..b217330f 100644
--- a/NLog.Web.Tests/project.lock.json
+++ b/NLog.Web.Tests/project.lock.json
@@ -2,121 +2,2078 @@
"locked": false,
"version": 2,
"targets": {
- ".NETFramework,Version=v4.5.1": {
- "NLog/4.0.1": {
+ "DNX,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",
+ "System.Runtime"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/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.Dnx.TestHost/1.0.0-rc1-final": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.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/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "NLog/4.4.0-alpha1": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Configuration",
+ "System.Core",
+ "System.Data",
+ "System.Drawing",
+ "System.IO.Compression",
+ "System.Runtime",
+ "System.Runtime.Serialization",
+ "System.ServiceModel",
+ "System.Transactions",
+ "System.Xml"
+ ],
+ "compile": {
+ "lib/dnx451/NLog.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/NLog.dll": {}
+ }
+ },
+ "NLog.Web/1.0.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "Microsoft.AspNet.Hosting": "1.0.0-rc1-final",
+ "Microsoft.CSharp": "4.0.1-beta-23516",
+ "NLog": "4.4.0-alpha1",
+ "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"
+ }
+ },
+ "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/_._": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ }
+ },
+ "DNX,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",
+ "System.Runtime"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/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.Dnx.TestHost/1.0.0-rc1-final": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.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/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
+ },
+ "NLog/4.4.0-alpha1": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Configuration",
+ "System.Core",
+ "System.Data",
+ "System.Drawing",
+ "System.IO.Compression",
+ "System.Runtime",
+ "System.Runtime.Serialization",
+ "System.ServiceModel",
+ "System.Transactions",
+ "System.Xml"
+ ],
+ "compile": {
+ "lib/dnx451/NLog.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/NLog.dll": {}
+ }
+ },
+ "NLog.Web/1.0.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
+ "dependencies": {
+ "Microsoft.AspNet.Hosting": "1.0.0-rc1-final",
+ "Microsoft.CSharp": "4.0.1-beta-23516",
+ "NLog": "4.4.0-alpha1",
+ "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"
+ }
+ },
+ "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/_._": {}
+ }
+ },
+ "xunit/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.assert": "[2.1.0]",
+ "xunit.core": "[2.1.0]"
+ }
+ },
+ "xunit.abstractions/2.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net35/xunit.abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net35/xunit.abstractions.dll": {}
+ }
+ },
+ "xunit.assert/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/dotnet/xunit.assert.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.assert.dll": {}
+ }
+ },
+ "xunit.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]",
+ "xunit.extensibility.execution": "[2.1.0]"
+ }
+ },
+ "xunit.extensibility.core/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dotnet/xunit.core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/xunit.core.dll": {},
+ "lib/dotnet/xunit.runner.tdnet.dll": {},
+ "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ }
+ },
+ "xunit.extensibility.execution/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.extensibility.core": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
+ "compile": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.dnx.dll": {}
+ }
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
+ }
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "xunit.abstractions": "[2.0.0]"
+ },
+ "compile": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
+ }
+ }
+ },
+ "DNX,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",
+ "System.Runtime"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/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.Dnx.TestHost/1.0.0-rc1-final": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
+ "Newtonsoft.Json": "6.0.6"
+ },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core",
+ "System.Runtime",
+ "System.Threading.Tasks"
+ ],
+ "compile": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ },
+ "runtime": {
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
+ }
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Dnx.Testing.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/net45/NLog.dll": {}
+ "lib/net451/Microsoft.Net.Http.Headers.dll": {}
},
"runtime": {
- "lib/net45/NLog.dll": {}
+ "lib/net451/Microsoft.Net.Http.Headers.dll": {}
}
},
- "NLog.Web/1.0.0": {
- "type": "project",
- "framework": ".NETFramework,Version=v4.5.1",
- "dependencies": {
- "NLog": "4.0.1"
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net45/Newtonsoft.Json.dll": {}
},
- "frameworkAssemblies": [
- "System.Web"
- ]
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
+ }
},
- "NSubstitute/1.9.2": {
+ "NLog/4.4.0-alpha1": {
"type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Configuration",
+ "System.Core",
+ "System.Data",
+ "System.Drawing",
+ "System.IO.Compression",
+ "System.Runtime",
+ "System.Runtime.Serialization",
+ "System.ServiceModel",
+ "System.Transactions",
+ "System.Xml"
+ ],
"compile": {
- "lib/net45/NSubstitute.dll": {}
+ "lib/dnx451/NLog.dll": {}
},
"runtime": {
- "lib/net45/NSubstitute.dll": {}
+ "lib/dnx451/NLog.dll": {}
}
},
- "xunit/2.1.0": {
- "type": "package",
+ "NLog.Web/1.0.0": {
+ "type": "project",
+ "framework": "DNX,Version=v4.5.1",
"dependencies": {
- "xunit.assert": "[2.1.0]",
- "xunit.core": "[2.1.0]"
+ "Microsoft.AspNet.Hosting": "1.0.0-rc1-final",
+ "Microsoft.CSharp": "4.0.1-beta-23516",
+ "NLog": "4.4.0-alpha1",
+ "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"
}
},
- "xunit.abstractions/2.0.0": {
+ "runtime.win7.System.Threading/4.0.11-beta-23516": {
"type": "package",
"compile": {
- "lib/net35/xunit.abstractions.dll": {}
- },
- "runtime": {
- "lib/net35/xunit.abstractions.dll": {}
+ "ref/dotnet/_._": {}
}
},
- "xunit.assert/2.1.0": {
+ "System.Collections/4.0.11-beta-23516": {
"type": "package",
"compile": {
- "lib/dotnet/xunit.assert.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet/xunit.assert.dll": {}
- }
- },
- "xunit.core/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.1.0]",
- "xunit.extensibility.execution": "[2.1.0]"
+ "lib/net45/_._": {}
}
},
- "xunit.extensibility.core/2.1.0": {
+ "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
"type": "package",
"dependencies": {
- "xunit.abstractions": "[2.0.0]"
+ "System.Diagnostics.Tracing": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Threading": "4.0.0"
},
"compile": {
- "lib/dotnet/xunit.core.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/dotnet/xunit.core.dll": {},
- "lib/dotnet/xunit.runner.tdnet.dll": {},
- "lib/dotnet/xunit.runner.utility.desktop.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "xunit.extensibility.execution/2.1.0": {
+ "System.Diagnostics.Tracing/4.0.0": {
"type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.1.0]"
- },
"compile": {
- "lib/net45/xunit.execution.desktop.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/net45/xunit.execution.desktop.dll": {}
+ "lib/net45/_._": {}
}
- }
- },
- ".NETFramework,Version=v4.5.1/win7-x86": {
- "NLog/4.0.1": {
+ },
+ "System.Linq/4.0.1-beta-23516": {
"type": "package",
"compile": {
- "lib/net45/NLog.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/net45/NLog.dll": {}
+ "lib/net45/_._": {}
}
},
- "NLog.Web/1.0.0": {
- "type": "project",
- "framework": ".NETFramework,Version=v4.5.1",
- "dependencies": {
- "NLog": "4.0.1"
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
},
- "frameworkAssemblies": [
- "System.Web"
- ]
+ "runtime": {
+ "lib/net45/_._": {}
+ }
},
- "NSubstitute/1.9.2": {
+ "System.Threading/4.0.11-beta-23516": {
"type": "package",
"compile": {
- "lib/net45/NSubstitute.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/net45/NSubstitute.dll": {}
+ "lib/net45/_._": {}
}
},
"xunit/2.1.0": {
@@ -171,98 +2128,61 @@
"xunit.extensibility.core": "[2.1.0]"
},
"compile": {
- "lib/net45/xunit.execution.desktop.dll": {}
- },
- "runtime": {
- "lib/net45/xunit.execution.desktop.dll": {}
- }
- }
- },
- ".NETFramework,Version=v4.5.1/win7-x64": {
- "NLog/4.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/NLog.dll": {}
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
},
"runtime": {
- "lib/net45/NLog.dll": {}
+ "lib/dnx451/xunit.execution.dotnet.dll": {}
}
},
- "NLog.Web/1.0.0": {
- "type": "project",
- "framework": ".NETFramework,Version=v4.5.1",
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
"dependencies": {
- "NLog": "4.0.1"
+ "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
+ "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "xunit.runner.reporters": "2.1.0"
},
"frameworkAssemblies": [
- "System.Web"
- ]
- },
- "NSubstitute/1.9.2": {
- "type": "package",
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Collections",
+ "System.Core",
+ "System.Threading",
+ "System.Xml",
+ "System.Xml.Linq",
+ "System.Xml.XDocument"
+ ],
"compile": {
- "lib/net45/NSubstitute.dll": {}
+ "lib/dnx451/xunit.runner.dnx.dll": {}
},
"runtime": {
- "lib/net45/NSubstitute.dll": {}
+ "lib/dnx451/xunit.runner.dnx.dll": {}
}
},
- "xunit/2.1.0": {
+ "xunit.runner.reporters/2.1.0": {
"type": "package",
"dependencies": {
- "xunit.assert": "[2.1.0]",
- "xunit.core": "[2.1.0]"
- }
- },
- "xunit.abstractions/2.0.0": {
- "type": "package",
- "compile": {
- "lib/net35/xunit.abstractions.dll": {}
+ "Newtonsoft.Json": "7.0.1",
+ "xunit.runner.utility": "[2.1.0]"
},
- "runtime": {
- "lib/net35/xunit.abstractions.dll": {}
- }
- },
- "xunit.assert/2.1.0": {
- "type": "package",
"compile": {
- "lib/dotnet/xunit.assert.dll": {}
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
},
"runtime": {
- "lib/dotnet/xunit.assert.dll": {}
- }
- },
- "xunit.core/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.1.0]",
- "xunit.extensibility.execution": "[2.1.0]"
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
}
},
- "xunit.extensibility.core/2.1.0": {
+ "xunit.runner.utility/2.1.0": {
"type": "package",
"dependencies": {
"xunit.abstractions": "[2.0.0]"
},
"compile": {
- "lib/dotnet/xunit.core.dll": {}
- },
- "runtime": {
- "lib/dotnet/xunit.core.dll": {},
- "lib/dotnet/xunit.runner.tdnet.dll": {},
- "lib/dotnet/xunit.runner.utility.desktop.dll": {}
- }
- },
- "xunit.extensibility.execution/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.1.0]"
- },
- "compile": {
- "lib/net45/xunit.execution.desktop.dll": {}
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
},
"runtime": {
- "lib/net45/xunit.execution.desktop.dll": {}
+ "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
}
}
}
@@ -272,43 +2192,811 @@
"type": "project",
"path": "../NLog.Web/project.json"
},
- "NLog/4.0.1": {
+ "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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": "ux2tUa7jkDtroJMSsrXMsHiqNVDHgbcGfFWFHg3XZg+nQNIRGZY2/emJYfjukmR+cHoTGIl8B0mYLl+zWScleg==",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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.Dnx.TestHost/1.0.0-rc1-final": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "f5lDXCh4tLXXWHcuNpiyQLiOuV8HB+UjWeL70hrHyaBcssA6Oxa7KB3R/arddVwXuaXeBuGm+HVheuyhQCYGig==",
+ "files": [
+ "app/project.json",
+ "lib/dnx451/Microsoft.Dnx.TestHost.dll",
+ "lib/dnx451/Microsoft.Dnx.TestHost.xml",
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.dll",
+ "lib/dnxcore50/Microsoft.Dnx.TestHost.xml",
+ "Microsoft.Dnx.TestHost.1.0.0-rc1-final.nupkg",
+ "Microsoft.Dnx.TestHost.1.0.0-rc1-final.nupkg.sha512",
+ "Microsoft.Dnx.TestHost.nuspec"
+ ]
+ },
+ "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AKeTdr5IdJQaXWw5jMyFOmmWicXt6V6WNQ7l67yBpSLsrJwYjtPg++XMmDGZVTd2CHcjzgMwz3iQfhCtMR76NQ==",
+ "files": [
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll",
+ "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.xml",
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll",
+ "lib/net451/Microsoft.Dnx.Testing.Abstractions.xml",
+ "Microsoft.Dnx.Testing.Abstractions.1.0.0-rc1-final.nupkg",
+ "Microsoft.Dnx.Testing.Abstractions.1.0.0-rc1-final.nupkg.sha512",
+ "Microsoft.Dnx.Testing.Abstractions.nuspec"
+ ]
+ },
+ "Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
+ "type": "package",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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",
+ "serviceable": true,
+ "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"
+ ]
+ },
+ "Newtonsoft.Json/7.0.1": {
+ "type": "package",
+ "sha512": "q3V4KLetMLnt1gpAVWgtXnHjKs0UG/RalBc29u2ZKxd5t5Ze4JBL5WiiYIklJyK/5CRiIiNwigVQUo0FgbsuWA==",
+ "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/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+dnxcore50/Newtonsoft.Json.dll",
+ "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml",
+ "Newtonsoft.Json.7.0.1.nupkg",
+ "Newtonsoft.Json.7.0.1.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/net40/NLog.dll",
- "lib/net40/NLog.xml",
- "lib/net45/NLog.dll",
- "lib/net45/NLog.xml",
- "lib/sl4/NLog.dll",
- "lib/sl4/NLog.xml",
- "lib/sl5/NLog.dll",
- "lib/sl5/NLog.xml",
- "NLog.4.0.1.nupkg",
- "NLog.4.0.1.nupkg.sha512",
+ "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"
]
},
- "NSubstitute/1.9.2": {
+ "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"
+ ]
+ },
+ "System.Collections/4.0.11-beta-23516": {
"type": "package",
- "sha512": "p0HKZIZSY3uSK7TOqo7dn1R7puR1b8VWsaVVty55epljyO/obKH6qlon1Brub6n7m4DoP3AJ+Xit6Gbj92UJ6Q==",
+ "serviceable": true,
+ "sha512": "TDca4OETV0kkXdpkyivMw1/EKKD1Sa/NVAjirw+fA0LZ37jLDYX+KhPPUQxgkvhCe/SVvxETD5Viiudza2k7OQ==",
"files": [
- "acknowledgements.txt",
- "BreakingChanges.txt",
- "CHANGELOG.txt",
- "lib/net35/NSubstitute.dll",
- "lib/net35/NSubstitute.XML",
- "lib/net40/NSubstitute.dll",
- "lib/net40/NSubstitute.XML",
- "lib/net45/NSubstitute.dll",
- "lib/net45/NSubstitute.XML",
- "LICENSE.txt",
- "NSubstitute.1.9.2.nupkg",
- "NSubstitute.1.9.2.nupkg.sha512",
- "NSubstitute.nuspec",
- "README.txt"
+ "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.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.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.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.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.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"
]
},
"xunit/2.1.0": {
@@ -427,15 +3115,61 @@
"xunit.extensibility.execution.2.1.0.nupkg.sha512",
"xunit.extensibility.execution.nuspec"
]
+ },
+ "xunit.runner.dnx/2.1.0-rc1-build204": {
+ "type": "package",
+ "sha512": "GUtWIQN3h7QGJdp5RTgvbPVjdWC7tXIRZhzpW8txNDC9nbMph4/TWbVEZKCGUOsLvE5BZg3icRGb6JR3ZwBADA==",
+ "files": [
+ "lib/dnx451/xunit.runner.dnx.dll",
+ "lib/dnx451/xunit.runner.dnx.xml",
+ "lib/dnxcore50/xunit.runner.dnx.dll",
+ "lib/dnxcore50/xunit.runner.dnx.xml",
+ "xunit.runner.dnx.2.1.0-rc1-build204.nupkg",
+ "xunit.runner.dnx.2.1.0-rc1-build204.nupkg.sha512",
+ "xunit.runner.dnx.nuspec"
+ ]
+ },
+ "xunit.runner.reporters/2.1.0": {
+ "type": "package",
+ "sha512": "ja0kJrvwSiho2TRFpfHfa+6tGJI5edcyD8fdekTkjn7Us17PbGqglIihRe8sR9YFAmS4ipEC8+7CXOM/b69ENQ==",
+ "files": [
+ "lib/dnx451/xunit.runner.reporters.dotnet.dll",
+ "lib/dotnet/xunit.runner.reporters.dotnet.dll",
+ "lib/net45/xunit.runner.reporters.desktop.dll",
+ "xunit.runner.reporters.2.1.0.nupkg",
+ "xunit.runner.reporters.2.1.0.nupkg.sha512",
+ "xunit.runner.reporters.nuspec"
+ ]
+ },
+ "xunit.runner.utility/2.1.0": {
+ "type": "package",
+ "sha512": "jJJHROwskIhdQuYw7exe7KaW20dOCa+lzV/lY7Zdh1ZZzdUPpScMi9ReJIutqiyjhemGF8V/GaMIPrcjyZ4ioQ==",
+ "files": [
+ "lib/dnx451/xunit.runner.utility.dotnet.dll",
+ "lib/dnx451/xunit.runner.utility.dotnet.pdb",
+ "lib/dnx451/xunit.runner.utility.dotnet.xml",
+ "lib/dotnet/xunit.runner.utility.dotnet.dll",
+ "lib/dotnet/xunit.runner.utility.dotnet.pdb",
+ "lib/dotnet/xunit.runner.utility.dotnet.xml",
+ "lib/net35/xunit.runner.utility.desktop.dll",
+ "lib/net35/xunit.runner.utility.desktop.pdb",
+ "lib/net35/xunit.runner.utility.desktop.xml",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.dll",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.pdb",
+ "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.xml",
+ "xunit.runner.utility.2.1.0.nupkg",
+ "xunit.runner.utility.2.1.0.nupkg.sha512",
+ "xunit.runner.utility.nuspec"
+ ]
}
},
"projectFileDependencyGroups": {
"": [
"xunit >= 2.1.0",
- "NSubstitute >= 1.9.2",
+ "xunit.runner.dnx >= 2.1.0-rc1-build204",
"NLog.Web >= 1.0.0-*"
],
- ".NETFramework,Version=v4.5.1": [
+ "DNX,Version=v4.5.1": [
"fx/System >= 4.0.0",
"fx/System.Runtime >= 4.0.10",
"fx/System.Xml >= 4.0.0"
diff --git a/NLog.Web.aspnet5.sln b/NLog.Web.aspnet5.sln
new file mode 100644
index 00000000..038845e1
--- /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\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 b7dd66b5..5d367b5f 100644
--- a/NLog.Web.sln
+++ b/NLog.Web.sln
@@ -1,11 +1,16 @@
-
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NLog.Web", "NLog.Web\NLog.Web.xproj", "{74D5915B-BEA9-404C-B4D0-B663164DEF37}"
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{52CA242D-DB20-41D9-8B79-A5A965ECA105}"
+ ProjectSection(SolutionItems) = preProject
+ NLog.Web.Tests\global.json = NLog.Web.Tests\global.json
+ NLog.Web\global.json = NLog.Web\global.json
+ EndProjectSection
EndProject
-Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NLog.Web.Tests", "NLog.Web.Tests\NLog.Web.Tests.xproj", "{334BF11A-7E62-4469-BA1F-260D1C2F4DB2}"
+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}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -13,16 +18,20 @@ Global
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
- {334BF11A-7E62-4469-BA1F-260D1C2F4DB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {334BF11A-7E62-4469-BA1F-260D1C2F4DB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {334BF11A-7E62-4469-BA1F-260D1C2F4DB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {334BF11A-7E62-4469-BA1F-260D1C2F4DB2}.Release|Any CPU.Build.0 = Release|Any CPU
+ {E30DC886-8431-4CFA-90FA-38D9BE4203A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E30DC886-8431-4CFA-90FA-38D9BE4203A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E30DC886-8431-4CFA-90FA-38D9BE4203A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E30DC886-8431-4CFA-90FA-38D9BE4203A0}.Release|Any CPU.Build.0 = Release|Any CPU
+ {E318FB41-9712-44CA-B792-E865EFE1A564}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {E318FB41-9712-44CA-B792-E865EFE1A564}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {E318FB41-9712-44CA-B792-E865EFE1A564}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {E318FB41-9712-44CA-B792-E865EFE1A564}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
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/DefaultHttpContextAccessor.cs b/NLog.Web/DefaultHttpContextAccessor.cs
index 8ec9f09d..20a6f5ed 100644
--- a/NLog.Web/DefaultHttpContextAccessor.cs
+++ b/NLog.Web/DefaultHttpContextAccessor.cs
@@ -1,4 +1,4 @@
-#if NET451
+#if !DNX
using System.Web;
#else
using Microsoft.AspNet.Hosting;
@@ -10,7 +10,7 @@
namespace NLog.Web
{
-#if NET451
+#if !DNX
///
/// Provides the HttpContext associated with the current request.
///
diff --git a/NLog.Web/IHttpContextAccessor.cs b/NLog.Web/IHttpContextAccessor.cs
index 4ccf1dbb..e5eb1ac8 100644
--- a/NLog.Web/IHttpContextAccessor.cs
+++ b/NLog.Web/IHttpContextAccessor.cs
@@ -1,4 +1,4 @@
-#if NET451
+#if !DNX
using System;
using System.Web;
diff --git a/NLog.Web/Internal/PropertyReader.cs b/NLog.Web/Internal/PropertyReader.cs
index 2a7eb907..e95a9ba0 100644
--- a/NLog.Web/Internal/PropertyReader.cs
+++ b/NLog.Web/Internal/PropertyReader.cs
@@ -25,7 +25,7 @@ public static object GetValue(string key, Func getVal, bool eval
foreach (var property in path.Skip(1))
{
- var propertyInfo = value.GetType().GetTypeInfo().GetDeclaredProperty(property);
+ var propertyInfo = GetPropertyInfo(value, property);
value = propertyInfo.GetValue(value, null);
}
}
@@ -35,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/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs
index 11ea4af2..07f553c3 100644
--- a/NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs
@@ -1,7 +1,7 @@
using System;
using System.Globalization;
using System.Text;
-#if NET451
+#if !DNX
using System.Web;
#else
using Microsoft.AspNet.Hosting;
@@ -11,7 +11,7 @@
using NLog.LayoutRenderers;
-#if NET451
+#if !DNX
namespace NLog.Web.LayoutRenderers
{
///
diff --git a/NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs b/NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs
index 6f5a6646..160ff59e 100644
--- a/NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs
@@ -2,7 +2,7 @@
using System.Globalization;
using System.Linq;
using System.Text;
-#if NET451
+#if !DNX
using System.Web;
#else
using Microsoft.AspNet.Hosting;
@@ -44,7 +44,7 @@ namespace NLog.Web.LayoutRenderers
public class AspNetItemValueLayoutRenderer : AspNetLayoutRendererBase
{
-#if DOTNET5_4
+#if DNX
///
/// Initializes the with the .
///
diff --git a/NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs b/NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs
index 765a6010..387dfb88 100644
--- a/NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs
+++ b/NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs
@@ -1,6 +1,6 @@
using System.Text;
using NLog.LayoutRenderers;
-#if NET451
+#if !DNX
using System.Web;
#else
using Microsoft.AspNet.Hosting;
@@ -15,7 +15,7 @@ namespace NLog.Web.LayoutRenderers
public abstract class AspNetLayoutRendererBase : LayoutRenderer
{
-#if DOTNET5_4
+#if DNX
///
/// Initializes the with the .
///
@@ -24,8 +24,7 @@ protected AspNetLayoutRendererBase(IHttpContextAccessor accessor)
HttpContextAccessor = accessor;
}
-#endif
-#if NET451
+#else
///
/// Initializes the .
diff --git a/NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs b/NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs
index 8de39769..b964f042 100644
--- a/NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs
@@ -1,6 +1,6 @@
using System;
using System.Text;
-#if NET451
+#if !DNX
using System.Web;
#else
using Microsoft.AspNet.Hosting;
@@ -32,7 +32,7 @@ namespace NLog.Web.LayoutRenderers
[LayoutRenderer("aspnet-request")]
public class AspNetRequestValueLayoutRenderer : AspNetLayoutRendererBase
{
-#if DOTNET5_4
+#if DNX
///
/// Initializes the with the .
///
@@ -93,7 +93,7 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent)
if (this.QueryString != null)
{
-#if NET451
+#if !DNX
builder.Append(httpRequest.QueryString[this.QueryString]);
#else
builder.Append(httpRequest.Query[this.QueryString]);
@@ -105,7 +105,7 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent)
}
else if (this.Cookie != null)
{
-#if NET451
+#if !DNX
var cookie = httpRequest.Cookies[this.Cookie];
if (cookie != null)
@@ -120,7 +120,7 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent)
}
else if (this.ServerVariable != null)
{
-#if NET451
+#if !DNX
builder.Append(httpRequest.ServerVariables[this.ServerVariable]);
#else
@@ -138,7 +138,7 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent)
}
else if (this.Item != null)
{
-#if NET451
+#if !DNX
builder.Append(httpRequest[this.Item]);
#else
builder.Append(httpRequest.HttpContext.Items[this.Item]);
diff --git a/NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs b/NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs
index 03c342de..8464d435 100644
--- a/NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs
@@ -1,5 +1,5 @@
using System.Text;
-#if NET451
+#if !DNX
using System.Web;
#else
using Microsoft.AspNet.Hosting;
@@ -7,7 +7,7 @@
#endif
using NLog.LayoutRenderers;
-#if NET451
+#if !DNX
namespace NLog.Web.LayoutRenderers
{
///
@@ -16,7 +16,7 @@ namespace NLog.Web.LayoutRenderers
[LayoutRenderer("aspnet-sessionid")]
public class AspNetSessionIDLayoutRenderer : AspNetLayoutRendererBase
{
-#if DOTNET5_4
+#if DNX
///
/// Initializes the with the .
///
diff --git a/NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs b/NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs
index d69811a5..e6c6a98e 100644
--- a/NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs
@@ -2,7 +2,7 @@
using System.Globalization;
using System.Linq;
using System.Text;
-#if NET451
+#if !DNX
using System.Web;
#else
using Microsoft.AspNet.Http;
@@ -42,7 +42,7 @@ namespace NLog.Web.LayoutRenderers
[LayoutRenderer("aspnet-session")]
public class AspNetSessionValueLayoutRenderer : AspNetLayoutRendererBase
{
-#if DOTNET5_4
+#if DNX
///
/// Initializes the with the .
///
@@ -81,7 +81,7 @@ protected override void DoAppend(StringBuilder builder, LogEventInfo logEvent)
{
return;
}
-#if NET451
+#if !DNX
var value = PropertyReader.GetValue(Variable, k => context.Session[k], EvaluateAsNestedProperties);
#else
var value = PropertyReader.GetValue(Variable, k => context.Session.GetString(k), EvaluateAsNestedProperties);
diff --git a/NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs b/NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs
index 6e7441ae..6782429d 100644
--- a/NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs
@@ -1,5 +1,5 @@
using System.Text;
-#if NET451
+#if !DNX
using System.Web;
#else
using Microsoft.AspNet.Hosting;
@@ -15,7 +15,7 @@ namespace NLog.Web.LayoutRenderers
[LayoutRenderer("aspnet-user-authtype")]
public class AspNetUserAuthTypeLayoutRenderer : AspNetLayoutRendererBase
{
-#if DOTNET5_4
+#if DNX
///
/// Initializes the with the .
///
diff --git a/NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs b/NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs
index b2bda095..22cfd81b 100644
--- a/NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs
@@ -1,5 +1,5 @@
using System.Text;
-#if NET451
+#if !DNX
using System.Web;
#else
using Microsoft.AspNet.Hosting;
@@ -15,7 +15,7 @@ namespace NLog.Web.LayoutRenderers
[LayoutRenderer("aspnet-user-identity")]
public class AspNetUserIdentityLayoutRenderer : AspNetLayoutRendererBase
{
-#if DOTNET5_4
+#if DNX
///
/// Initializes the with the .
///
diff --git a/NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs b/NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs
index f30ef14d..896df2b5 100644
--- a/NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs
+++ b/NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs
@@ -1,6 +1,6 @@
using System.Text;
-#if NET451
+#if !DNX
using System.Web.Hosting;
#else
using Microsoft.AspNet.Hosting;
@@ -18,7 +18,7 @@ namespace NLog.Web.LayoutRenderers
public class IISInstanceNameLayoutRenderer : LayoutRenderer
{
-#if DOTNET5_4
+#if DNX
private readonly IHostingEnvironment _env;
public IISInstanceNameLayoutRenderer(IHostingEnvironment env)
{
@@ -33,7 +33,7 @@ public IISInstanceNameLayoutRenderer(IHostingEnvironment env)
protected override void Append(StringBuilder builder, LogEventInfo logEvent)
{
-#if DOTNET5_4
+#if DNX
builder.Append(_env.EnvironmentName);
#else
builder.Append(HostingEnvironment.SiteName);
diff --git a/NLog.Web/NLog.Web.xproj b/NLog.Web/NLog.Web.aspnet5.xproj
similarity index 100%
rename from NLog.Web/NLog.Web.xproj
rename to NLog.Web/NLog.Web.aspnet5.xproj
diff --git a/NLog.Web/NLog.Web.csproj b/NLog.Web/NLog.Web.csproj
new file mode 100644
index 00000000..178219f1
--- /dev/null
+++ b/NLog.Web/NLog.Web.csproj
@@ -0,0 +1,86 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {E30DC886-8431-4CFA-90FA-38D9BE4203A0}
+ Library
+ Properties
+ NLog.Web
+ NLog.Web
+ v3.5
+ 512
+
+
+ true
+ full
+ false
+ bin\Debug\
+ TRACE;DEBUG;NET451
+ prompt
+ 4
+ true
+ bin\Debug\NLog.Web.XML
+
+
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+ bin\Release\NLog.Web.XML
+ true
+
+
+ true
+
+
+ NLog.snk
+
+
+
+ ..\packages\NLog.4.0.1\lib\net35\NLog.dll
+ True
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NLog.Web/NLog.Web.nuget.targets b/NLog.Web/NLog.Web.nuget.targets
new file mode 100644
index 00000000..e69ce0e6
--- /dev/null
+++ b/NLog.Web/NLog.Web.nuget.targets
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NLog.Web/NLog.Web.nuspec b/NLog.Web/NLog.Web.nuspec
deleted file mode 100644
index 1f2e58d7..00000000
--- a/NLog.Web/NLog.Web.nuspec
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- NLog.Web
- $version$
- NLog.Web
- NLog
- NLog
- https://github.com/NLog/NLog.Web/raw/master/LICENSE
- https://github.com/NLog/NLog.Web
- http://nlog-project.org/N.png
- false
- Extend NLog with targets and layout renderers for websites and webapplications.
-
- Copyright 2014-2016
- nlog target layoutrenderer web asp.net log
-
-
diff --git a/NLog.Web/NLogHttpModule.cs b/NLog.Web/NLogHttpModule.cs
index 047ef558..35f8f22a 100644
--- a/NLog.Web/NLogHttpModule.cs
+++ b/NLog.Web/NLogHttpModule.cs
@@ -1,4 +1,4 @@
-#if NET451
+#if !DNX
using System;
using System.Web;
diff --git a/NLog.Web/Targets/AspNetTrace.cs b/NLog.Web/Targets/AspNetTrace.cs
index dac69559..f54bdbc7 100644
--- a/NLog.Web/Targets/AspNetTrace.cs
+++ b/NLog.Web/Targets/AspNetTrace.cs
@@ -1,5 +1,5 @@
-#if NET451
+#if !DNX
using System.Web;
using NLog.Targets;
diff --git a/NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs b/NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs
index ecf68735..4d6a1d53 100644
--- a/NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs
+++ b/NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs
@@ -1,4 +1,4 @@
-#if NET451
+#if !DNX
using System;
using System.ComponentModel;
using System.Web;
diff --git a/NLog.Web/packages.config b/NLog.Web/packages.NLog.Web.config
similarity index 100%
rename from NLog.Web/packages.config
rename to NLog.Web/packages.NLog.Web.config
diff --git a/NLog.Web/project.json b/NLog.Web/project.json
index eccce81e..2c87684a 100644
--- a/NLog.Web/project.json
+++ b/NLog.Web/project.json
@@ -1,44 +1,37 @@
-{
+{
+ "title": "NLog.Web.ASPNET5",
"version": "1.0.0-*",
"description": "NLog.Web Class Library",
"authors": [ "j.verdurmen" ],
"tags": [ "" ],
"projectUrl": "",
"licenseUrl": "",
-
"frameworks": {
- "net451": {
- "compilationOptions": { "define": [ "NET451" ] },
- "frameworkAssemblies": { "System.Web": "4.0.0.0" },
- "dependencies": { "NLog": "4.0.1" }
- },
-
"dnxcore50": {
-
- "compilationOptions": { "define": [ "DOTNET5_4" ] },
+ "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",
- "NLog": "4.4.0-alpha1",
- "Microsoft.AspNet.Hosting": "1.0.0-rc1-final"
+ "Microsoft.AspNet.Hosting": "1.0.0-rc1-final",
+ "NLog": "4.4.0-alpha1"
+
}
},
- "dnx451": {
+ "net451": {
- "compilationOptions": { "define": [ "DOTNET5_4", "DNX451" ] },
+ "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",
- "NLog": "4.4.0-alpha1",
- "Microsoft.AspNet.Hosting": "1.0.0-rc1-final"
-
+ "Microsoft.AspNet.Hosting": "1.0.0-rc1-final",
+ "NLog": "4.4.0-alpha1"
}
}
diff --git a/NLog.Web/project.lock.json b/NLog.Web/project.lock.json
index a34b7dbe..3f108d55 100644
--- a/NLog.Web/project.lock.json
+++ b/NLog.Web/project.lock.json
@@ -2,17 +2,6 @@
"locked": false,
"version": 2,
"targets": {
- ".NETFramework,Version=v4.5.1": {
- "NLog/4.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/NLog.dll": {}
- },
- "runtime": {
- "lib/net45/NLog.dll": {}
- }
- }
- },
"DNXCore,Version=v5.0": {
"Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
"type": "package",
@@ -1576,7 +1565,7 @@
}
}
},
- "DNX,Version=v4.5.1": {
+ ".NETFramework,Version=v4.5.1": {
"Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
@@ -1635,14 +1624,13 @@
"Microsoft.CSharp",
"mscorlib",
"System",
- "System.Core",
- "System.Runtime"
+ "System.Core"
],
"compile": {
- "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.dll": {}
},
"runtime": {
- "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.dll": {}
}
},
"Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
@@ -2059,25 +2047,21 @@
"NLog/4.4.0-alpha1": {
"type": "package",
"frameworkAssemblies": [
- "Microsoft.CSharp",
"mscorlib",
"System",
"System.Configuration",
"System.Core",
"System.Data",
- "System.Drawing",
- "System.IO.Compression",
- "System.Runtime",
"System.Runtime.Serialization",
"System.ServiceModel",
"System.Transactions",
"System.Xml"
],
"compile": {
- "lib/dnx451/NLog.dll": {}
+ "lib/net35/NLog.dll": {}
},
"runtime": {
- "lib/dnx451/NLog.dll": {}
+ "lib/net35/NLog.dll": {}
}
},
"System.Collections/4.0.11-beta-23516": {
@@ -2140,28 +2124,6 @@
}
}
},
- ".NETFramework,Version=v4.5.1/win7-x86": {
- "NLog/4.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/NLog.dll": {}
- },
- "runtime": {
- "lib/net45/NLog.dll": {}
- }
- }
- },
- ".NETFramework,Version=v4.5.1/win7-x64": {
- "NLog/4.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/NLog.dll": {}
- },
- "runtime": {
- "lib/net45/NLog.dll": {}
- }
- }
- },
"DNXCore,Version=v5.0/win7-x86": {
"Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
"type": "package",
@@ -2665,6 +2627,34 @@
"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": {
@@ -4602,6 +4592,34 @@
"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": {
@@ -6036,7 +6054,7 @@
}
}
},
- "DNX,Version=v4.5.1/win7-x86": {
+ ".NETFramework,Version=v4.5.1/win7-x86": {
"Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
@@ -6095,14 +6113,13 @@
"Microsoft.CSharp",
"mscorlib",
"System",
- "System.Core",
- "System.Runtime"
+ "System.Core"
],
"compile": {
- "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.dll": {}
},
"runtime": {
- "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.dll": {}
}
},
"Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
@@ -6519,25 +6536,21 @@
"NLog/4.4.0-alpha1": {
"type": "package",
"frameworkAssemblies": [
- "Microsoft.CSharp",
"mscorlib",
"System",
"System.Configuration",
"System.Core",
"System.Data",
- "System.Drawing",
- "System.IO.Compression",
- "System.Runtime",
"System.Runtime.Serialization",
"System.ServiceModel",
"System.Transactions",
"System.Xml"
],
"compile": {
- "lib/dnx451/NLog.dll": {}
+ "lib/net35/NLog.dll": {}
},
"runtime": {
- "lib/dnx451/NLog.dll": {}
+ "lib/net35/NLog.dll": {}
}
},
"runtime.win7.System.Threading/4.0.11-beta-23516": {
@@ -6606,7 +6619,7 @@
}
}
},
- "DNX,Version=v4.5.1/win7-x64": {
+ ".NETFramework,Version=v4.5.1/win7-x64": {
"Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
"type": "package",
"dependencies": {
@@ -6665,14 +6678,13 @@
"Microsoft.CSharp",
"mscorlib",
"System",
- "System.Core",
- "System.Runtime"
+ "System.Core"
],
"compile": {
- "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.dll": {}
},
"runtime": {
- "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.dll": {}
}
},
"Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
@@ -7089,25 +7101,21 @@
"NLog/4.4.0-alpha1": {
"type": "package",
"frameworkAssemblies": [
- "Microsoft.CSharp",
"mscorlib",
"System",
"System.Configuration",
"System.Core",
"System.Data",
- "System.Drawing",
- "System.IO.Compression",
- "System.Runtime",
"System.Runtime.Serialization",
"System.ServiceModel",
"System.Transactions",
"System.Xml"
],
"compile": {
- "lib/dnx451/NLog.dll": {}
+ "lib/net35/NLog.dll": {}
},
"runtime": {
- "lib/dnx451/NLog.dll": {}
+ "lib/net35/NLog.dll": {}
}
},
"runtime.win7.System.Threading/4.0.11-beta-23516": {
@@ -7180,7 +7188,6 @@
"libraries": {
"Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "Tv6YJk78cH+gFipRNjeMpzzUg3t4BQiS0xYVlv/8gVNl4sI6ytAMYYfIbx8pCacIRH5Nx/Tw9GVn28eyw+JZfA==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll",
@@ -7194,7 +7201,6 @@
},
"Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "Ni5o7X21cN97krdkg3F77F5app0KpLwdpHbxdpwqaMjhMKYcmNDcyZB8Ke/qgbSMqHRwT3aQVhgEp/iJTbgl6g==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll",
@@ -7208,7 +7214,6 @@
},
"Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "6ZVZK5Ql+z6UeVOBcXCRLahcAd/NKdMAK17JBZWGZqqmxKO0LtQMdb6drb9H4nBM3/a8vbhd+23wxzyIfoCLQQ==",
"files": [
"lib/dnx451/Microsoft.AspNet.Hosting.dll",
@@ -7226,7 +7231,6 @@
},
"Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "07N5rzYcsjkLgwoI923FcAvvf7167qhLgCExXwYYkdZUIJQzneRG0DqZJTm6qpnaD5igf4FM9F+eh2m7y5NFbg==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll",
@@ -7240,7 +7244,6 @@
},
"Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "55ovPKPLsLvXsZ2xxtCOkQXmLwrE5iMUXe1y3A3Y/DCcI2u9VBJezu1y2EPYmZCM+uP/Y/BaQm68AWg2r8RV5w==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll",
@@ -7254,7 +7257,6 @@
},
"Microsoft.AspNet.Http/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "2vVd6xlfDKxl7pln5VOSczVo5bdJK6VLF6LR62Tb+le6e0COju7diAPHujFcXQlX/eLq2GrctN5vbIMeQ6vRTg==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.dll",
@@ -7268,7 +7270,6 @@
},
"Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "sfzc1WJMl8wGCF+rChVfJ7otT6tTv24RNXUej2r8tlQ2RDNnAozYyGb0SCW2mxpHrC31On99Wt0rksgF0c2WUw==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll",
@@ -7282,7 +7283,6 @@
},
"Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "rsjbxD9W6NfqP0WNHMRyetIh6ZoKRbK1ea0V5xWdVAx53WdvgBy0HmkSwXt506+xU65jjZP19F4Ua4YjZdPHfQ==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll",
@@ -7296,7 +7296,6 @@
},
"Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "WlscfdAvN8XaaK1iv1Iewp5emei7+0SlXNkUh7kMJpeaS6K0GhwNmwqZR6VrT1oN+Maw98nEONHS34/suqQwOA==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll",
@@ -7310,7 +7309,6 @@
},
"Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "0D80xroAEiWlB9X5eR/JUya1H2saIYnt4d7bPru5RRf5L/66X+9WWhf3hFkLUF3W13K6g6K9Is9dCTaEfFFKTA==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll",
@@ -7374,7 +7372,6 @@
},
"Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "kg3kR7H12Bs46TiuF7YT8A3SNXehhBcwsArIMQIH2ecXGkg5MPWDl2OR6bnQu6k0OMu9QUiv1oiwC9yU7rHWfw==",
"files": [
"lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll",
@@ -7388,7 +7385,6 @@
},
"Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "2ayWzqMVGWjr8o8bOSnIsyQbi9sLz9Ya8+YM+9tM/ivSnLHuN7TNHNfJv4jTyRZvoOafdh5Ivlc/OdmsZPXlQQ==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.dll",
@@ -7404,7 +7400,6 @@
},
"Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "xA7ObOlIswcx2qakv69kz0pnBizFJrmwxRxJyjPOHWfevF4W+OdolZsbKOc12kY7y5upqhAvNGWTblffMvADHA==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll",
@@ -7420,7 +7415,6 @@
},
"Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "k+kXsefuLV5WkkG6X8GFn9zf9ZrMyC3dddgm6I6scpbanDyoKUYrRUP2VhW0ViO6TIva0soh6jJy3pFPCrNx9Q==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll",
@@ -7436,7 +7430,6 @@
},
"Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "CaNirkiOycy0L6ptGxmpDkHZ2lzqcHKDbQJBfEhobnEt43pqKGKgAPC5dW3DfnsMpuK+inypm5iht9t6tq4vjg==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
@@ -7452,7 +7445,6 @@
},
"Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "w2x8nqrp2YUgNBJuZ3SUmexBtjaoZFzCQtObRTjrE4GWceFEmaLZtXFvs4n9IgRQkOqqCza7Fv7NXnD9m2emjQ==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll",
@@ -7468,7 +7460,6 @@
},
"Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "9v+RpswnXEpAP5mx8J1w1yZZT2pPtMBTnOAauNh2c9ju5Dhq3ljxvbm0S9j6o5F/EFSLlbfN/brxTJN3qa/upw==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll",
@@ -7484,7 +7475,6 @@
},
"Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "S/+s3fq85j21H5nYOvh1fIt1arl8F5lZ7Ryiw/qend83yHQwIQbBs+dip9FhqiPmAn6Dz3UhW0likQQurfEsLQ==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll",
@@ -7500,7 +7490,6 @@
},
"Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "MUKexXAsRZ55C7YZ26ShePZgBeW+6FbasxeIVmZ/BZIgiG4uw6yPOdfl9WvTaUL9SFK2sEPcYLatWmLfTpsOAA==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
@@ -7516,7 +7505,6 @@
},
"Microsoft.Extensions.Logging/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "anegHH4XHjaCmC557A0uvnJzprT44MOKr669yfiQLtITA+lQrM3aMijxjjdCREnxE8ftXuSz+6wViCvkgcAOhA==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Logging.dll",
@@ -7532,7 +7520,6 @@
},
"Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "ejGO1JhPXMsCCSyH12xwkOYsb9oBv2gHc3LLaT2jevrD//xuQizWaxpVk0/rHGdORkWdp+kT2Qmuz/sLyNWW/g==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll",
@@ -7548,7 +7535,6 @@
},
"Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "26HS4c6MBisN+D7XUr8HObOI/JJvSJQYQR//Bfw/hi9UqhqK3lFpNKjOuYHI+gTxYdXT46HqZiz4D+k7d+ob3A==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll",
@@ -7562,7 +7548,6 @@
},
"Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "oHWqBARJveyM7LctuqQqvsTC58hxoq0gGnHr6Qsxie71LIkZpfE21IklhSLOsqmv4QIpes/G6k1vZbAQ+cC/nw==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Primitives.dll",
@@ -7578,7 +7563,6 @@
},
"Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "wt47w3Zu7JvuD7CfRSCaz0IZL5EzpuzicRm6Qcidteb2TVeB98Psg7YGiwIBeYB1b52YFTBgqC+ySKk/GRhy2A==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll",
@@ -7592,7 +7576,6 @@
},
"Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
"type": "package",
- "serviceable": true,
"sha512": "Y10hkmHQZLieW3J6J+vTiq86vifmJ7Vc2zrwNR349oAaUGjTHL0ws6rqHn0JDIcawBna4AE3OBNsL9vuZuE8bw==",
"files": [
"lib/dotnet5.4/Microsoft.Net.Http.Headers.dll",
@@ -7606,7 +7589,6 @@
},
"Microsoft.Win32.Primitives/4.0.0": {
"type": "package",
- "serviceable": true,
"sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==",
"files": [
"lib/dotnet/Microsoft.Win32.Primitives.dll",
@@ -7660,25 +7642,6 @@
"tools/install.ps1"
]
},
- "NLog/4.0.1": {
- "type": "package",
- "sha512": "ux2tUa7jkDtroJMSsrXMsHiqNVDHgbcGfFWFHg3XZg+nQNIRGZY2/emJYfjukmR+cHoTGIl8B0mYLl+zWScleg==",
- "files": [
- "lib/net35/NLog.dll",
- "lib/net35/NLog.xml",
- "lib/net40/NLog.dll",
- "lib/net40/NLog.xml",
- "lib/net45/NLog.dll",
- "lib/net45/NLog.xml",
- "lib/sl4/NLog.dll",
- "lib/sl4/NLog.xml",
- "lib/sl5/NLog.dll",
- "lib/sl5/NLog.xml",
- "NLog.4.0.1.nupkg",
- "NLog.4.0.1.nupkg.sha512",
- "NLog.nuspec"
- ]
- },
"NLog/4.4.0-alpha1": {
"type": "package",
"sha512": "cdbV/3VFqaxrcRvqafowTwK4re93JDueuG9cmjpx8ivcdB6Jc226SdMmJWkDSv8vwGeUrvYKF14GuogfdycU1w==",
@@ -7698,6 +7661,28 @@
"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,
@@ -7936,7 +7921,6 @@
},
"System.AppContext/4.0.0": {
"type": "package",
- "serviceable": true,
"sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==",
"files": [
"lib/DNXCore50/System.AppContext.dll",
@@ -8628,7 +8612,6 @@
},
"System.Diagnostics.Tracing/4.0.20": {
"type": "package",
- "serviceable": true,
"sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==",
"files": [
"lib/DNXCore50/System.Diagnostics.Tracing.dll",
@@ -9401,7 +9384,6 @@
},
"System.ObjectModel/4.0.10": {
"type": "package",
- "serviceable": true,
"sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==",
"files": [
"lib/dotnet/System.ObjectModel.dll",
@@ -9489,7 +9471,6 @@
},
"System.Reflection/4.1.0-beta-23225": {
"type": "package",
- "serviceable": true,
"sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==",
"files": [
"lib/DNXCore50/System.Reflection.dll",
@@ -9670,7 +9651,6 @@
},
"System.Reflection.Primitives/4.0.0": {
"type": "package",
- "serviceable": true,
"sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==",
"files": [
"lib/DNXCore50/System.Reflection.Primitives.dll",
@@ -9704,7 +9684,6 @@
},
"System.Reflection.TypeExtensions/4.0.1-beta-23409": {
"type": "package",
- "serviceable": true,
"sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==",
"files": [
"lib/DNXCore50/de/System.Reflection.TypeExtensions.xml",
@@ -9954,7 +9933,6 @@
},
"System.Runtime.Handles/4.0.0": {
"type": "package",
- "serviceable": true,
"sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==",
"files": [
"lib/DNXCore50/System.Runtime.Handles.dll",
@@ -10929,27 +10907,23 @@
},
"projectFileDependencyGroups": {
"": [],
- ".NETFramework,Version=v4.5.1": [
- "NLog >= 4.0.1",
- "fx/System.Web >= 4.0.0"
- ],
"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",
- "NLog >= 4.4.0-alpha1",
- "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final"
+ "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final",
+ "NLog >= 4.4.0-alpha1"
],
- "DNX,Version=v4.5.1": [
+ ".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",
- "NLog >= 4.4.0-alpha1",
- "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final"
+ "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final",
+ "NLog >= 4.4.0-alpha1"
]
}
}
\ No newline at end of file
From 98c586bf64ba2cbc9336b17c1f02207ad0437b1e Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 14 Feb 2016 15:59:42 +0100
Subject: [PATCH 11/21] rename folder for DNU pack
---
.../DefaultHttpContextAccessor.cs | 0
.../IHttpContextAccessor.cs | 0
.../Internal/PropertyReader.cs | 0
.../AspNetApplicationValueLayoutRenderer.cs | 0
.../AspNetItemValueLayoutRenderer.cs | 0
.../AspNetLayoutRendererBase.cs | 0
.../AspNetRequestValueLayoutRenderer.cs | 0
.../AspNetSessionIDLayoutRenderer.cs | 0
.../AspNetSessionValueLayoutRenderer.cs | 0
.../AspNetUserAuthTypeLayoutRenderer.cs | 0
.../AspNetUserIdentityLayoutRenderer.cs | 0
.../IISInstanceNameLayoutRenderer.cs | 0
.../NLog.Web.aspnet5.xproj | 5 +-
.../NLog.Web.csproj | 0
.../NLog.Web.nuget.targets | 0
{NLog.Web => NLog.Web.ASPNET5}/NLog.snk | Bin
.../NLogHttpModule.cs | 0
.../Properties/AssemblyInfo.cs | 8 +-
.../Targets/AspNetTrace.cs | 0
.../Wrappers/AspNetBufferingTargetWrapper.cs | 0
NLog.Web.ASPNET5/global.json | 5 +
.../packages.NLog.Web.config | 0
{NLog.Web => NLog.Web.ASPNET5}/project.json | 22 +++--
.../project.lock.json | 0
NLog.Web.Tests/NLog.Web.Tests.csproj | 2 +-
NLog.Web.aspnet5.sln | 5 +-
NLog.Web.sln | 10 +-
NLog.Web/@NLog.Web.csproj | 86 ------------------
28 files changed, 38 insertions(+), 105 deletions(-)
rename {NLog.Web => NLog.Web.ASPNET5}/DefaultHttpContextAccessor.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/IHttpContextAccessor.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/Internal/PropertyReader.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/LayoutRenderers/AspNetItemValueLayoutRenderer.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/LayoutRenderers/AspNetLayoutRendererBase.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/LayoutRenderers/IISInstanceNameLayoutRenderer.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/NLog.Web.aspnet5.xproj (93%)
rename {NLog.Web => NLog.Web.ASPNET5}/NLog.Web.csproj (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/NLog.Web.nuget.targets (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/NLog.snk (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/NLogHttpModule.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/Properties/AssemblyInfo.cs (89%)
rename {NLog.Web => NLog.Web.ASPNET5}/Targets/AspNetTrace.cs (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/Targets/Wrappers/AspNetBufferingTargetWrapper.cs (100%)
create mode 100644 NLog.Web.ASPNET5/global.json
rename {NLog.Web => NLog.Web.ASPNET5}/packages.NLog.Web.config (100%)
rename {NLog.Web => NLog.Web.ASPNET5}/project.json (55%)
rename {NLog.Web => NLog.Web.ASPNET5}/project.lock.json (100%)
delete mode 100644 NLog.Web/@NLog.Web.csproj
diff --git a/NLog.Web/DefaultHttpContextAccessor.cs b/NLog.Web.ASPNET5/DefaultHttpContextAccessor.cs
similarity index 100%
rename from NLog.Web/DefaultHttpContextAccessor.cs
rename to NLog.Web.ASPNET5/DefaultHttpContextAccessor.cs
diff --git a/NLog.Web/IHttpContextAccessor.cs b/NLog.Web.ASPNET5/IHttpContextAccessor.cs
similarity index 100%
rename from NLog.Web/IHttpContextAccessor.cs
rename to NLog.Web.ASPNET5/IHttpContextAccessor.cs
diff --git a/NLog.Web/Internal/PropertyReader.cs b/NLog.Web.ASPNET5/Internal/PropertyReader.cs
similarity index 100%
rename from NLog.Web/Internal/PropertyReader.cs
rename to NLog.Web.ASPNET5/Internal/PropertyReader.cs
diff --git a/NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs
similarity index 100%
rename from NLog.Web/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs
rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetApplicationValueLayoutRenderer.cs
diff --git a/NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetItemValueLayoutRenderer.cs
similarity index 100%
rename from NLog.Web/LayoutRenderers/AspNetItemValueLayoutRenderer.cs
rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetItemValueLayoutRenderer.cs
diff --git a/NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetLayoutRendererBase.cs
similarity index 100%
rename from NLog.Web/LayoutRenderers/AspNetLayoutRendererBase.cs
rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetLayoutRendererBase.cs
diff --git a/NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs
similarity index 100%
rename from NLog.Web/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs
rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetRequestValueLayoutRenderer.cs
diff --git a/NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs
similarity index 100%
rename from NLog.Web/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs
rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetSessionIDLayoutRenderer.cs
diff --git a/NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs
similarity index 100%
rename from NLog.Web/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs
rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetSessionValueLayoutRenderer.cs
diff --git a/NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs
similarity index 100%
rename from NLog.Web/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs
rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetUserAuthTypeLayoutRenderer.cs
diff --git a/NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs
similarity index 100%
rename from NLog.Web/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs
rename to NLog.Web.ASPNET5/LayoutRenderers/AspNetUserIdentityLayoutRenderer.cs
diff --git a/NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs b/NLog.Web.ASPNET5/LayoutRenderers/IISInstanceNameLayoutRenderer.cs
similarity index 100%
rename from NLog.Web/LayoutRenderers/IISInstanceNameLayoutRenderer.cs
rename to NLog.Web.ASPNET5/LayoutRenderers/IISInstanceNameLayoutRenderer.cs
diff --git a/NLog.Web/NLog.Web.aspnet5.xproj b/NLog.Web.ASPNET5/NLog.Web.aspnet5.xproj
similarity index 93%
rename from NLog.Web/NLog.Web.aspnet5.xproj
rename to NLog.Web.ASPNET5/NLog.Web.aspnet5.xproj
index 8243800a..ecd7fb5c 100644
--- a/NLog.Web/NLog.Web.aspnet5.xproj
+++ b/NLog.Web.ASPNET5/NLog.Web.aspnet5.xproj
@@ -4,7 +4,6 @@
14.0
$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
-
74d5915b-bea9-404c-b4d0-b663164def37
@@ -12,9 +11,9 @@
..\artifacts\obj\$(MSBuildProjectName)
..\artifacts\bin\$(MSBuildProjectName)\
-
2.0
+ True
-
+
\ No newline at end of file
diff --git a/NLog.Web/NLog.Web.csproj b/NLog.Web.ASPNET5/NLog.Web.csproj
similarity index 100%
rename from NLog.Web/NLog.Web.csproj
rename to NLog.Web.ASPNET5/NLog.Web.csproj
diff --git a/NLog.Web/NLog.Web.nuget.targets b/NLog.Web.ASPNET5/NLog.Web.nuget.targets
similarity index 100%
rename from NLog.Web/NLog.Web.nuget.targets
rename to NLog.Web.ASPNET5/NLog.Web.nuget.targets
diff --git a/NLog.Web/NLog.snk b/NLog.Web.ASPNET5/NLog.snk
similarity index 100%
rename from NLog.Web/NLog.snk
rename to NLog.Web.ASPNET5/NLog.snk
diff --git a/NLog.Web/NLogHttpModule.cs b/NLog.Web.ASPNET5/NLogHttpModule.cs
similarity index 100%
rename from NLog.Web/NLogHttpModule.cs
rename to NLog.Web.ASPNET5/NLogHttpModule.cs
diff --git a/NLog.Web/Properties/AssemblyInfo.cs b/NLog.Web.ASPNET5/Properties/AssemblyInfo.cs
similarity index 89%
rename from NLog.Web/Properties/AssemblyInfo.cs
rename to NLog.Web.ASPNET5/Properties/AssemblyInfo.cs
index 251057e8..fe4a8856 100644
--- a/NLog.Web/Properties/AssemblyInfo.cs
+++ b/NLog.Web.ASPNET5/Properties/AssemblyInfo.cs
@@ -5,11 +5,17 @@
// 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.
+#if DNX
+[assembly: AssemblyTitle("NLog.Web.ASPNET5")]
+[assembly: AssemblyProduct("NLog.Web for ASP.NET5")]
+#else
[assembly: AssemblyTitle("NLog.Web")]
+[assembly: AssemblyProduct("NLog.Web")]
+#endif
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("NLog.Web")]
+
[assembly: AssemblyCopyright("Copyright © NLog 2015-2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
diff --git a/NLog.Web/Targets/AspNetTrace.cs b/NLog.Web.ASPNET5/Targets/AspNetTrace.cs
similarity index 100%
rename from NLog.Web/Targets/AspNetTrace.cs
rename to NLog.Web.ASPNET5/Targets/AspNetTrace.cs
diff --git a/NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs b/NLog.Web.ASPNET5/Targets/Wrappers/AspNetBufferingTargetWrapper.cs
similarity index 100%
rename from NLog.Web/Targets/Wrappers/AspNetBufferingTargetWrapper.cs
rename to NLog.Web.ASPNET5/Targets/Wrappers/AspNetBufferingTargetWrapper.cs
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/packages.NLog.Web.config b/NLog.Web.ASPNET5/packages.NLog.Web.config
similarity index 100%
rename from NLog.Web/packages.NLog.Web.config
rename to NLog.Web.ASPNET5/packages.NLog.Web.config
diff --git a/NLog.Web/project.json b/NLog.Web.ASPNET5/project.json
similarity index 55%
rename from NLog.Web/project.json
rename to NLog.Web.ASPNET5/project.json
index 2c87684a..8e85e87d 100644
--- a/NLog.Web/project.json
+++ b/NLog.Web.ASPNET5/project.json
@@ -1,11 +1,21 @@
{
+
+ "version": "4.3.0",
+ "summary": "NLog - Advanced .NET and Silverlight Logging",
+ "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+ "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",
- "version": "1.0.0-*",
- "description": "NLog.Web Class Library",
- "authors": [ "j.verdurmen" ],
- "tags": [ "" ],
- "projectUrl": "",
- "licenseUrl": "",
+
"frameworks": {
"dnxcore50": {
"compilationOptions": { "define": [ "DOTNET5_4", "DNX" ] },
diff --git a/NLog.Web/project.lock.json b/NLog.Web.ASPNET5/project.lock.json
similarity index 100%
rename from NLog.Web/project.lock.json
rename to NLog.Web.ASPNET5/project.lock.json
diff --git a/NLog.Web.Tests/NLog.Web.Tests.csproj b/NLog.Web.Tests/NLog.Web.Tests.csproj
index 6c688d73..c657b4a7 100644
--- a/NLog.Web.Tests/NLog.Web.Tests.csproj
+++ b/NLog.Web.Tests/NLog.Web.Tests.csproj
@@ -90,7 +90,7 @@
-
+
{E30DC886-8431-4CFA-90FA-38D9BE4203A0}
NLog.Web
diff --git a/NLog.Web.aspnet5.sln b/NLog.Web.aspnet5.sln
index 038845e1..a7ed6b74 100644
--- a/NLog.Web.aspnet5.sln
+++ b/NLog.Web.aspnet5.sln
@@ -3,8 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
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}"
+ ProjectSection(SolutionItems) = preProject
+ NLog.Web\global.json = NLog.Web\global.json
+ EndProjectSection
EndProject
-Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NLog.Web.aspnet5", "NLog.Web\NLog.Web.aspnet5.xproj", "{74D5915B-BEA9-404C-B4D0-B663164DEF37}"
+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
diff --git a/NLog.Web.sln b/NLog.Web.sln
index 5d367b5f..b96e4696 100644
--- a/NLog.Web.sln
+++ b/NLog.Web.sln
@@ -1,14 +1,10 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 14
-VisualStudioVersion = 14.0.24720.0
+# 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}"
- ProjectSection(SolutionItems) = preProject
- NLog.Web.Tests\global.json = NLog.Web.Tests\global.json
- NLog.Web\global.json = NLog.Web\global.json
- EndProjectSection
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NLog.Web", "NLog.Web\NLog.Web.csproj", "{E30DC886-8431-4CFA-90FA-38D9BE4203A0}"
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NLog.Web", "NLog.Web.ASPNET5\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}"
EndProject
diff --git a/NLog.Web/@NLog.Web.csproj b/NLog.Web/@NLog.Web.csproj
deleted file mode 100644
index 6fd279e5..00000000
--- a/NLog.Web/@NLog.Web.csproj
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
- Debug
- AnyCPU
- {E30DC886-8431-4CFA-90FA-38D9BE4203A0}
- Library
- Properties
- NLog.Web
- NLog.Web
- v3.5
- 512
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
- true
- bin\Debug\NLog.Web.XML
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
- bin\Release\NLog.Web.XML
- true
-
-
- true
-
-
- NLog.snk
-
-
-
- ..\packages\NLog.4.0.1\lib\net35\NLog.dll
- True
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
From e0b8b11cd2dda5083c24a8ab0ea62f463dca43b3 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 14 Feb 2016 17:29:36 +0100
Subject: [PATCH 12/21] Update appveyor.yml
---
appveyor.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/appveyor.yml b/appveyor.yml
index d1de9825..f0cb0411 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -23,8 +23,8 @@ build:
verbosity: quiet
build_script:
-- dnu build NLog.Web\project.json --configuration release --quiet
-- dnu build NLog.Web.Tests\project.json --configuration release --quiet
+- dnu build NLog.Web.ASPNET5\project.json --configuration release --quiet
+
deploy: off
test_script:
From c3e0821242249ba7606f7d02a9d77c9335eba909 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 14 Feb 2016 23:25:39 +0100
Subject: [PATCH 13/21] move shared files to ASPNET5 folders, reference from
CSPROJ
---
.../DefaultHttpContextAccessorTests.cs | 0
.../FakeHttpContextAccessor.cs | 0
...pNetApplicationValueLayoutRendererTests.cs | 0
.../AspNetItemValueLayoutRendererTests.cs | 0
.../AspNetRequestValueLayoutRendererTests.cs | 0
.../AspNetSessionIDLayoutRendererTests.cs | 0
.../AspNetSessionValueLayoutRendererTests.cs | 0
.../AspNetUserAuthTypeLayoutRendererTests.cs | 0
.../AspNetUserIdentityLayoutRendererTests.cs | 0
.../TestInvolvingAspNetHttpContext.cs | 0
.../NLog.Web.Tests.aspnet5.xproj | 0
.../Properties/AssemblyInfo.cs | 0
.../project.json | 0
.../project.lock.json | 0
NLog.Web.ASPNET5/project.lock.json | 8492 +++--------------
NLog.Web.Tests/NLog.Web.Tests.csproj | 28 +-
NLog.Web.sln | 2 +-
.../NLog.Web.csproj | 34 +-
NLog.Web/NLog.snk | Bin 0 -> 596 bytes
.../packages.NLog.Web.config | 0
appveyor.yml | 4 +-
21 files changed, 1464 insertions(+), 7096 deletions(-)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/DefaultHttpContextAccessorTests.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/FakeHttpContextAccessor.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/LayoutRenderers/AspNetApplicationValueLayoutRendererTests.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/LayoutRenderers/AspNetItemValueLayoutRendererTests.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/LayoutRenderers/AspNetRequestValueLayoutRendererTests.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/LayoutRenderers/AspNetSessionIDLayoutRendererTests.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/LayoutRenderers/AspNetUserAuthTypeLayoutRendererTests.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/LayoutRenderers/AspNetUserIdentityLayoutRendererTests.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/LayoutRenderers/TestInvolvingAspNetHttpContext.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/NLog.Web.Tests.aspnet5.xproj (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/Properties/AssemblyInfo.cs (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/project.json (100%)
rename {NLog.Web.Tests => NLog.Web.ASPNET5.Tests}/project.lock.json (100%)
rename {NLog.Web.ASPNET5 => NLog.Web}/NLog.Web.csproj (68%)
create mode 100644 NLog.Web/NLog.snk
rename {NLog.Web.ASPNET5 => NLog.Web}/packages.NLog.Web.config (100%)
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 100%
rename from NLog.Web.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs
rename to NLog.Web.ASPNET5.Tests/LayoutRenderers/AspNetSessionValueLayoutRendererTests.cs
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 100%
rename from NLog.Web.Tests/LayoutRenderers/TestInvolvingAspNetHttpContext.cs
rename to NLog.Web.ASPNET5.Tests/LayoutRenderers/TestInvolvingAspNetHttpContext.cs
diff --git a/NLog.Web.Tests/NLog.Web.Tests.aspnet5.xproj b/NLog.Web.ASPNET5.Tests/NLog.Web.Tests.aspnet5.xproj
similarity index 100%
rename from NLog.Web.Tests/NLog.Web.Tests.aspnet5.xproj
rename to NLog.Web.ASPNET5.Tests/NLog.Web.Tests.aspnet5.xproj
diff --git a/NLog.Web.Tests/Properties/AssemblyInfo.cs b/NLog.Web.ASPNET5.Tests/Properties/AssemblyInfo.cs
similarity index 100%
rename from NLog.Web.Tests/Properties/AssemblyInfo.cs
rename to NLog.Web.ASPNET5.Tests/Properties/AssemblyInfo.cs
diff --git a/NLog.Web.Tests/project.json b/NLog.Web.ASPNET5.Tests/project.json
similarity index 100%
rename from NLog.Web.Tests/project.json
rename to NLog.Web.ASPNET5.Tests/project.json
diff --git a/NLog.Web.Tests/project.lock.json b/NLog.Web.ASPNET5.Tests/project.lock.json
similarity index 100%
rename from NLog.Web.Tests/project.lock.json
rename to NLog.Web.ASPNET5.Tests/project.lock.json
diff --git a/NLog.Web.ASPNET5/project.lock.json b/NLog.Web.ASPNET5/project.lock.json
index 3f108d55..846c0be9 100644
--- a/NLog.Web.ASPNET5/project.lock.json
+++ b/NLog.Web.ASPNET5/project.lock.json
@@ -1,7194 +1,2000 @@
{
"locked": false,
- "version": 2,
+ "version": 1,
"targets": {
- "DNXCore,Version=v5.0": {
+ ".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",
- "System.IO": "4.0.11-beta-23516",
- "System.Resources.ResourceManager": "4.0.1-beta-23516"
+ "Microsoft.Extensions.Primitives": "[1.0.0-rc1-final, )"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
+ "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",
- "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"
+ "Microsoft.AspNet.FileProviders.Abstractions": "[1.0.0-rc1-final, )"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "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.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"
+ "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/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.dll": {}
},
"runtime": {
- "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
+ "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"
+ "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/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ "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"
+ "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/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "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",
- "System.Diagnostics.Debug": "4.0.11-beta-23516",
- "System.Text.Encoding": "4.0.11-beta-23516"
+ "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/dotnet5.4/Microsoft.AspNet.Http.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
+ "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",
- "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"
+ "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/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "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",
- "System.IO.FileSystem": "4.0.1-beta-23516",
- "System.Resources.ResourceManager": "4.0.1-beta-23516",
- "System.Runtime": "4.0.21-beta-23516"
+ "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/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
+ "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",
- "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"
+ "Microsoft.Extensions.Primitives": "[1.0.0-rc1-final, )"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
+ "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",
- "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"
+ "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/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
+ "lib/net451/Microsoft.AspNet.WebUtilities.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp"
+ ],
"compile": {
- "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ "lib/net45/_._": {}
}
},
"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"
+ "Microsoft.Extensions.PlatformAbstractions": "[1.0.0-rc1-final, )"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "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",
- "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"
+ "Microsoft.Extensions.Configuration.Abstractions": "[1.0.0-rc1-final, )"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
+ "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",
- "System.Linq": "4.0.1-beta-23516"
+ "Microsoft.Extensions.Primitives": "[1.0.0-rc1-final, )"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "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"
+ "Microsoft.Extensions.Configuration": "[1.0.0-rc1-final, )"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "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"
+ "Microsoft.Extensions.Configuration": "[1.0.0-rc1-final, )"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "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",
- "System.AppContext": "4.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "[1.0.0-rc1-final, )"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "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",
- "System.Dynamic.Runtime": "4.0.11-beta-23516"
+ "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/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
+ "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",
- "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"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "[1.0.0-rc1-final, )"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "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",
- "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"
+ "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/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
+ "lib/net451/Microsoft.Extensions.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
+ "lib/net451/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"
- },
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
+ "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
+ "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
}
},
- "Microsoft.Win32.Primitives/4.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.0.20",
- "System.Runtime.InteropServices": "4.0.20"
- },
+ "Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ "lib/net451/Microsoft.Net.Http.Headers.dll": {}
},
"runtime": {
- "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
+ "lib/net451/Microsoft.Net.Http.Headers.dll": {}
}
},
"Newtonsoft.Json/6.0.6": {
- "type": "package",
"compile": {
- "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
+ "lib/net45/Newtonsoft.Json.dll": {}
},
"runtime": {
- "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
+ "lib/net45/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"
- },
+ "frameworkAssemblies": [
+ "mscorlib",
+ "System",
+ "System.Configuration",
+ "System.Core",
+ "System.Data",
+ "System.Runtime.Serialization",
+ "System.ServiceModel",
+ "System.Transactions",
+ "System.Xml"
+ ],
"compile": {
- "lib/dnxcore50/NLog.dll": {}
+ "lib/net35/NLog.dll": {}
},
"runtime": {
- "lib/dnxcore50/NLog.dll": {}
+ "lib/net35/NLog.dll": {}
}
},
- "System.AppContext/4.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.0.0"
- },
+ "System.Collections/4.0.11-beta-23516": {
"compile": {
- "ref/dotnet/System.AppContext.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.AppContext.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Collections/4.0.11-beta-23516": {
- "type": "package",
+ "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
"dependencies": {
- "System.Runtime": "4.0.21-beta-23516"
+ "System.Diagnostics.Tracing": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.4/System.Collections.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Collections.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.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"
- },
+ "System.Diagnostics.Tracing/4.0.0": {
"compile": {
- "ref/dotnet5.4/System.Collections.Concurrent.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet5.4/System.Collections.Concurrent.dll": {}
+ "lib/net45/_._": {}
}
},
- "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"
- },
+ "System.Linq/4.0.1-beta-23516": {
"compile": {
- "ref/dotnet/System.Collections.NonGeneric.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ "lib/net45/_._": {}
}
},
- "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"
- },
+ "System.Runtime/4.0.21-beta-23516": {
"compile": {
- "ref/dotnet/System.Collections.Specialized.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet/System.Collections.Specialized.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.ComponentModel/4.0.1-beta-23516": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.0.20"
- },
+ "System.Threading/4.0.11-beta-23516": {
"compile": {
- "ref/dotnet5.1/System.ComponentModel.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet5.4/System.ComponentModel.dll": {}
+ "lib/net45/_._": {}
}
- },
- "System.ComponentModel.EventBasedAsync/4.0.10": {
- "type": "package",
+ }
+ },
+ "DNXCore,Version=v5.0": {
+ "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
"dependencies": {
- "System.Resources.ResourceManager": "4.0.0",
- "System.Runtime": "4.0.20",
- "System.Threading": "4.0.10",
- "System.Threading.Tasks": "4.0.10"
+ "Microsoft.Extensions.Primitives": "[1.0.0-rc1-final, )",
+ "System.IO": "[4.0.11-beta-23516, )",
+ "System.Resources.ResourceManager": "[4.0.1-beta-23516, )"
},
"compile": {
- "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
}
},
- "System.ComponentModel.Primitives/4.0.0": {
- "type": "package",
+ "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
"dependencies": {
- "System.ComponentModel": "4.0.0",
- "System.Runtime": "4.0.20"
+ "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": {
- "ref/dotnet/System.ComponentModel.Primitives.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
},
"runtime": {
- "lib/dotnet/System.ComponentModel.Primitives.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.0.1-beta-23516": {
- "type": "package",
+ "Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {}
+ "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll": {}
+ "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
}
},
- "System.Console/4.0.0-beta-23516": {
- "type": "package",
+ "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
"dependencies": {
- "System.IO": "4.0.0",
- "System.Runtime": "4.0.0"
+ "Microsoft.AspNet.FileProviders.Abstractions": "[1.0.0-rc1-final, )",
+ "Microsoft.AspNet.Http.Abstractions": "[1.0.0-rc1-final, )"
},
"compile": {
- "ref/dotnet5.1/System.Console.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
}
},
- "System.Data.Common/4.0.0": {
- "type": "package",
+ "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
"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"
+ "Microsoft.AspNet.Http.Features": "[1.0.0-rc1-final, )",
+ "Microsoft.Extensions.Configuration.Abstractions": "[1.0.0-rc1-final, )"
},
"compile": {
- "ref/dotnet/System.Data.Common.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet/System.Data.Common.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1-beta-23516": {
- "type": "package",
+ "Microsoft.AspNet.Http/1.0.0-rc1-final": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Contracts.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11-beta-23516": {
- "type": "package",
+ "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.4/System.Diagnostics.Debug.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
- "type": "package",
+ "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
"dependencies": {
- "System.Diagnostics.Tracing": "4.0.0",
- "System.Runtime": "4.0.0",
- "System.Threading": "4.0.0"
+ "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.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
},
"runtime": {
- "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
}
},
- "System.Diagnostics.StackTrace/4.0.1-beta-23516": {
- "type": "package",
+ "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
"dependencies": {
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.1/System.Diagnostics.StackTrace.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1-beta-23516": {
- "type": "package",
+ "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.1/System.Diagnostics.Tools.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
}
},
- "System.Diagnostics.TraceSource/4.0.0-beta-23516": {
- "type": "package",
+ "Microsoft.CSharp/4.0.1-beta-23516": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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/System.Diagnostics.TraceSource.dll": {}
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.CSharp.dll": {}
}
},
- "System.Diagnostics.Tracing/4.0.20": {
- "type": "package",
+ "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "Microsoft.Extensions.PlatformAbstractions": "[1.0.0-rc1-final, )",
+ "System.IO.FileSystem": "[4.0.1-beta-23516, )"
},
"compile": {
- "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
+ "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
}
},
- "System.Dynamic.Runtime/4.0.11-beta-23516": {
- "type": "package",
+ "Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet5.4/System.Dynamic.Runtime.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Dynamic.Runtime.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
}
},
- "System.Globalization/4.0.11-beta-23516": {
- "type": "package",
+ "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "Microsoft.Extensions.Primitives": "[1.0.0-rc1-final, )",
+ "System.Linq": "[4.0.1-beta-23516, )"
},
"compile": {
- "ref/dotnet5.4/System.Globalization.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Globalization.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "System.Globalization.Extensions/4.0.1-beta-23516": {
- "type": "package",
+ "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
"dependencies": {
- "System.Globalization": "4.0.0",
- "System.Runtime": "4.0.0",
- "System.Runtime.Extensions": "4.0.0"
+ "Microsoft.Extensions.Configuration": "[1.0.0-rc1-final, )"
},
"compile": {
- "ref/dotnet5.1/System.Globalization.Extensions.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
}
},
- "System.IO/4.0.11-beta-23516": {
- "type": "package",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": {
"dependencies": {
- "System.Runtime": "4.0.20",
- "System.Text.Encoding": "4.0.0",
- "System.Threading.Tasks": "4.0.0"
+ "Microsoft.Extensions.Configuration": "[1.0.0-rc1-final, )"
},
"compile": {
- "ref/dotnet5.4/System.IO.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.IO.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "System.IO.Compression/4.0.1-beta-23409": {
- "type": "package",
+ "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": {
"dependencies": {
- "System.IO": "4.0.0",
- "System.Runtime": "4.0.0",
- "System.Text.Encoding": "4.0.0",
- "System.Threading.Tasks": "4.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "[1.0.0-rc1-final, )",
+ "System.AppContext": "[4.0.0, )"
},
"compile": {
- "ref/dotnet/System.IO.Compression.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "System.IO.FileSystem/4.0.1-beta-23516": {
- "type": "package",
+ "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet5.4/System.IO.FileSystem.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1-beta-23516": {
- "type": "package",
+ "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
"dependencies": {
- "System.Runtime": "4.0.20"
+ "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": {
- "ref/dotnet5.1/System.IO.FileSystem.Primitives.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0-beta-23516": {
- "type": "package",
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.1/System.IO.FileSystem.Watcher.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "System.Linq/4.0.1-beta-23516": {
- "type": "package",
+ "Microsoft.Extensions.Logging/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet5.1/System.Linq.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Linq.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
}
},
- "System.Linq.Expressions/4.0.11-beta-23516": {
- "type": "package",
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
"dependencies": {
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "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": {
- "ref/dotnet5.4/System.Linq.Expressions.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "System.Linq.Queryable/4.0.0": {
- "type": "package",
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/System.Linq.Queryable.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/dotnet/System.Linq.Queryable.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "System.Net.Http/4.0.0": {
- "type": "package",
+ "Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
"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"
+ "System.Resources.ResourceManager": "[4.0.1-beta-23516, )",
+ "System.Runtime": "[4.0.21-beta-23516, )"
},
"compile": {
- "ref/dotnet/System.Net.Http.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Net.Http.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
}
},
- "System.Net.Primitives/4.0.11-beta-23516": {
- "type": "package",
+ "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": {
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.Handles": "4.0.0"
+ "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": {
- "ref/dotnet5.4/System.Net.Primitives.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
}
},
- "System.Net.Requests/4.0.10": {
- "type": "package",
+ "Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
"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"
+ "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": {
- "ref/dotnet/System.Net.Requests.dll": {}
+ "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
},
"runtime": {
- "lib/dotnet/System.Net.Requests.dll": {}
+ "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
}
},
- "System.Net.Sockets/4.0.0": {
- "type": "package",
+ "Microsoft.Win32.Primitives/4.0.0": {
"dependencies": {
- "System.Net.Primitives": "4.0.10",
- "System.Runtime": "4.0.0"
+ "System.Runtime": "[4.0.20, )",
+ "System.Runtime.InteropServices": "[4.0.20, )"
},
"compile": {
- "ref/dotnet/System.Net.Sockets.dll": {}
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/Microsoft.Win32.Primitives.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"
- },
+ "Newtonsoft.Json/6.0.6": {
"compile": {
- "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
},
"runtime": {
- "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
}
},
- "System.Net.WebSockets/4.0.0-beta-23516": {
- "type": "package",
+ "NLog/4.4.0-alpha1": {
"dependencies": {
- "Microsoft.Win32.Primitives": "4.0.0",
- "System.Resources.ResourceManager": "4.0.0",
- "System.Runtime": "4.0.20",
- "System.Threading.Tasks": "4.0.0"
+ "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": {
- "ref/dotnet5.1/System.Net.WebSockets.dll": {}
+ "lib/dnxcore50/NLog.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Net.WebSockets.dll": {}
+ "lib/dnxcore50/NLog.dll": {}
}
},
- "System.ObjectModel/4.0.10": {
- "type": "package",
+ "System.AppContext/4.0.0": {
"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"
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet/System.ObjectModel.dll": {}
+ "ref/dotnet/System.AppContext.dll": {}
},
"runtime": {
- "lib/dotnet/System.ObjectModel.dll": {}
+ "lib/DNXCore50/System.AppContext.dll": {}
}
},
- "System.Private.DataContractSerialization/4.0.0": {
- "type": "package",
+ "System.Collections/4.0.11-beta-23516": {
"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"
+ "System.Runtime": "[4.0.21-beta-23516, )"
},
"compile": {
- "ref/dnxcore50/_._": {}
+ "ref/dotnet5.4/System.Collections.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Private.DataContractSerialization.dll": {}
+ "lib/DNXCore50/System.Collections.dll": {}
}
},
- "System.Private.ServiceModel/4.0.0": {
- "type": "package",
+ "System.Collections.Concurrent/4.0.11-beta-23516": {
"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"
+ "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/dnxcore50/_._": {}
+ "ref/dotnet5.4/System.Collections.Concurrent.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Private.ServiceModel.dll": {}
- }
- },
- "System.Private.Uri/4.0.1-beta-23516": {
- "type": "package",
- "compile": {
- "ref/dnxcore50/_._": {}
+ "lib/dotnet5.4/System.Collections.Concurrent.dll": {}
}
},
- "System.Reflection/4.1.0-beta-23225": {
- "type": "package",
+ "System.Collections.NonGeneric/4.0.0": {
"dependencies": {
- "System.IO": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Runtime": "4.0.20"
+ "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.Reflection.dll": {}
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.dll": {}
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
}
},
- "System.Reflection.DispatchProxy/4.0.0": {
- "type": "package",
+ "System.Collections.Specialized/4.0.0": {
"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"
+ "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.Reflection.DispatchProxy.dll": {}
+ "ref/dotnet/System.Collections.Specialized.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {}
+ "lib/dotnet/System.Collections.Specialized.dll": {}
}
},
- "System.Reflection.Emit/4.0.0": {
- "type": "package",
+ "System.ComponentModel/4.0.1-beta-23516": {
"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"
+ "System.Runtime": "[4.0.20, )"
},
"compile": {
- "ref/dotnet/System.Reflection.Emit.dll": {}
+ "ref/dotnet5.1/System.ComponentModel.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Emit.dll": {}
+ "lib/dotnet5.4/System.ComponentModel.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.0": {
- "type": "package",
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
"dependencies": {
- "System.Reflection": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Runtime": "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.Reflection.Emit.ILGeneration.dll": {}
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1-beta-23516": {
- "type": "package",
+ "System.ComponentModel.Primitives/4.0.0": {
"dependencies": {
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "System.ComponentModel": "[4.0.0, )",
+ "System.Runtime": "[4.0.20, )"
},
"compile": {
- "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ "ref/dotnet/System.ComponentModel.Primitives.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ "lib/dotnet/System.ComponentModel.Primitives.dll": {}
}
},
- "System.Reflection.Primitives/4.0.0": {
- "type": "package",
+ "System.ComponentModel.TypeConverter/4.0.1-beta-23516": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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/dotnet/System.Reflection.Primitives.dll": {}
+ "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
- "type": "package",
+ "System.Console/4.0.0-beta-23516": {
"dependencies": {
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "System.IO": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ "ref/dotnet5.1/System.Console.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1-beta-23516": {
- "type": "package",
+ "System.Data.Common/4.0.0": {
"dependencies": {
- "System.Globalization": "4.0.0",
- "System.Reflection": "4.0.0",
- "System.Runtime": "4.0.0"
+ "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/dotnet5.1/System.Resources.ResourceManager.dll": {}
+ "ref/dotnet/System.Data.Common.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ "lib/dotnet/System.Data.Common.dll": {}
}
},
- "System.Runtime/4.0.21-beta-23516": {
- "type": "package",
+ "System.Diagnostics.Contracts/4.0.1-beta-23516": {
"dependencies": {
- "System.Private.Uri": "4.0.1-beta-23516"
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.4/System.Runtime.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.dll": {}
+ "lib/DNXCore50/System.Diagnostics.Contracts.dll": {}
}
},
- "System.Runtime.Extensions/4.0.11-beta-23516": {
- "type": "package",
+ "System.Diagnostics.Debug/4.0.11-beta-23516": {
"dependencies": {
- "System.Runtime": "4.0.20"
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ "ref/dotnet5.4/System.Diagnostics.Debug.dll": {}
}
},
- "System.Runtime.Handles/4.0.0": {
- "type": "package",
+ "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Diagnostics.Tracing": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading": "[4.0.0, )"
},
"compile": {
- "ref/dotnet/System.Runtime.Handles.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Runtime.InteropServices/4.0.21-beta-23516": {
- "type": "package",
+ "System.Diagnostics.StackTrace/4.0.1-beta-23516": {
"dependencies": {
- "System.Reflection": "4.0.0",
- "System.Reflection.Primitives": "4.0.0",
- "System.Runtime": "4.0.0",
- "System.Runtime.Handles": "4.0.0"
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.4/System.Runtime.InteropServices.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.0-beta-23516": {
- "type": "package",
+ "System.Diagnostics.Tools/4.0.1-beta-23516": {
"dependencies": {
- "System.Resources.ResourceManager": "4.0.0",
- "System.Runtime": "4.0.20"
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.Tools.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
+ "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
}
},
- "System.Runtime.Serialization.Xml/4.0.10": {
- "type": "package",
+ "System.Diagnostics.TraceSource/4.0.0-beta-23516": {
"dependencies": {
- "System.Private.DataContractSerialization": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.0.10"
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.TraceSource.dll": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.0.20": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
+ "compile": {
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {}
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
}
},
- "System.Security.Claims/4.0.1-beta-23516": {
- "type": "package",
+ "System.Dynamic.Runtime/4.0.11-beta-23516": {
"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"
+ "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.1/System.Security.Claims.dll": {}
+ "ref/dotnet5.4/System.Dynamic.Runtime.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Security.Claims.dll": {}
+ "lib/DNXCore50/System.Dynamic.Runtime.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
- "type": "package",
+ "System.Globalization/4.0.11-beta-23516": {
"dependencies": {
- "System.IO": "4.0.0",
- "System.Runtime": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0-beta-23516"
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {}
+ "ref/dotnet5.4/System.Globalization.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Globalization.dll": {}
}
},
- "System.Security.Cryptography.Encoding/4.0.0-beta-23516": {
- "type": "package",
+ "System.Globalization.Extensions/4.0.1-beta-23516": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Globalization": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )",
+ "System.Runtime.Extensions": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll": {}
+ "ref/dotnet5.1/System.Globalization.Extensions.dll": {}
}
},
- "System.Security.Cryptography.Primitives/4.0.0-beta-23516": {
- "type": "package",
+ "System.IO/4.0.11-beta-23516": {
"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"
+ "System.Runtime": "[4.0.20, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Primitives.dll": {}
+ "ref/dotnet5.4/System.IO.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
+ "lib/DNXCore50/System.IO.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
- "type": "package",
+ "System.IO.Compression/4.0.1-beta-23409": {
"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"
+ "System.IO": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
+ "ref/dotnet/System.IO.Compression.dll": {}
}
},
- "System.Security.Principal/4.0.1-beta-23516": {
- "type": "package",
+ "System.IO.FileSystem/4.0.1-beta-23516": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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.1/System.Security.Principal.dll": {}
- },
- "runtime": {
- "lib/dotnet5.1/System.Security.Principal.dll": {}
+ "ref/dotnet5.4/System.IO.FileSystem.dll": {}
}
},
- "System.ServiceModel.Primitives/4.0.0": {
- "type": "package",
+ "System.IO.FileSystem.Primitives/4.0.1-beta-23516": {
"dependencies": {
- "System.Private.ServiceModel": "4.0.0"
+ "System.Runtime": "[4.0.20, )"
},
"compile": {
- "ref/dotnet/System.ServiceModel.Primitives.dll": {}
+ "ref/dotnet5.1/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.ServiceModel.Primitives.dll": {}
+ "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {}
}
},
- "System.Text.Encoding/4.0.11-beta-23516": {
- "type": "package",
+ "System.IO.FileSystem.Watcher/4.0.0-beta-23516": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.4/System.Text.Encoding.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Text.Encoding.dll": {}
+ "ref/dotnet5.1/System.IO.FileSystem.Watcher.dll": {}
}
},
- "System.Text.Encoding.Extensions/4.0.10": {
- "type": "package",
+ "System.Linq/4.0.1-beta-23516": {
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Text.Encoding": "4.0.10"
+ "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/dotnet/System.Text.Encoding.Extensions.dll": {}
+ "ref/dotnet5.1/System.Linq.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {}
+ "lib/dotnet5.4/System.Linq.dll": {}
}
},
- "System.Text.RegularExpressions/4.0.11-beta-23516": {
- "type": "package",
+ "System.Linq.Expressions/4.0.11-beta-23516": {
"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"
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ "ref/dotnet5.4/System.Linq.Expressions.dll": {}
}
},
- "System.Threading/4.0.11-beta-23516": {
- "type": "package",
+ "System.Linq.Queryable/4.0.0": {
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Threading.Tasks": "4.0.0"
+ "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/dotnet5.4/System.Threading.dll": {}
+ "ref/dotnet/System.Linq.Queryable.dll": {}
+ },
+ "runtime": {
+ "lib/dotnet/System.Linq.Queryable.dll": {}
}
},
- "System.Threading.Tasks/4.0.11-beta-23516": {
- "type": "package",
+ "System.Net.Http/4.0.0": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "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/dotnet5.4/System.Threading.Tasks.dll": {}
+ "ref/dotnet/System.Net.Http.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Tasks.dll": {}
+ "lib/DNXCore50/System.Net.Http.dll": {}
}
},
- "System.Threading.Thread/4.0.0-beta-23516": {
- "type": "package",
+ "System.Net.Primitives/4.0.11-beta-23516": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Runtime": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )"
},
"compile": {
- "ref/dotnet5.1/System.Threading.Thread.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.Thread.dll": {}
+ "ref/dotnet5.4/System.Net.Primitives.dll": {}
}
},
- "System.Threading.ThreadPool/4.0.10-beta-23516": {
- "type": "package",
+ "System.Net.Requests/4.0.10": {
"dependencies": {
- "System.Runtime": "4.0.0",
- "System.Runtime.InteropServices": "4.0.0"
+ "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/dotnet5.2/System.Threading.ThreadPool.dll": {}
+ "ref/dotnet/System.Net.Requests.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
+ "lib/dotnet/System.Net.Requests.dll": {}
}
},
- "System.Threading.Timer/4.0.0": {
- "type": "package",
+ "System.Net.Sockets/4.0.0": {
"dependencies": {
- "System.Runtime": "4.0.0"
+ "System.Net.Primitives": "[4.0.10, )",
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "ref/dotnet/System.Threading.Timer.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.Threading.Timer.dll": {}
+ "ref/dotnet/System.Net.Sockets.dll": {}
}
},
- "System.Xml.ReaderWriter/4.0.10": {
- "type": "package",
+ "System.Net.WebHeaderCollection/4.0.0": {
"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"
+ "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.Xml.ReaderWriter.dll": {}
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
- "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
}
},
- "System.Xml.XmlDocument/4.0.1-beta-23516": {
- "type": "package",
+ "System.Net.WebSockets/4.0.0-beta-23516": {
"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"
+ "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.Xml.XmlDocument.dll": {}
+ "ref/dotnet5.1/System.Net.WebSockets.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Xml.XmlDocument.dll": {}
+ "lib/dotnet5.4/System.Net.WebSockets.dll": {}
}
},
- "System.Xml.XmlSerializer/4.0.10": {
- "type": "package",
+ "System.ObjectModel/4.0.10": {
"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"
+ "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.Xml.XmlSerializer.dll": {}
+ "ref/dotnet/System.ObjectModel.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": {}
+ "lib/dotnet/System.ObjectModel.dll": {}
}
},
- "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
- "type": "package",
+ "System.Private.DataContractSerialization/4.0.0": {
"dependencies": {
- "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final"
+ "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, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "ref/dnxcore50/_._": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "lib/DNXCore50/System.Private.DataContractSerialization.dll": {}
}
},
- "Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
- "type": "package",
+ "System.Private.ServiceModel/4.0.0": {
"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"
+ "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, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Hosting.dll": {}
+ "ref/dnxcore50/_._": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Hosting.dll": {}
+ "lib/DNXCore50/System.Private.ServiceModel.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"
- ],
+ "System.Private.Uri/4.0.1-beta-23516": {
"compile": {
- "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
- },
- "runtime": {
- "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ "ref/dnxcore50/_._": {}
}
},
- "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
- "type": "package",
+ "System.Reflection/4.1.0-beta-23225": {
"dependencies": {
- "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final"
+ "System.IO": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime": "[4.0.20, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "ref/dotnet/System.Reflection.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "lib/DNXCore50/System.Reflection.dll": {}
}
},
- "Microsoft.AspNet.Http/1.0.0-rc1-final": {
- "type": "package",
+ "System.Reflection.DispatchProxy/4.0.0": {
"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.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, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Http.dll": {}
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Http.dll": {}
+ "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {}
}
},
- "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
- "type": "package",
+ "System.Reflection.Emit/4.0.0": {
"dependencies": {
- "Microsoft.AspNet.Http.Features": "1.0.0-rc1-final",
- "Microsoft.Extensions.WebEncoders.Core": "1.0.0-rc1-final"
+ "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, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "ref/dotnet/System.Reflection.Emit.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "lib/DNXCore50/System.Reflection.Emit.dll": {}
}
},
- "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
- "type": "package",
+ "System.Reflection.Emit.ILGeneration/4.0.0": {
"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.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
+ "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
- "type": "package",
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
}
},
- "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
- "type": "package",
+ "System.Reflection.Primitives/4.0.0": {
"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": {}
+ "System.Runtime": "[4.0.0, )"
},
- "runtime": {
- "lib/net451/Microsoft.AspNet.WebUtilities.dll": {}
- }
- },
- "Microsoft.CSharp/4.0.1-beta-23516": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp"
- ],
"compile": {
- "ref/net45/_._": {}
+ "ref/dotnet/System.Reflection.Primitives.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
}
},
- "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
- "type": "package",
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
"dependencies": {
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final"
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
- "type": "package",
+ "System.Resources.ResourceManager/4.0.1-beta-23516": {
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final"
+ "System.Globalization": "[4.0.0, )",
+ "System.Reflection": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.dll": {}
+ "ref/dotnet5.1/System.Resources.ResourceManager.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.dll": {}
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": {
- "type": "package",
+ "System.Runtime/4.0.21-beta-23516": {
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
+ "System.Private.Uri": "[4.0.1-beta-23516, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "ref/dotnet5.4/System.Runtime.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "lib/DNXCore50/System.Runtime.dll": {}
}
},
- "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
- "type": "package",
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
+ "System.Runtime": "[4.0.20, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {}
- },
- "runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": {
- "type": "package",
+ "System.Runtime.Handles/4.0.0": {
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
+ "System.Runtime": "[4.0.0, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "ref/dotnet/System.Runtime.Handles.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": {
- "type": "package",
+ "System.Runtime.InteropServices/4.0.21-beta-23516": {
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final"
+ "System.Reflection": "[4.0.0, )",
+ "System.Reflection.Primitives": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )",
+ "System.Runtime.Handles": "[4.0.0, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "ref/dotnet5.4/System.Runtime.InteropServices.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
- "type": "package",
+ "System.Runtime.Serialization.Primitives/4.1.0-beta-23516": {
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0-rc1-final",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc1-final",
- "Newtonsoft.Json": "6.0.6"
+ "System.Resources.ResourceManager": "[4.0.0, )",
+ "System.Runtime": "[4.0.20, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
+ "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
+ "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
- "type": "package",
+ "System.Runtime.Serialization.Xml/4.0.10": {
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final"
+ "System.Private.DataContractSerialization": "[4.0.0, )",
+ "System.Runtime.Serialization.Primitives": "[4.0.10, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
+ "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
+ "System.Security.Claims/4.0.1-beta-23516": {
+ "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": {
- "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "ref/dotnet5.1/System.Security.Claims.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "lib/dotnet5.4/System.Security.Claims.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0-rc1-final": {
- "type": "package",
+ "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc1-final"
+ "System.IO": "[4.0.0, )",
+ "System.Runtime": "[4.0.0, )",
+ "System.Security.Cryptography.Primitives": "[4.0.0-beta-23516, )"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Collections.Concurrent",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {}
+ }
+ },
+ "System.Security.Cryptography.Encoding/4.0.0-beta-23516": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
},
- "runtime": {
- "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ "compile": {
+ "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
+ "System.Security.Cryptography.Primitives/4.0.0-beta-23516": {
+ "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": {
- "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/dotnet5.4/System.Security.Cryptography.Primitives.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": {}
+ "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
+ "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, )"
},
- "runtime": {
- "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "compile": {
+ "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
+ "System.Security.Principal/4.0.1-beta-23516": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
"compile": {
- "lib/net451/Microsoft.Extensions.Primitives.dll": {}
+ "ref/dotnet5.1/System.Security.Principal.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Primitives.dll": {}
+ "lib/dotnet5.1/System.Security.Principal.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
+ "System.ServiceModel.Primitives/4.0.0": {
+ "dependencies": {
+ "System.Private.ServiceModel": "[4.0.0, )"
+ },
"compile": {
- "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ "ref/dotnet/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ "lib/DNXCore50/System.ServiceModel.Primitives.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
+ "System.Text.Encoding/4.0.11-beta-23516": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
"compile": {
- "lib/net451/Microsoft.Net.Http.Headers.dll": {}
+ "ref/dotnet5.4/System.Text.Encoding.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Net.Http.Headers.dll": {}
+ "lib/DNXCore50/System.Text.Encoding.dll": {}
}
},
- "Newtonsoft.Json/6.0.6": {
- "type": "package",
+ "System.Text.Encoding.Extensions/4.0.10": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Text.Encoding": "[4.0.10, )"
+ },
"compile": {
- "lib/net45/Newtonsoft.Json.dll": {}
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
},
"runtime": {
- "lib/net45/Newtonsoft.Json.dll": {}
+ "lib/DNXCore50/System.Text.Encoding.Extensions.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"
- ],
+ "System.Text.RegularExpressions/4.0.11-beta-23516": {
+ "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": {
- "lib/net35/NLog.dll": {}
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
},
"runtime": {
- "lib/net35/NLog.dll": {}
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
}
},
- "runtime.win7.System.Threading/4.0.11-beta-23516": {
- "type": "package",
+ "System.Threading/4.0.11-beta-23516": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Threading.Tasks": "[4.0.0, )"
+ },
"compile": {
- "ref/dotnet/_._": {}
+ "ref/dotnet5.4/System.Threading.dll": {}
}
},
- "System.Collections/4.0.11-beta-23516": {
- "type": "package",
+ "System.Threading.Tasks/4.0.11-beta-23516": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
"compile": {
- "ref/net45/_._": {}
+ "ref/dotnet5.4/System.Threading.Tasks.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/DNXCore50/System.Threading.Tasks.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
- "type": "package",
+ "System.Threading.Thread/4.0.0-beta-23516": {
"dependencies": {
- "System.Diagnostics.Tracing": "4.0.0",
- "System.Runtime": "4.0.0",
- "System.Threading": "4.0.0"
+ "System.Runtime": "[4.0.0, )"
},
"compile": {
- "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "ref/dotnet5.1/System.Threading.Thread.dll": {}
},
"runtime": {
- "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/DNXCore50/System.Threading.Thread.dll": {}
}
},
- "System.Diagnostics.Tracing/4.0.0": {
- "type": "package",
+ "System.Threading.ThreadPool/4.0.10-beta-23516": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )",
+ "System.Runtime.InteropServices": "[4.0.0, )"
+ },
"compile": {
- "ref/net45/_._": {}
+ "ref/dotnet5.2/System.Threading.ThreadPool.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
}
},
- "System.Linq/4.0.1-beta-23516": {
- "type": "package",
+ "System.Threading.Timer/4.0.0": {
+ "dependencies": {
+ "System.Runtime": "[4.0.0, )"
+ },
"compile": {
- "ref/net45/_._": {}
+ "ref/dotnet/System.Threading.Timer.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/DNXCore50/System.Threading.Timer.dll": {}
}
},
- "System.Runtime/4.0.21-beta-23516": {
- "type": "package",
+ "System.Xml.ReaderWriter/4.0.10": {
+ "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/net45/_._": {}
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Threading/4.0.11-beta-23516": {
- "type": "package",
+ "System.Xml.XmlDocument/4.0.1-beta-23516": {
+ "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/net45/_._": {}
+ "ref/dotnet5.1/System.Xml.XmlDocument.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/dotnet5.4/System.Xml.XmlDocument.dll": {}
+ }
+ },
+ "System.Xml.XmlSerializer/4.0.10": {
+ "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": {}
}
}
}
},
"libraries": {
"Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "Tv6YJk78cH+gFipRNjeMpzzUg3t4BQiS0xYVlv/8gVNl4sI6ytAMYYfIbx8pCacIRH5Nx/Tw9GVn28eyw+JZfA==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll",
"lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.xml",
@@ -7200,8 +2006,8 @@
]
},
"Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
- "type": "package",
"sha512": "Ni5o7X21cN97krdkg3F77F5app0KpLwdpHbxdpwqaMjhMKYcmNDcyZB8Ke/qgbSMqHRwT3aQVhgEp/iJTbgl6g==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll",
"lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.xml",
@@ -7213,8 +2019,8 @@
]
},
"Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
- "type": "package",
"sha512": "6ZVZK5Ql+z6UeVOBcXCRLahcAd/NKdMAK17JBZWGZqqmxKO0LtQMdb6drb9H4nBM3/a8vbhd+23wxzyIfoCLQQ==",
+ "type": "package",
"files": [
"lib/dnx451/Microsoft.AspNet.Hosting.dll",
"lib/dnx451/Microsoft.AspNet.Hosting.xml",
@@ -7230,8 +2036,8 @@
]
},
"Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "07N5rzYcsjkLgwoI923FcAvvf7167qhLgCExXwYYkdZUIJQzneRG0DqZJTm6qpnaD5igf4FM9F+eh2m7y5NFbg==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll",
"lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.xml",
@@ -7243,8 +2049,8 @@
]
},
"Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "55ovPKPLsLvXsZ2xxtCOkQXmLwrE5iMUXe1y3A3Y/DCcI2u9VBJezu1y2EPYmZCM+uP/Y/BaQm68AWg2r8RV5w==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll",
"lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.xml",
@@ -7256,8 +2062,8 @@
]
},
"Microsoft.AspNet.Http/1.0.0-rc1-final": {
- "type": "package",
"sha512": "2vVd6xlfDKxl7pln5VOSczVo5bdJK6VLF6LR62Tb+le6e0COju7diAPHujFcXQlX/eLq2GrctN5vbIMeQ6vRTg==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.dll",
"lib/dotnet5.4/Microsoft.AspNet.Http.xml",
@@ -7269,8 +2075,8 @@
]
},
"Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "sfzc1WJMl8wGCF+rChVfJ7otT6tTv24RNXUej2r8tlQ2RDNnAozYyGb0SCW2mxpHrC31On99Wt0rksgF0c2WUw==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll",
"lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml",
@@ -7282,8 +2088,8 @@
]
},
"Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "rsjbxD9W6NfqP0WNHMRyetIh6ZoKRbK1ea0V5xWdVAx53WdvgBy0HmkSwXt506+xU65jjZP19F4Ua4YjZdPHfQ==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll",
"lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.xml",
@@ -7295,8 +2101,8 @@
]
},
"Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
- "type": "package",
"sha512": "WlscfdAvN8XaaK1iv1Iewp5emei7+0SlXNkUh7kMJpeaS6K0GhwNmwqZR6VrT1oN+Maw98nEONHS34/suqQwOA==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll",
"lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml",
@@ -7308,8 +2114,8 @@
]
},
"Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
- "type": "package",
"sha512": "0D80xroAEiWlB9X5eR/JUya1H2saIYnt4d7bPru5RRf5L/66X+9WWhf3hFkLUF3W13K6g6K9Is9dCTaEfFFKTA==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll",
"lib/dotnet5.4/Microsoft.AspNet.WebUtilities.xml",
@@ -7321,10 +2127,11 @@
]
},
"Microsoft.CSharp/4.0.1-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "fb+HO3nIjHao9lqsVVM0ne3GM/+1EfRQUoM58cxEOt+5biy/8DQ1nxIahZ9VaJKw7Wgb6XhRhsdwg8DkePEOJA==",
+ "sha512": "z/W5YaTGVQ8WX6TQDW8cCBAe2rBhHOD7NZHxLAnBIMoLWMI/upWDi+dxHYMDDWmGOM7a3di6evem2OzOdaB1fQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.4/Microsoft.CSharp.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -7335,9 +2142,8 @@
"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",
+ "package/services/metadata/core-properties/61a4ac0276c64f119518659ebd78b541.psmdcp",
"ref/dotnet5.1/de/Microsoft.CSharp.xml",
"ref/dotnet5.1/es/Microsoft.CSharp.xml",
"ref/dotnet5.1/fr/Microsoft.CSharp.xml",
@@ -7371,8 +2177,8 @@
]
},
"Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "kg3kR7H12Bs46TiuF7YT8A3SNXehhBcwsArIMQIH2ecXGkg5MPWDl2OR6bnQu6k0OMu9QUiv1oiwC9yU7rHWfw==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll",
"lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.xml",
@@ -7384,8 +2190,8 @@
]
},
"Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
- "type": "package",
"sha512": "2ayWzqMVGWjr8o8bOSnIsyQbi9sLz9Ya8+YM+9tM/ivSnLHuN7TNHNfJv4jTyRZvoOafdh5Ivlc/OdmsZPXlQQ==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.xml",
@@ -7399,8 +2205,8 @@
]
},
"Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "xA7ObOlIswcx2qakv69kz0pnBizFJrmwxRxJyjPOHWfevF4W+OdolZsbKOc12kY7y5upqhAvNGWTblffMvADHA==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml",
@@ -7414,8 +2220,8 @@
]
},
"Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
- "type": "package",
"sha512": "k+kXsefuLV5WkkG6X8GFn9zf9ZrMyC3dddgm6I6scpbanDyoKUYrRUP2VhW0ViO6TIva0soh6jJy3pFPCrNx9Q==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.xml",
@@ -7429,8 +2235,8 @@
]
},
"Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": {
- "type": "package",
"sha512": "CaNirkiOycy0L6ptGxmpDkHZ2lzqcHKDbQJBfEhobnEt43pqKGKgAPC5dW3DfnsMpuK+inypm5iht9t6tq4vjg==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
@@ -7444,8 +2250,8 @@
]
},
"Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "w2x8nqrp2YUgNBJuZ3SUmexBtjaoZFzCQtObRTjrE4GWceFEmaLZtXFvs4n9IgRQkOqqCza7Fv7NXnD9m2emjQ==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.xml",
@@ -7459,8 +2265,8 @@
]
},
"Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
- "type": "package",
"sha512": "9v+RpswnXEpAP5mx8J1w1yZZT2pPtMBTnOAauNh2c9ju5Dhq3ljxvbm0S9j6o5F/EFSLlbfN/brxTJN3qa/upw==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.xml",
@@ -7474,8 +2280,8 @@
]
},
"Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
- "type": "package",
"sha512": "S/+s3fq85j21H5nYOvh1fIt1arl8F5lZ7Ryiw/qend83yHQwIQbBs+dip9FhqiPmAn6Dz3UhW0likQQurfEsLQ==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll",
"lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml",
@@ -7489,8 +2295,8 @@
]
},
"Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "MUKexXAsRZ55C7YZ26ShePZgBeW+6FbasxeIVmZ/BZIgiG4uw6yPOdfl9WvTaUL9SFK2sEPcYLatWmLfTpsOAA==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
@@ -7504,8 +2310,8 @@
]
},
"Microsoft.Extensions.Logging/1.0.0-rc1-final": {
- "type": "package",
"sha512": "anegHH4XHjaCmC557A0uvnJzprT44MOKr669yfiQLtITA+lQrM3aMijxjjdCREnxE8ftXuSz+6wViCvkgcAOhA==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Logging.dll",
"lib/dotnet5.4/Microsoft.Extensions.Logging.xml",
@@ -7519,8 +2325,8 @@
]
},
"Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "ejGO1JhPXMsCCSyH12xwkOYsb9oBv2gHc3LLaT2jevrD//xuQizWaxpVk0/rHGdORkWdp+kT2Qmuz/sLyNWW/g==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.xml",
@@ -7534,8 +2340,8 @@
]
},
"Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": {
- "type": "package",
"sha512": "26HS4c6MBisN+D7XUr8HObOI/JJvSJQYQR//Bfw/hi9UqhqK3lFpNKjOuYHI+gTxYdXT46HqZiz4D+k7d+ob3A==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll",
"lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.xml",
@@ -7547,8 +2353,8 @@
]
},
"Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
- "type": "package",
"sha512": "oHWqBARJveyM7LctuqQqvsTC58hxoq0gGnHr6Qsxie71LIkZpfE21IklhSLOsqmv4QIpes/G6k1vZbAQ+cC/nw==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Primitives.dll",
"lib/dotnet5.4/Microsoft.Extensions.Primitives.xml",
@@ -7562,8 +2368,8 @@
]
},
"Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": {
- "type": "package",
"sha512": "wt47w3Zu7JvuD7CfRSCaz0IZL5EzpuzicRm6Qcidteb2TVeB98Psg7YGiwIBeYB1b52YFTBgqC+ySKk/GRhy2A==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll",
"lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.xml",
@@ -7575,8 +2381,8 @@
]
},
"Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
- "type": "package",
"sha512": "Y10hkmHQZLieW3J6J+vTiq86vifmJ7Vc2zrwNR349oAaUGjTHL0ws6rqHn0JDIcawBna4AE3OBNsL9vuZuE8bw==",
+ "type": "package",
"files": [
"lib/dotnet5.4/Microsoft.Net.Http.Headers.dll",
"lib/dotnet5.4/Microsoft.Net.Http.Headers.xml",
@@ -7588,8 +2394,8 @@
]
},
"Microsoft.Win32.Primitives/4.0.0": {
- "type": "package",
"sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==",
+ "type": "package",
"files": [
"lib/dotnet/Microsoft.Win32.Primitives.dll",
"lib/MonoAndroid10/_._",
@@ -7619,8 +2425,8 @@
]
},
"Newtonsoft.Json/6.0.6": {
- "type": "package",
"sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==",
+ "type": "package",
"files": [
"lib/net20/Newtonsoft.Json.dll",
"lib/net20/Newtonsoft.Json.xml",
@@ -7643,9 +2449,11 @@
]
},
"NLog/4.4.0-alpha1": {
- "type": "package",
- "sha512": "cdbV/3VFqaxrcRvqafowTwK4re93JDueuG9cmjpx8ivcdB6Jc226SdMmJWkDSv8vwGeUrvYKF14GuogfdycU1w==",
+ "sha512": "v/eEQgbC/sFIHhWxO7jJUnK/ESeKXI6xisn7pchXg7ZOUSeL16t+H19ZumgTl7BfiMaXGezR/pNv+o2inMqpnw==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dnx451/NLog.dll",
"lib/dnx451/NLog.xml",
"lib/dnxcore50/NLog.dll",
@@ -7656,272 +2464,12 @@
"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==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.AppContext.dll",
"lib/MonoAndroid10/_._",
@@ -7952,10 +2500,11 @@
]
},
"System.Collections/4.0.11-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "TDca4OETV0kkXdpkyivMw1/EKKD1Sa/NVAjirw+fA0LZ37jLDYX+KhPPUQxgkvhCe/SVvxETD5Viiudza2k7OQ==",
+ "sha512": "FSd5zsGfmG2pidC3CVizQPNGTK1Q3A2HEuRqwUPLU/AArjELLC5p4l6XIAlJ9ZBPdbp6V8vFQAxUHzkFfyVkYA==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Collections.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -7966,6 +2515,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/82293a3545084670b4f6809c399d94e2.psmdcp",
"ref/dotnet5.1/de/System.Collections.xml",
"ref/dotnet5.1/es/System.Collections.xml",
"ref/dotnet5.1/fr/System.Collections.xml",
@@ -8008,16 +2558,15 @@
"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==",
+ "sha512": "K+n6bC3jL5nRzwm8IM5WHxPScCnrVoPCJjpkBEmoBYY8/3j4RJdqIng/NYcpGcjvP/GIF6tAwZlh54ao2pWOvQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.4/System.Collections.Concurrent.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -8027,6 +2576,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/ccf573b379ed4ac38cc28d81f73b4117.psmdcp",
"ref/dotnet5.2/de/System.Collections.Concurrent.xml",
"ref/dotnet5.2/es/System.Collections.Concurrent.xml",
"ref/dotnet5.2/fr/System.Collections.Concurrent.xml",
@@ -8067,15 +2617,12 @@
"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",
- "serviceable": true,
"sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==",
+ "type": "package",
"files": [
"lib/dotnet/System.Collections.NonGeneric.dll",
"lib/MonoAndroid10/_._",
@@ -8105,9 +2652,8 @@
]
},
"System.Collections.Specialized/4.0.0": {
- "type": "package",
- "serviceable": true,
"sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==",
+ "type": "package",
"files": [
"lib/dotnet/System.Collections.Specialized.dll",
"lib/MonoAndroid10/_._",
@@ -8137,16 +2683,18 @@
]
},
"System.ComponentModel/4.0.1-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "PdAC1M7yT9EBtLpXICbOtPDpDjYSlV2RXyQ7AiKyBD7mV1DNTIK7tcM1056GIOlMoJDDdxU5Z3otBeAM8v5PAg==",
+ "sha512": "PWlAKIWFtb0ahyK9mXkvW+8WzKfXd9n5NAtRDduoE2JETVZtWL2jUM08lVKWU+oZr3ZGBdRPPLVbUD/K9i4uzw==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.4/System.ComponentModel.dll",
"lib/net45/_._",
"lib/netcore50/System.ComponentModel.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
+ "package/services/metadata/core-properties/161f0e7104694562b14cbc3a143857bc.psmdcp",
"ref/dotnet5.1/de/System.ComponentModel.xml",
"ref/dotnet5.1/es/System.ComponentModel.xml",
"ref/dotnet5.1/fr/System.ComponentModel.xml",
@@ -8173,15 +2721,12 @@
"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",
- "serviceable": true,
"sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==",
+ "type": "package",
"files": [
"lib/dotnet/System.ComponentModel.EventBasedAsync.dll",
"lib/MonoAndroid10/_._",
@@ -8211,9 +2756,8 @@
]
},
"System.ComponentModel.Primitives/4.0.0": {
- "type": "package",
- "serviceable": true,
"sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==",
+ "type": "package",
"files": [
"lib/dotnet/System.ComponentModel.Primitives.dll",
"lib/MonoAndroid10/_._",
@@ -8243,16 +2787,18 @@
]
},
"System.ComponentModel.TypeConverter/4.0.1-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "qDsYqQxdMF/hu9yTRHYU3qIYmMATKvVeytFd0GEnZwOMrvv5EQj2IhhYccIifukAo7eTfQSMCAZkn9A9XPOtaQ==",
+ "sha512": "VtCI6yLFRU1JcxxLBKRXkqLATN34O98wxjzlbmGV8AuGu9qTMJVeEUCOAGAuwdJRPPU+FYVAJ1Nnw6tNBAtLoQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.4/System.ComponentModel.TypeConverter.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.ComponentModel.TypeConverter.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/215bf2c9f189472185ad0a90925bf4ce.psmdcp",
"ref/dotnet5.1/de/System.ComponentModel.TypeConverter.xml",
"ref/dotnet5.1/es/System.ComponentModel.TypeConverter.xml",
"ref/dotnet5.1/fr/System.ComponentModel.TypeConverter.xml",
@@ -8269,21 +2815,21 @@
"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==",
+ "sha512": "tzF4Dbbv+5bcbQ7GHuuKafkaDZThiUiwxqCc1ngewnMWZ5YmIgjQZjs+E1DNhoMVAvkH0tSmLJvsDlx9dFg+Aw==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Console.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/0f58e9cc925842d59b2573c5e518453d.psmdcp",
"ref/dotnet5.1/de/System.Console.xml",
"ref/dotnet5.1/es/System.Console.xml",
"ref/dotnet5.1/fr/System.Console.xml",
@@ -8301,15 +2847,12 @@
"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",
- "serviceable": true,
"sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==",
+ "type": "package",
"files": [
"lib/dotnet/System.Data.Common.dll",
"lib/MonoAndroid10/_._",
@@ -8339,16 +2882,18 @@
]
},
"System.Diagnostics.Contracts/4.0.1-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "iG9kHAu2B251lTHH2B4qXjctRkiEuCov8fDiSqZAuqFTMegcZ27wLKWAQxXANs1A5PmqSPzrfro+mBUxqlaCVA==",
+ "sha512": "y8fwR6QS7ZSUzxW2tBULWM2AfyMV/7Hvgm2L5IdcnCEa2fwoNw+bAoGTS7ItuOjS5Yb2sKtJ1QUv8nP42NfgdQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Diagnostics.Contracts.dll",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Contracts.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
+ "package/services/metadata/core-properties/6e469950d54e47c8a060c6fba56b691a.psmdcp",
"ref/dotnet5.1/de/System.Diagnostics.Contracts.xml",
"ref/dotnet5.1/es/System.Diagnostics.Contracts.xml",
"ref/dotnet5.1/fr/System.Diagnostics.Contracts.xml",
@@ -8376,16 +2921,15 @@
"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==",
+ "sha512": "eVfSsVOIlL2tZwA24PKduDIGrPXH1OdAnRPhU4q5nGA35kX+vnFtE+IyGfiyShwlC0ldnssmQRAm9mPKmgOpyA==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
@@ -8394,6 +2938,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/1818acf516ba492798a232916904d5ca.psmdcp",
"ref/dotnet5.1/de/System.Diagnostics.Debug.xml",
"ref/dotnet5.1/es/System.Diagnostics.Debug.xml",
"ref/dotnet5.1/fr/System.Diagnostics.Debug.xml",
@@ -8436,30 +2981,29 @@
"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==",
+ "sha512": "0uDR/UOmFCNPDCyHEPHhCrk6c1iRnDp00YqwSZ8Qf5aaaJjm4WXnf4Q9xZw4OoApsSiODSypDMdpQU24IxR16A==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"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",
+ "package/services/metadata/core-properties/21ac08f53b4443dfb08fe87a841557dc.psmdcp",
"System.Diagnostics.DiagnosticSource.nuspec"
]
},
"System.Diagnostics.StackTrace/4.0.1-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "yuZ7s6ttGN7RHK/RRWIz/O7yctfBLUFCUZYcwB4ZrKI6gmwfdGI5wlrNEV1IJe3dW4t+Xh1F+eaQu7FZdW8lcA==",
+ "sha512": "ASJgVLKEhVUUU64BHj+9141ndCG3Kqk0lHKtUkDvKj9/ROBYtuPiBgBJx74OlZ28CSmiLZXIvADW+XM5E9BoUg==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Diagnostics.StackTrace.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -8467,6 +3011,7 @@
"lib/netcore50/System.Diagnostics.StackTrace.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/4c93c44390354f0fa39e6d2e212bc1c6.psmdcp",
"ref/dotnet5.1/de/System.Diagnostics.StackTrace.xml",
"ref/dotnet5.1/es/System.Diagnostics.StackTrace.xml",
"ref/dotnet5.1/fr/System.Diagnostics.StackTrace.xml",
@@ -8484,22 +3029,22 @@
"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==",
+ "sha512": "tbiK8p/MW8s15iO7oAVdFHRM1VkEuj6s0wC0W6N3aRcWxJm7Hta+x0aoBmO2ukm16rTKT+YhCTxbsz9SQxJ84Q==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Diagnostics.Tools.dll",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Tools.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
+ "package/services/metadata/core-properties/5e5c0153e6db47ba9651e2ff02ef79e8.psmdcp",
"ref/dotnet5.1/de/System.Diagnostics.Tools.xml",
"ref/dotnet5.1/es/System.Diagnostics.Tools.xml",
"ref/dotnet5.1/fr/System.Diagnostics.Tools.xml",
@@ -8527,21 +3072,21 @@
"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==",
+ "sha512": "gvJNxObthiaV07AKZYjQV69xRBKRR7gTpEVe4qXF4Mta/2zD7sI+Zm//rRCQenLYBuL8nBxVzomtYJ4eT7w8QQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Diagnostics.TraceSource.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/298a8a420a424b1789a772a00442b482.psmdcp",
"ref/dotnet5.1/de/System.Diagnostics.TraceSource.xml",
"ref/dotnet5.1/es/System.Diagnostics.TraceSource.xml",
"ref/dotnet5.1/fr/System.Diagnostics.TraceSource.xml",
@@ -8559,14 +3104,12 @@
"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==",
+ "type": "package",
"files": [
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -8611,8 +3154,8 @@
]
},
"System.Diagnostics.Tracing/4.0.20": {
- "type": "package",
"sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Diagnostics.Tracing.dll",
"lib/MonoAndroid10/_._",
@@ -8644,10 +3187,11 @@
]
},
"System.Dynamic.Runtime/4.0.11-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "ypkxS0e+yUw7F6JEwuB22u0qqruMeZFOmtcImh2efDHpTAuhF2FOqCDJ7f4qLf9yomVvB4kjkZ6xGunbIQryxQ==",
+ "sha512": "C2GXB20I5vMcO4wemZr5pEjwwEb6H6zVkwF12JSUhripKBIKgI0YKpfp9glyDSL903cYgIXAztMQDajwCR0PmA==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Dynamic.Runtime.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -8658,6 +3202,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/623f8cb6291545b4b8953983466a399d.psmdcp",
"ref/dotnet5.1/de/System.Dynamic.Runtime.xml",
"ref/dotnet5.1/es/System.Dynamic.Runtime.xml",
"ref/dotnet5.1/fr/System.Dynamic.Runtime.xml",
@@ -8700,16 +3245,15 @@
"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==",
+ "sha512": "jctanC1VveBFsgOysiqFN/HH0qX+EvLNelcBU6Fb4w7m3BBu827k8RCNiwW+uAC5f5XZBTRpsXZk4cI15RCdYQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Globalization.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -8720,6 +3264,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/b8ba15c002a848bba072fd7ed97e386a.psmdcp",
"ref/dotnet5.1/de/System.Globalization.xml",
"ref/dotnet5.1/es/System.Globalization.xml",
"ref/dotnet5.1/fr/System.Globalization.xml",
@@ -8762,54 +3307,21 @@
"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==",
+ "sha512": "OUVMFv3m0OEn+p0CsKbLc9hUaRMXC4lYy/9DOynbPsbYNom98ZfDn5YaiMnXUvAufdSgfxxHm4kAUsiQsQ8YRA==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Globalization.Extensions.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/ffb537f9e5224306bf675da568e104be.psmdcp",
"ref/dotnet5.1/de/System.Globalization.Extensions.xml",
"ref/dotnet5.1/es/System.Globalization.Extensions.xml",
"ref/dotnet5.1/fr/System.Globalization.Extensions.xml",
@@ -8827,16 +3339,15 @@
"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==",
+ "sha512": "6nJmAk4vYjN+5/haenkKk/BDGCOKw5pk5EjXAOvBnUM5PFIfO8JwUxGbcveOD4vV5Vb6TAxrmRmts/7F+BEuEw==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.IO.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -8847,6 +3358,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/efaeee59930e4aed94a20e7a881a929b.psmdcp",
"ref/dotnet5.1/de/System.IO.xml",
"ref/dotnet5.1/es/System.IO.xml",
"ref/dotnet5.1/fr/System.IO.xml",
@@ -8889,15 +3401,12 @@
"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",
- "serviceable": true,
"sha512": "zICw1/9Hmsv6JiU3RHPzwKf3py7pyO6vCmZQDjuTCgjRQuDPYG4ok/7X6nWX+CXhgVpq8wEnkXh9DmRwlltQ5g==",
+ "type": "package",
"files": [
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -8922,15 +3431,17 @@
]
},
"System.IO.FileSystem/4.0.1-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "KOYNQ6FeLQh0HdHVlp6IRjRGPCjyFvZRKfhYSDFi7DR0EHY3cC2rvfVj5HWJEW5KlSaa01Ct25m06yVnqSxwOQ==",
+ "sha512": "xggWMgLzKnBisYTx5HW3og8qRR7TjmorQAdsAQOaMcY4I9CQA6JUxw0r2AvCC1+ToXh0CuO7J6dymX33pkmwbA==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/0495a7c996a24c39b8f6cfaaf186e223.psmdcp",
"ref/dotnet5.4/de/System.IO.FileSystem.xml",
"ref/dotnet5.4/es/System.IO.FileSystem.xml",
"ref/dotnet5.4/fr/System.IO.FileSystem.xml",
@@ -8948,22 +3459,22 @@
"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==",
+ "sha512": "GQF2ywO/+KYLvxwkJZxAWT/FqX8HjntDj94nNcXtoUDKi8UBpfGpuMKqEsCfl5XRfbzxPnDPZAE+7wDVubUiCQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.4/System.IO.FileSystem.Primitives.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/fb2b560794ac46ccba456f10e3831ea5.psmdcp",
"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",
@@ -8980,21 +3491,21 @@
"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==",
+ "sha512": "y56ajBzgm7FQ2iVfB6+ylAYBwtZ/6X10/ripP5/rIQpea76JAEAyAmvU19mIYBUXzQu46Fn9MnMpBh2FcMRfiA==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.Watcher.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/70d186cb125b4af1bffa98e0bc719c9e.psmdcp",
"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",
@@ -9012,22 +3523,22 @@
"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==",
+ "sha512": "AJaoyeAHLpurbTWnmvOhK/QC2sswKJrIA5RlPea+UdfXpHOw3srPNEPpseZDMV/EviVqAwUfFNkc5QxpGZtsLA==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.4/System.Linq.dll",
"lib/net45/_._",
"lib/netcore50/System.Linq.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
+ "package/services/metadata/core-properties/33b76715f2af4d43b8dbed2b46a22c7c.psmdcp",
"ref/dotnet5.1/de/System.Linq.xml",
"ref/dotnet5.1/es/System.Linq.xml",
"ref/dotnet5.1/fr/System.Linq.xml",
@@ -9054,16 +3565,15 @@
"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==",
+ "sha512": "FtKytB13HabzrSvrAgBgOOnG2uxJO4s7zvP5Sk0NS3bwbJUyb5AP1p4897UWnLiB6C95jI4nIkZps51sa9In8g==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
@@ -9072,6 +3582,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/312fdd2d56a94afa9a55f7b5804bb174.psmdcp",
"ref/dotnet5.1/de/System.Linq.Expressions.xml",
"ref/dotnet5.1/es/System.Linq.Expressions.xml",
"ref/dotnet5.1/fr/System.Linq.Expressions.xml",
@@ -9114,15 +3625,12 @@
"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",
- "serviceable": true,
"sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==",
+ "type": "package",
"files": [
"lib/dotnet/System.Linq.Queryable.dll",
"lib/net45/_._",
@@ -9153,9 +3661,8 @@
]
},
"System.Net.Http/4.0.0": {
- "type": "package",
- "serviceable": true,
"sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Net.Http.dll",
"lib/net45/_._",
@@ -9184,10 +3691,11 @@
]
},
"System.Net.Primitives/4.0.11-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "lEMwORLJNk7tEAO+4RJ/aPjF2KlismwYxCYgqJZza3ArRznAqrzKeCpcnBlo3zJPHjR1tSNhRWk9SLRGGV2K3Q==",
+ "sha512": "e6bYgPSmo1n/+Ccef2OxFm5gyvhGvw/+Zvsh09iOfLNOutr/2ker4IsxC+3VMVDZc/3/glc4iOfuB5x59HzzHQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
@@ -9196,6 +3704,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/1f8e4058bcc1441f98f9d60892892c3a.psmdcp",
"ref/dotnet5.1/de/System.Net.Primitives.xml",
"ref/dotnet5.1/es/System.Net.Primitives.xml",
"ref/dotnet5.1/fr/System.Net.Primitives.xml",
@@ -9249,15 +3758,12 @@
"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",
- "serviceable": true,
"sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==",
+ "type": "package",
"files": [
"lib/dotnet/System.Net.Requests.dll",
"lib/MonoAndroid10/_._",
@@ -9287,9 +3793,8 @@
]
},
"System.Net.Sockets/4.0.0": {
- "type": "package",
- "serviceable": true,
"sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==",
+ "type": "package",
"files": [
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -9319,9 +3824,8 @@
]
},
"System.Net.WebHeaderCollection/4.0.0": {
- "type": "package",
- "serviceable": true,
"sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==",
+ "type": "package",
"files": [
"lib/dotnet/System.Net.WebHeaderCollection.dll",
"lib/MonoAndroid10/_._",
@@ -9351,16 +3855,18 @@
]
},
"System.Net.WebSockets/4.0.0-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "aMSs8kyRS5CNa20h8XWv6IOcZHqOZOHBO/rEOjP+rS+dOmn0tBu5zhJJdkhzb4GS9qAikjwc7UXB0MK3LnuBTA==",
+ "sha512": "1HTK/ncmLrpKvooNRBIr6EgUY550tMM0hXh/84Ni6bc2Ia8ySGwc3UkLga27GKHSymslU7zCtFzc1UAxqxNeIw==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.4/System.Net.WebSockets.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.WebSockets.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/31fdbaea791f4ec88dda6865f3d489b1.psmdcp",
"ref/dotnet5.1/de/System.Net.WebSockets.xml",
"ref/dotnet5.1/es/System.Net.WebSockets.xml",
"ref/dotnet5.1/fr/System.Net.WebSockets.xml",
@@ -9377,14 +3883,12 @@
"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==",
+ "type": "package",
"files": [
"lib/dotnet/System.ObjectModel.dll",
"lib/MonoAndroid10/_._",
@@ -9414,9 +3918,8 @@
]
},
"System.Private.DataContractSerialization/4.0.0": {
- "type": "package",
- "serviceable": true,
"sha512": "uQvzoXHXHn/9YqUmPtgD8ZPJIlBuuL3QHegbuik97W/umoI28fOnGLnvjRHhju1VMWvFLRQoh7uZkBaoZ+KpVQ==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Private.DataContractSerialization.dll",
"lib/netcore50/System.Private.DataContractSerialization.dll",
@@ -9429,24 +3932,9 @@
"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",
- "serviceable": true,
"sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Private.ServiceModel.dll",
"lib/netcore50/System.Private.ServiceModel.dll",
@@ -9458,8 +3946,8 @@
]
},
"System.Private.Uri/4.0.1-beta-23516": {
- "type": "package",
"sha512": "PISxTW5FSZw8cQ8DOvq2pHHz48mok3ex0/QU2gcHG5PACvobxaXQl2oR345vqOx6C15l10bJPVkKZlgi2Ic4KQ==",
+ "type": "package",
"files": [
"ref/dnxcore50/_._",
"ref/netcore50/_._",
@@ -9470,8 +3958,8 @@
]
},
"System.Reflection/4.1.0-beta-23225": {
- "type": "package",
"sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Reflection.dll",
"lib/MonoAndroid10/_._",
@@ -9493,9 +3981,8 @@
]
},
"System.Reflection.DispatchProxy/4.0.0": {
- "type": "package",
- "serviceable": true,
"sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Reflection.DispatchProxy.dll",
"lib/MonoAndroid10/_._",
@@ -9527,8 +4014,8 @@
]
},
"System.Reflection.Emit/4.0.0": {
- "type": "package",
"sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Reflection.Emit.dll",
"lib/MonoAndroid10/_._",
@@ -9555,8 +4042,8 @@
]
},
"System.Reflection.Emit.ILGeneration/4.0.0": {
- "type": "package",
"sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll",
"lib/net45/_._",
@@ -9580,43 +4067,19 @@
"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==",
+ "sha512": "Ph0ELqqqz218bGEtnfQ1xegANVQ3v0S/hU12AHpb4HEw8SESssbNCKWEVjeI3y2xDYaVx1aVjM4hZ1QXa4IonQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Reflection.Extensions.dll",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Extensions.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
+ "package/services/metadata/core-properties/6cb962d474a142a883ced803cc254205.psmdcp",
"ref/dotnet5.1/de/System.Reflection.Extensions.xml",
"ref/dotnet5.1/es/System.Reflection.Extensions.xml",
"ref/dotnet5.1/fr/System.Reflection.Extensions.xml",
@@ -9644,14 +4107,12 @@
"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==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Reflection.Primitives.dll",
"lib/net45/_._",
@@ -9683,8 +4144,8 @@
]
},
"System.Reflection.TypeExtensions/4.0.1-beta-23409": {
- "type": "package",
"sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==",
+ "type": "package",
"files": [
"lib/DNXCore50/de/System.Reflection.TypeExtensions.xml",
"lib/DNXCore50/es/System.Reflection.TypeExtensions.xml",
@@ -9756,16 +4217,18 @@
]
},
"System.Resources.ResourceManager/4.0.1-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "d1PiB1k57GP5EJZJKnJ+LgrOQCgHPnn5oySQAy4pL2MpEDDpTyTPKv+q9aRWUA25ICXaHkWJzeTkj898ePteWQ==",
+ "sha512": "KLzhgVk6aZDbU3jU+zGN3gGIU6hlhPyA8hwGqB1FmJRs/lJl7o9td34+5xm3Mk1va5vHEO8+cRj7te9WdNalHQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Resources.ResourceManager.dll",
"lib/net45/_._",
"lib/netcore50/System.Resources.ResourceManager.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
+ "package/services/metadata/core-properties/34a1b72bfe32447aa4fff3d5e9b15f2f.psmdcp",
"ref/dotnet5.1/de/System.Resources.ResourceManager.xml",
"ref/dotnet5.1/es/System.Resources.ResourceManager.xml",
"ref/dotnet5.1/fr/System.Resources.ResourceManager.xml",
@@ -9793,16 +4256,15 @@
"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==",
+ "sha512": "ToYWwDgwR8fR9/8aaV+7PMFBfG2tEgGWED0l9OC9DQieaKEMAzXV3c6fOkK8FTd9YPjFcYnvx73tg21w6GuNDA==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Runtime.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -9813,6 +4275,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/8fbc3a0338544fbabc852e6d9cc59da5.psmdcp",
"ref/dotnet5.1/de/System.Runtime.xml",
"ref/dotnet5.1/es/System.Runtime.xml",
"ref/dotnet5.1/fr/System.Runtime.xml",
@@ -9866,16 +4329,15 @@
"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==",
+ "sha512": "mpKQVIySlFSvgQkeb9qvXxHOY3jV7H9x5DmPSeNac0APFOG9ROufrMozY3VP/GxBWu4AVS/HDG1lUxg/riE4ew==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
@@ -9884,6 +4346,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/c0c6896d10344231aae6771e7adbaa70.psmdcp",
"ref/dotnet5.1/de/System.Runtime.Extensions.xml",
"ref/dotnet5.1/es/System.Runtime.Extensions.xml",
"ref/dotnet5.1/fr/System.Runtime.Extensions.xml",
@@ -9926,14 +4389,12 @@
"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==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Runtime.Handles.dll",
"lib/MonoAndroid10/_._",
@@ -9965,10 +4426,11 @@
]
},
"System.Runtime.InteropServices/4.0.21-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "XRWX4yFPKQ3t3hbPReLB9d2ViTuGqMLYHGcuWteIYgoIaKtHp7Uae2xHjiUG/QZbVN6vUp+KnL04aIi5dOj8lQ==",
+ "sha512": "3QodORMX/J/HMQgeBf62yYLESn4g+Gl9XGKEoFNCHGUb03yWqpSVPOD0gSksyb661kRdxR5K4/7I9xjz/GxkRg==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Runtime.InteropServices.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -9978,6 +4440,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/4340374a74de4748a2c3453f3fa43c06.psmdcp",
"ref/dotnet5.2/de/System.Runtime.InteropServices.xml",
"ref/dotnet5.2/es/System.Runtime.InteropServices.xml",
"ref/dotnet5.2/fr/System.Runtime.InteropServices.xml",
@@ -10030,46 +4493,12 @@
"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",
- "serviceable": true,
"sha512": "Dsl95PE2vyGIy9voclfTVKSqYD8O4PjsMS+TV0bM3N1xNraS2BBaChGk1stGmf04cn2/xA3cZyh80bkZL+v1/Q==",
+ "type": "package",
"files": [
"lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll",
"lib/MonoAndroid10/_._",
@@ -10128,8 +4557,8 @@
]
},
"System.Runtime.Serialization.Xml/4.0.10": {
- "type": "package",
"sha512": "xsy7XbH8RTpKoDPNcibSGCOpujsmwUmOWAby3PssqkZFpLBXUbDO2s6JKITRjxejET2g0PK8t+mdIvu3xmUuKA==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Runtime.Serialization.Xml.dll",
"lib/MonoAndroid10/_._",
@@ -10161,16 +4590,18 @@
]
},
"System.Security.Claims/4.0.1-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "+BDgRxwI4ClDxkLgNof/FdUF92U3+phdvsIT/CX8Ym3iOrughd7tMJIlGYzQrJSIp+0+ivHgWvOb5ytmPAgJhw==",
+ "sha512": "uDov+92UOm6t5mShVsXoJa1HIPtxYSsF5sVc+d5WDw+GzgJEw5+VF8NZL0a1mSvvBh3epHdx+MLSrpovcPmcSw==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.4/System.Security.Claims.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Claims.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/7a60fac1e11e48c68e112316dba00c2a.psmdcp",
"ref/dotnet5.1/de/System.Security.Claims.xml",
"ref/dotnet5.1/es/System.Security.Claims.xml",
"ref/dotnet5.1/fr/System.Security.Claims.xml",
@@ -10187,21 +4618,21 @@
"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==",
+ "sha512": "h0t6XvR47THFihonJfk2aC3m2YQ94hzF0bFBE9Zgs4td+G+NgIuRmIdGQMFKv3sH7jX5ItOLq/K7uX9M6dvlgQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Algorithms.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/a91ebe339acb4c719284a4ca725aadbe.psmdcp",
"ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
@@ -10209,57 +4640,21 @@
"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==",
+ "sha512": "XSlFRqbEojrHSEffTWFLw7iPa3ZclvAJ/yjBNoCKr4F/xXvqPu4jcDeSb2loWhLTQkwRJR1AM/U7d0EHU6gxhw==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Encoding.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/12c31ab18e464f098e9ebef90fe38418.psmdcp",
"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",
@@ -10277,43 +4672,43 @@
"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==",
+ "sha512": "ztiLIQf2hl0ljLzaUeCx5tk+TU8TrHwrEatuKgSl2KoZXxeOCeXnB+oE07xQO7RnnMlPLtX7/ucHQtteh9du7A==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.4/System.Security.Cryptography.Primitives.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/505b312a573e4430bca3951f7bbbff5a.psmdcp",
"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==",
+ "sha512": "yIZEPChGR0OcuBjjDPm+CcwPW5HQgRQ2JQrbdRRWaYKI0p9BfbyUbQOb9te26BnBj4WFgFd5zlSxHlW3oX2BkQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.X509Certificates.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/75f7d90e6932442db6b7205d7e6a8bbd.psmdcp",
"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",
@@ -10331,22 +4726,22 @@
"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==",
+ "sha512": "mtaQ15TSkjSJRgeET8h41QJQzfXCJjfQsvD5QfZ2oPQq943hM9j6ZRcdBYZ6EtjhC2IXRMUWnrMCFGGNeDLRYQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.1/System.Security.Principal.dll",
"lib/net45/_._",
"lib/netcore50/System.Security.Principal.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
+ "package/services/metadata/core-properties/1e3fda229e8d489781d6e008b37c96cc.psmdcp",
"ref/dotnet5.1/de/System.Security.Principal.xml",
"ref/dotnet5.1/es/System.Security.Principal.xml",
"ref/dotnet5.1/fr/System.Security.Principal.xml",
@@ -10373,15 +4768,12 @@
"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",
- "serviceable": true,
"sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.ServiceModel.Primitives.dll",
"lib/net45/_._",
@@ -10408,10 +4800,11 @@
]
},
"System.Text.Encoding/4.0.11-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "gk4da/Y3VReZpIeQ3UDTCknbkO/FuYKOJtP+5+Vtc07mTcPHvhgbZLXEGTTneP6yWPDWTTh20nZZMF/19YsRtA==",
+ "sha512": "OnM2cqPXeOKF8cwgIAygYeCSKsJL7gjBDi3tI8lEaJSdnt4nM3/k4i1+p73oXn8a8tEcFRNvrvNuqsdqxYixXQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Text.Encoding.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -10422,6 +4815,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/d0a356ed64de4269b28123a6591dd03e.psmdcp",
"ref/dotnet5.1/de/System.Text.Encoding.xml",
"ref/dotnet5.1/es/System.Text.Encoding.xml",
"ref/dotnet5.1/fr/System.Text.Encoding.xml",
@@ -10464,14 +4858,12 @@
"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==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Text.Encoding.Extensions.dll",
"lib/MonoAndroid10/_._",
@@ -10503,10 +4895,11 @@
]
},
"System.Text.RegularExpressions/4.0.11-beta-23516": {
- "type": "package",
- "serviceable": true,
- "sha512": "Iz3942FXA47VxsuJTBq4aA/gevsbdMhyUnQD6Y0aHt57oP6KAwZLaxVtrRzB03yxh6oGBlvQfxBlsXWnLLj4gg==",
+ "sha512": "ZtarWBvDF7R6pRqo1jxo+uV46Rzxht8rRTe+qSHrr6SLLiZRL4RMncU+mDEn81wF+WL+v81ug20lnssHNHlV+Q==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/dotnet5.4/System.Text.RegularExpressions.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -10517,6 +4910,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/df1f4be0b63f4095811c9be8b456680b.psmdcp",
"ref/dotnet5.1/de/System.Text.RegularExpressions.xml",
"ref/dotnet5.1/es/System.Text.RegularExpressions.xml",
"ref/dotnet5.1/fr/System.Text.RegularExpressions.xml",
@@ -10558,16 +4952,15 @@
"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==",
+ "sha512": "vZNXMOIwejg9jS/AkkCs43BIDrzONbT43yhU7X2217Ypi9EZN5X16DwtqBD7eMjDBsA23IRZxuugzUnV8icaxQ==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
@@ -10576,6 +4969,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/2cba609b43834beca4d5f01f7d21858c.psmdcp",
"ref/dotnet5.1/de/System.Threading.xml",
"ref/dotnet5.1/es/System.Threading.xml",
"ref/dotnet5.1/fr/System.Threading.xml",
@@ -10618,41 +5012,15 @@
"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==",
+ "sha512": "kO+GZsJrZO+G7DA4xSuDZXaE1haJWia6TdzMt3xt9oTgh5GQ4bwI6UqBUVKhdTKxC3TI+snsbHXPy2+Qmd6i0g==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Threading.Tasks.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -10663,6 +5031,7 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/ee9e8134c1614a6cb15212d827efdaa0.psmdcp",
"ref/dotnet5.1/de/System.Threading.Tasks.xml",
"ref/dotnet5.1/es/System.Threading.Tasks.xml",
"ref/dotnet5.1/fr/System.Threading.Tasks.xml",
@@ -10705,22 +5074,22 @@
"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==",
+ "sha512": "/yo7KuZ9zLrB3hdWARrvus3YTAdvvuqHWf2oMNpyG1mpoVlmhRwkZ9JqYRC+TL3hSFHa7mvHa8EItA+BBahlsA==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Threading.Thread.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Threading.Thread.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/a9783b4061e042cead315b30f518c65d.psmdcp",
"ref/dotnet5.1/de/System.Threading.Thread.xml",
"ref/dotnet5.1/es/System.Threading.Thread.xml",
"ref/dotnet5.1/fr/System.Threading.Thread.xml",
@@ -10737,22 +5106,22 @@
"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==",
+ "sha512": "s7KzGX8skWrj2raEEWt/qbMUPZJuHlwW6XP1fC4yltuX+6FqPA/D5fag8Q0/TsbcCcC8Q50+fULuHjlCNeblow==",
+ "type": "Package",
"files": [
+ "[Content_Types].xml",
+ "_rels/.rels",
"lib/DNXCore50/System.Threading.ThreadPool.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Threading.ThreadPool.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "package/services/metadata/core-properties/0fd61154fa6341e5aded57bf0aabc3e5.psmdcp",
"ref/dotnet5.2/de/System.Threading.ThreadPool.xml",
"ref/dotnet5.2/es/System.Threading.ThreadPool.xml",
"ref/dotnet5.2/fr/System.Threading.ThreadPool.xml",
@@ -10769,14 +5138,12 @@
"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==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Threading.Timer.dll",
"lib/net451/_._",
@@ -10806,9 +5173,8 @@
]
},
"System.Xml.ReaderWriter/4.0.10": {
- "type": "package",
- "serviceable": true,
"sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==",
+ "type": "package",
"files": [
"lib/dotnet/System.Xml.ReaderWriter.dll",
"lib/MonoAndroid10/_._",
@@ -10838,9 +5204,8 @@
]
},
"System.Xml.XmlDocument/4.0.1-beta-23516": {
- "type": "package",
- "serviceable": true,
"sha512": "4gaHGHF5YfchhO6pqz2LtfcejCd+XpsVc1m9js78JequgYT6UihV+j6T0hZN/xb8rloHsAJTf8jZaFOLDY8msw==",
+ "type": "package",
"files": [
"lib/dotnet5.4/System.Xml.XmlDocument.dll",
"lib/MonoAndroid10/_._",
@@ -10870,9 +5235,8 @@
]
},
"System.Xml.XmlSerializer/4.0.10": {
- "type": "package",
- "serviceable": true,
"sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==",
+ "type": "package",
"files": [
"lib/DNXCore50/System.Xml.XmlSerializer.dll",
"lib/MonoAndroid10/_._",
@@ -10907,23 +5271,23 @@
},
"projectFileDependencyGroups": {
"": [],
- "DNXCore,Version=v5.0": [
+ ".NETFramework,Version=v4.5.1": [
+ "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final",
"Microsoft.CSharp >= 4.0.1-beta-23516",
+ "NLog >= 4.4.0-alpha1",
"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"
+ "System.Threading >= 4.0.11-beta-23516"
],
- ".NETFramework,Version=v4.5.1": [
+ "DNXCore,Version=v5.0": [
+ "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final",
"Microsoft.CSharp >= 4.0.1-beta-23516",
+ "NLog >= 4.4.0-alpha1",
"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"
+ "System.Threading >= 4.0.11-beta-23516"
]
}
}
\ 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 c657b4a7..8ad0e8cf 100644
--- a/NLog.Web.Tests/NLog.Web.Tests.csproj
+++ b/NLog.Web.Tests/NLog.Web.Tests.csproj
@@ -77,26 +77,28 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
+
{E30DC886-8431-4CFA-90FA-38D9BE4203A0}
NLog.Web
-
+
+ Designer
+
diff --git a/NLog.Web.sln b/NLog.Web.sln
index b96e4696..48ce7ed2 100644
--- a/NLog.Web.sln
+++ b/NLog.Web.sln
@@ -4,7 +4,7 @@ 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.ASPNET5\NLog.Web.csproj", "{E30DC886-8431-4CFA-90FA-38D9BE4203A0}"
+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}"
EndProject
diff --git a/NLog.Web.ASPNET5/NLog.Web.csproj b/NLog.Web/NLog.Web.csproj
similarity index 68%
rename from NLog.Web.ASPNET5/NLog.Web.csproj
rename to NLog.Web/NLog.Web.csproj
index 178219f1..3dd8c52b 100644
--- a/NLog.Web.ASPNET5/NLog.Web.csproj
+++ b/NLog.Web/NLog.Web.csproj
@@ -1,4 +1,4 @@
-
+
@@ -54,22 +54,22 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/NLog.Web/NLog.snk b/NLog.Web/NLog.snk
new file mode 100644
index 0000000000000000000000000000000000000000..ae6cb7d01d85b831ba2f6ab0e2fbaa692164a5fc
GIT binary patch
literal 596
zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50097ZBa!Aj5JxDj&luu41au}PS^9r8q#;;H
z^fHLe=ylx5Dh47ho8Vb1As_cj+qKdfdaG3;wLr0RUoQhEk|70e?Y@3fKy%u@>Dx&7
z?CZ}R$%>U%Zbi%Q_5OTFLWPu3t1Yg2gK+V(_oXS)${`LugiV(}AuGmSC}o2FHuW
ziCY@EH!IfqVZP8U`xovV7tY}iFPjVc%BcX+KT&`M&tB{Q4)M{u;O{%OsSWFw90{=|
z^^>k)FPYE14$#0|>VBiwZ<(m84Xw+En?Vc$ofR)3T(s>jr$t}+KWYW)-sB;?{43JI
z?A+b5suA~4Ck2dF-*aWA2b7^f-lHV{v*5wH_a;Ciquf{ti(A+M@@qn)uw^PnCf)oo
zAS#avpi$bcdYRIt?q-ohP`$mf5LG*YmS4%^gV->^gxlldvuI)>Rj$VTI`VhY0Z&kGPcpCxQznHRpCjb
zq8Nuam>O!4&&u&Q!v6y7whD@{;mkY1X{Dr*)nV09UnI8?g7PniJqHapba+|?`*o0o
znisZpG@k%Fhl^da--1sYBw(>Vf1ZdUY4AmXwY?N?9HWAWT7?*<2vGYzc$F&^b>>7`
iI$@2}JhNx++NQVawRlUo^AY`{4X0Ub!o*$|r!jusyCb~-
literal 0
HcmV?d00001
diff --git a/NLog.Web.ASPNET5/packages.NLog.Web.config b/NLog.Web/packages.NLog.Web.config
similarity index 100%
rename from NLog.Web.ASPNET5/packages.NLog.Web.config
rename to NLog.Web/packages.NLog.Web.config
diff --git a/appveyor.yml b/appveyor.yml
index f0cb0411..ca2ba1a3 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -23,13 +23,15 @@ build:
verbosity: quiet
build_script:
+- msbuild NLog.Web.sln /verbosity:minimal /t:rebuild /p:configuration=release
- dnu build NLog.Web.ASPNET5\project.json --configuration release --quiet
+
deploy: off
test_script:
- nuget.exe install OpenCover -ExcludeVersion
- - OpenCover\tools\OpenCover.Console.exe -register:user -target:"%xunit20%\xunit.console.x86.exe" -targetargs:"\"c:\projects\nlogweb\NLog.Web.Tests\bin\Release\net451\NLog.Web.Tests.dll\" -appveyor -noshadow" -returntargetcode -filter:"+[NLog.Web]*" -excludebyattribute:*.ExcludeFromCodeCoverage* -hideskipped:All -output:coverage.xml
+ - OpenCover\tools\OpenCover.Console.exe -register:user -target:"%xunit20%\xunit.console.x86.exe" -targetargs:"\"c:\projects\nlogweb\NLog.Web.Tests\bin\Release\NLog.Web.Tests.dll\" -appveyor -noshadow" -returntargetcode -filter:"+[NLog.Web]*" -excludebyattribute:*.ExcludeFromCodeCoverage* -hideskipped:All -output:coverage.xml
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
- pip install codecov
- codecov -f "coverage.xml"
From 815fb92dae45181a807141b08e4bc32191fd517e Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 14 Feb 2016 23:31:16 +0100
Subject: [PATCH 14/21] Remove DNX testproj
---
.../NLog.Web.Tests.aspnet5.xproj | 23 -
NLog.Web.ASPNET5.Tests/project.json | 28 -
NLog.Web.ASPNET5.Tests/project.lock.json | 3178 -------
NLog.Web.ASPNET5/project.lock.json | 8471 ++++++++++++++---
NLog.Web.aspnet5.sln | 3 -
5 files changed, 7044 insertions(+), 4659 deletions(-)
delete mode 100644 NLog.Web.ASPNET5.Tests/NLog.Web.Tests.aspnet5.xproj
delete mode 100644 NLog.Web.ASPNET5.Tests/project.json
delete mode 100644 NLog.Web.ASPNET5.Tests/project.lock.json
diff --git a/NLog.Web.ASPNET5.Tests/NLog.Web.Tests.aspnet5.xproj b/NLog.Web.ASPNET5.Tests/NLog.Web.Tests.aspnet5.xproj
deleted file mode 100644
index e9188fe6..00000000
--- a/NLog.Web.ASPNET5.Tests/NLog.Web.Tests.aspnet5.xproj
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
- 14.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
-
-
-
- 334bf11a-7e62-4469-ba1f-260d1c2f4db2
- NLog.Web.Tests
- ..\artifacts\obj\$(MSBuildProjectName)
- ..\artifacts\bin\$(MSBuildProjectName)\
-
-
- 2.0
- True
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/NLog.Web.ASPNET5.Tests/project.json b/NLog.Web.ASPNET5.Tests/project.json
deleted file mode 100644
index 9bde4fba..00000000
--- a/NLog.Web.ASPNET5.Tests/project.json
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- "version": "1.0.0-*",
- "description": "NLog.Web.Tests Class Library",
- "authors": [ "j.verdurmen" ],
- "tags": [ "" ],
- "projectUrl": "",
- "licenseUrl": "",
-
- "dependencies": {
- "xunit": "2.1.0",
- "xunit.runner.dnx": "2.1.0-rc1-build204",
- "NLog.Web": "1.0.0-*"
- },
-
- "frameworks": {
- "dnx451": {
- "dependencies": {
- },
- "frameworkAssemblies": {
- "System": "4.0.0.0",
- "System.Runtime": "4.0.10.0",
- "System.Xml": "4.0.0.0"
- }
-
- }
-
- }
-}
diff --git a/NLog.Web.ASPNET5.Tests/project.lock.json b/NLog.Web.ASPNET5.Tests/project.lock.json
deleted file mode 100644
index b217330f..00000000
--- a/NLog.Web.ASPNET5.Tests/project.lock.json
+++ /dev/null
@@ -1,3178 +0,0 @@
-{
- "locked": false,
- "version": 2,
- "targets": {
- "DNX,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",
- "System.Runtime"
- ],
- "compile": {
- "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
- },
- "runtime": {
- "lib/dnx451/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.Dnx.TestHost/1.0.0-rc1-final": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
- "Newtonsoft.Json": "6.0.6"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core",
- "System.Runtime",
- "System.Threading.Tasks"
- ],
- "compile": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- },
- "runtime": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- }
- },
- "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
- "compile": {
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
- },
- "runtime": {
- "lib/net451/Microsoft.Dnx.Testing.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/7.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/net45/Newtonsoft.Json.dll": {}
- }
- },
- "NLog/4.4.0-alpha1": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Configuration",
- "System.Core",
- "System.Data",
- "System.Drawing",
- "System.IO.Compression",
- "System.Runtime",
- "System.Runtime.Serialization",
- "System.ServiceModel",
- "System.Transactions",
- "System.Xml"
- ],
- "compile": {
- "lib/dnx451/NLog.dll": {}
- },
- "runtime": {
- "lib/dnx451/NLog.dll": {}
- }
- },
- "NLog.Web/1.0.0": {
- "type": "project",
- "framework": "DNX,Version=v4.5.1",
- "dependencies": {
- "Microsoft.AspNet.Hosting": "1.0.0-rc1-final",
- "Microsoft.CSharp": "4.0.1-beta-23516",
- "NLog": "4.4.0-alpha1",
- "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"
- }
- },
- "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/_._": {}
- }
- },
- "xunit/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.assert": "[2.1.0]",
- "xunit.core": "[2.1.0]"
- }
- },
- "xunit.abstractions/2.0.0": {
- "type": "package",
- "compile": {
- "lib/net35/xunit.abstractions.dll": {}
- },
- "runtime": {
- "lib/net35/xunit.abstractions.dll": {}
- }
- },
- "xunit.assert/2.1.0": {
- "type": "package",
- "compile": {
- "lib/dotnet/xunit.assert.dll": {}
- },
- "runtime": {
- "lib/dotnet/xunit.assert.dll": {}
- }
- },
- "xunit.core/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.1.0]",
- "xunit.extensibility.execution": "[2.1.0]"
- }
- },
- "xunit.extensibility.core/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.abstractions": "[2.0.0]"
- },
- "compile": {
- "lib/dotnet/xunit.core.dll": {}
- },
- "runtime": {
- "lib/dotnet/xunit.core.dll": {},
- "lib/dotnet/xunit.runner.tdnet.dll": {},
- "lib/dotnet/xunit.runner.utility.desktop.dll": {}
- }
- },
- "xunit.extensibility.execution/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.1.0]"
- },
- "compile": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
- }
- },
- "xunit.runner.dnx/2.1.0-rc1-build204": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
- "xunit.runner.reporters": "2.1.0"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Collections",
- "System.Core",
- "System.Threading",
- "System.Xml",
- "System.Xml.Linq",
- "System.Xml.XDocument"
- ],
- "compile": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- }
- },
- "xunit.runner.reporters/2.1.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "7.0.1",
- "xunit.runner.utility": "[2.1.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- }
- },
- "xunit.runner.utility/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.abstractions": "[2.0.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
- }
- }
- },
- "DNX,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",
- "System.Runtime"
- ],
- "compile": {
- "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
- },
- "runtime": {
- "lib/dnx451/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.Dnx.TestHost/1.0.0-rc1-final": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
- "Newtonsoft.Json": "6.0.6"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core",
- "System.Runtime",
- "System.Threading.Tasks"
- ],
- "compile": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- },
- "runtime": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- }
- },
- "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
- "compile": {
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
- },
- "runtime": {
- "lib/net451/Microsoft.Dnx.Testing.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/7.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/net45/Newtonsoft.Json.dll": {}
- }
- },
- "NLog/4.4.0-alpha1": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Configuration",
- "System.Core",
- "System.Data",
- "System.Drawing",
- "System.IO.Compression",
- "System.Runtime",
- "System.Runtime.Serialization",
- "System.ServiceModel",
- "System.Transactions",
- "System.Xml"
- ],
- "compile": {
- "lib/dnx451/NLog.dll": {}
- },
- "runtime": {
- "lib/dnx451/NLog.dll": {}
- }
- },
- "NLog.Web/1.0.0": {
- "type": "project",
- "framework": "DNX,Version=v4.5.1",
- "dependencies": {
- "Microsoft.AspNet.Hosting": "1.0.0-rc1-final",
- "Microsoft.CSharp": "4.0.1-beta-23516",
- "NLog": "4.4.0-alpha1",
- "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"
- }
- },
- "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/_._": {}
- }
- },
- "xunit/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.assert": "[2.1.0]",
- "xunit.core": "[2.1.0]"
- }
- },
- "xunit.abstractions/2.0.0": {
- "type": "package",
- "compile": {
- "lib/net35/xunit.abstractions.dll": {}
- },
- "runtime": {
- "lib/net35/xunit.abstractions.dll": {}
- }
- },
- "xunit.assert/2.1.0": {
- "type": "package",
- "compile": {
- "lib/dotnet/xunit.assert.dll": {}
- },
- "runtime": {
- "lib/dotnet/xunit.assert.dll": {}
- }
- },
- "xunit.core/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.1.0]",
- "xunit.extensibility.execution": "[2.1.0]"
- }
- },
- "xunit.extensibility.core/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.abstractions": "[2.0.0]"
- },
- "compile": {
- "lib/dotnet/xunit.core.dll": {}
- },
- "runtime": {
- "lib/dotnet/xunit.core.dll": {},
- "lib/dotnet/xunit.runner.tdnet.dll": {},
- "lib/dotnet/xunit.runner.utility.desktop.dll": {}
- }
- },
- "xunit.extensibility.execution/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.1.0]"
- },
- "compile": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
- }
- },
- "xunit.runner.dnx/2.1.0-rc1-build204": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
- "xunit.runner.reporters": "2.1.0"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Collections",
- "System.Core",
- "System.Threading",
- "System.Xml",
- "System.Xml.Linq",
- "System.Xml.XDocument"
- ],
- "compile": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- }
- },
- "xunit.runner.reporters/2.1.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "7.0.1",
- "xunit.runner.utility": "[2.1.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- }
- },
- "xunit.runner.utility/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.abstractions": "[2.0.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
- }
- }
- },
- "DNX,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",
- "System.Runtime"
- ],
- "compile": {
- "lib/dnx451/Microsoft.AspNet.Hosting.dll": {}
- },
- "runtime": {
- "lib/dnx451/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.Dnx.TestHost/1.0.0-rc1-final": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.Logging": "1.0.0-rc1-final",
- "Newtonsoft.Json": "6.0.6"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core",
- "System.Runtime",
- "System.Threading.Tasks"
- ],
- "compile": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- },
- "runtime": {
- "lib/dnx451/Microsoft.Dnx.TestHost.dll": {}
- }
- },
- "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
- "compile": {
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll": {}
- },
- "runtime": {
- "lib/net451/Microsoft.Dnx.Testing.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/7.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/net45/Newtonsoft.Json.dll": {}
- }
- },
- "NLog/4.4.0-alpha1": {
- "type": "package",
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Configuration",
- "System.Core",
- "System.Data",
- "System.Drawing",
- "System.IO.Compression",
- "System.Runtime",
- "System.Runtime.Serialization",
- "System.ServiceModel",
- "System.Transactions",
- "System.Xml"
- ],
- "compile": {
- "lib/dnx451/NLog.dll": {}
- },
- "runtime": {
- "lib/dnx451/NLog.dll": {}
- }
- },
- "NLog.Web/1.0.0": {
- "type": "project",
- "framework": "DNX,Version=v4.5.1",
- "dependencies": {
- "Microsoft.AspNet.Hosting": "1.0.0-rc1-final",
- "Microsoft.CSharp": "4.0.1-beta-23516",
- "NLog": "4.4.0-alpha1",
- "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"
- }
- },
- "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/_._": {}
- }
- },
- "xunit/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.assert": "[2.1.0]",
- "xunit.core": "[2.1.0]"
- }
- },
- "xunit.abstractions/2.0.0": {
- "type": "package",
- "compile": {
- "lib/net35/xunit.abstractions.dll": {}
- },
- "runtime": {
- "lib/net35/xunit.abstractions.dll": {}
- }
- },
- "xunit.assert/2.1.0": {
- "type": "package",
- "compile": {
- "lib/dotnet/xunit.assert.dll": {}
- },
- "runtime": {
- "lib/dotnet/xunit.assert.dll": {}
- }
- },
- "xunit.core/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.1.0]",
- "xunit.extensibility.execution": "[2.1.0]"
- }
- },
- "xunit.extensibility.core/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.abstractions": "[2.0.0]"
- },
- "compile": {
- "lib/dotnet/xunit.core.dll": {}
- },
- "runtime": {
- "lib/dotnet/xunit.core.dll": {},
- "lib/dotnet/xunit.runner.tdnet.dll": {},
- "lib/dotnet/xunit.runner.utility.desktop.dll": {}
- }
- },
- "xunit.extensibility.execution/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.1.0]"
- },
- "compile": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.execution.dotnet.dll": {}
- }
- },
- "xunit.runner.dnx/2.1.0-rc1-build204": {
- "type": "package",
- "dependencies": {
- "Microsoft.Dnx.TestHost": "1.0.0-rc1-final",
- "Microsoft.Dnx.Testing.Abstractions": "1.0.0-rc1-final",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
- "xunit.runner.reporters": "2.1.0"
- },
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Collections",
- "System.Core",
- "System.Threading",
- "System.Xml",
- "System.Xml.Linq",
- "System.Xml.XDocument"
- ],
- "compile": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.dnx.dll": {}
- }
- },
- "xunit.runner.reporters/2.1.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "7.0.1",
- "xunit.runner.utility": "[2.1.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.reporters.dotnet.dll": {}
- }
- },
- "xunit.runner.utility/2.1.0": {
- "type": "package",
- "dependencies": {
- "xunit.abstractions": "[2.0.0]"
- },
- "compile": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
- },
- "runtime": {
- "lib/dnx451/xunit.runner.utility.dotnet.dll": {}
- }
- }
- }
- },
- "libraries": {
- "NLog.Web/1.0.0": {
- "type": "project",
- "path": "../NLog.Web/project.json"
- },
- "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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.Dnx.TestHost/1.0.0-rc1-final": {
- "type": "package",
- "serviceable": true,
- "sha512": "f5lDXCh4tLXXWHcuNpiyQLiOuV8HB+UjWeL70hrHyaBcssA6Oxa7KB3R/arddVwXuaXeBuGm+HVheuyhQCYGig==",
- "files": [
- "app/project.json",
- "lib/dnx451/Microsoft.Dnx.TestHost.dll",
- "lib/dnx451/Microsoft.Dnx.TestHost.xml",
- "lib/dnxcore50/Microsoft.Dnx.TestHost.dll",
- "lib/dnxcore50/Microsoft.Dnx.TestHost.xml",
- "Microsoft.Dnx.TestHost.1.0.0-rc1-final.nupkg",
- "Microsoft.Dnx.TestHost.1.0.0-rc1-final.nupkg.sha512",
- "Microsoft.Dnx.TestHost.nuspec"
- ]
- },
- "Microsoft.Dnx.Testing.Abstractions/1.0.0-rc1-final": {
- "type": "package",
- "serviceable": true,
- "sha512": "AKeTdr5IdJQaXWw5jMyFOmmWicXt6V6WNQ7l67yBpSLsrJwYjtPg++XMmDGZVTd2CHcjzgMwz3iQfhCtMR76NQ==",
- "files": [
- "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.dll",
- "lib/dotnet5.4/Microsoft.Dnx.Testing.Abstractions.xml",
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.dll",
- "lib/net451/Microsoft.Dnx.Testing.Abstractions.xml",
- "Microsoft.Dnx.Testing.Abstractions.1.0.0-rc1-final.nupkg",
- "Microsoft.Dnx.Testing.Abstractions.1.0.0-rc1-final.nupkg.sha512",
- "Microsoft.Dnx.Testing.Abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
- "type": "package",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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",
- "serviceable": true,
- "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"
- ]
- },
- "Newtonsoft.Json/7.0.1": {
- "type": "package",
- "sha512": "q3V4KLetMLnt1gpAVWgtXnHjKs0UG/RalBc29u2ZKxd5t5Ze4JBL5WiiYIklJyK/5CRiIiNwigVQUo0FgbsuWA==",
- "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/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+dnxcore50/Newtonsoft.Json.dll",
- "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml",
- "Newtonsoft.Json.7.0.1.nupkg",
- "Newtonsoft.Json.7.0.1.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.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"
- ]
- },
- "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.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.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.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.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.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"
- ]
- },
- "xunit/2.1.0": {
- "type": "package",
- "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==",
- "files": [
- "xunit.2.1.0.nupkg",
- "xunit.2.1.0.nupkg.sha512",
- "xunit.nuspec"
- ]
- },
- "xunit.abstractions/2.0.0": {
- "type": "package",
- "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==",
- "files": [
- "lib/net35/xunit.abstractions.dll",
- "lib/net35/xunit.abstractions.xml",
- "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll",
- "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml",
- "xunit.abstractions.2.0.0.nupkg",
- "xunit.abstractions.2.0.0.nupkg.sha512",
- "xunit.abstractions.nuspec"
- ]
- },
- "xunit.assert/2.1.0": {
- "type": "package",
- "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==",
- "files": [
- "lib/dotnet/xunit.assert.dll",
- "lib/dotnet/xunit.assert.pdb",
- "lib/dotnet/xunit.assert.xml",
- "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll",
- "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb",
- "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml",
- "xunit.assert.2.1.0.nupkg",
- "xunit.assert.2.1.0.nupkg.sha512",
- "xunit.assert.nuspec"
- ]
- },
- "xunit.core/2.1.0": {
- "type": "package",
- "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==",
- "files": [
- "build/_desktop/xunit.execution.desktop.dll",
- "build/dnx451/_._",
- "build/monoandroid/_._",
- "build/monotouch/_._",
- "build/net45/_._",
- "build/portable-net45+win8+wp8+wpa81/xunit.core.props",
- "build/win8/_._",
- "build/win81/xunit.core.props",
- "build/wp8/_._",
- "build/wpa81/xunit.core.props",
- "build/xamarinios/_._",
- "xunit.core.2.1.0.nupkg",
- "xunit.core.2.1.0.nupkg.sha512",
- "xunit.core.nuspec"
- ]
- },
- "xunit.extensibility.core/2.1.0": {
- "type": "package",
- "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==",
- "files": [
- "lib/dotnet/xunit.core.dll",
- "lib/dotnet/xunit.core.dll.tdnet",
- "lib/dotnet/xunit.core.pdb",
- "lib/dotnet/xunit.core.xml",
- "lib/dotnet/xunit.runner.tdnet.dll",
- "lib/dotnet/xunit.runner.utility.desktop.dll",
- "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll",
- "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet",
- "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb",
- "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml",
- "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll",
- "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll",
- "xunit.extensibility.core.2.1.0.nupkg",
- "xunit.extensibility.core.2.1.0.nupkg.sha512",
- "xunit.extensibility.core.nuspec"
- ]
- },
- "xunit.extensibility.execution/2.1.0": {
- "type": "package",
- "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==",
- "files": [
- "lib/dnx451/xunit.execution.dotnet.dll",
- "lib/dnx451/xunit.execution.dotnet.pdb",
- "lib/dnx451/xunit.execution.dotnet.xml",
- "lib/dotnet/xunit.execution.dotnet.dll",
- "lib/dotnet/xunit.execution.dotnet.pdb",
- "lib/dotnet/xunit.execution.dotnet.xml",
- "lib/monoandroid/xunit.execution.dotnet.dll",
- "lib/monoandroid/xunit.execution.dotnet.pdb",
- "lib/monoandroid/xunit.execution.dotnet.xml",
- "lib/monotouch/xunit.execution.dotnet.dll",
- "lib/monotouch/xunit.execution.dotnet.pdb",
- "lib/monotouch/xunit.execution.dotnet.xml",
- "lib/net45/xunit.execution.desktop.dll",
- "lib/net45/xunit.execution.desktop.pdb",
- "lib/net45/xunit.execution.desktop.xml",
- "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll",
- "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb",
- "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml",
- "lib/win8/xunit.execution.dotnet.dll",
- "lib/win8/xunit.execution.dotnet.pdb",
- "lib/win8/xunit.execution.dotnet.xml",
- "lib/wp8/xunit.execution.dotnet.dll",
- "lib/wp8/xunit.execution.dotnet.pdb",
- "lib/wp8/xunit.execution.dotnet.xml",
- "lib/wpa81/xunit.execution.dotnet.dll",
- "lib/wpa81/xunit.execution.dotnet.pdb",
- "lib/wpa81/xunit.execution.dotnet.xml",
- "lib/xamarinios/xunit.execution.dotnet.dll",
- "lib/xamarinios/xunit.execution.dotnet.pdb",
- "lib/xamarinios/xunit.execution.dotnet.xml",
- "xunit.extensibility.execution.2.1.0.nupkg",
- "xunit.extensibility.execution.2.1.0.nupkg.sha512",
- "xunit.extensibility.execution.nuspec"
- ]
- },
- "xunit.runner.dnx/2.1.0-rc1-build204": {
- "type": "package",
- "sha512": "GUtWIQN3h7QGJdp5RTgvbPVjdWC7tXIRZhzpW8txNDC9nbMph4/TWbVEZKCGUOsLvE5BZg3icRGb6JR3ZwBADA==",
- "files": [
- "lib/dnx451/xunit.runner.dnx.dll",
- "lib/dnx451/xunit.runner.dnx.xml",
- "lib/dnxcore50/xunit.runner.dnx.dll",
- "lib/dnxcore50/xunit.runner.dnx.xml",
- "xunit.runner.dnx.2.1.0-rc1-build204.nupkg",
- "xunit.runner.dnx.2.1.0-rc1-build204.nupkg.sha512",
- "xunit.runner.dnx.nuspec"
- ]
- },
- "xunit.runner.reporters/2.1.0": {
- "type": "package",
- "sha512": "ja0kJrvwSiho2TRFpfHfa+6tGJI5edcyD8fdekTkjn7Us17PbGqglIihRe8sR9YFAmS4ipEC8+7CXOM/b69ENQ==",
- "files": [
- "lib/dnx451/xunit.runner.reporters.dotnet.dll",
- "lib/dotnet/xunit.runner.reporters.dotnet.dll",
- "lib/net45/xunit.runner.reporters.desktop.dll",
- "xunit.runner.reporters.2.1.0.nupkg",
- "xunit.runner.reporters.2.1.0.nupkg.sha512",
- "xunit.runner.reporters.nuspec"
- ]
- },
- "xunit.runner.utility/2.1.0": {
- "type": "package",
- "sha512": "jJJHROwskIhdQuYw7exe7KaW20dOCa+lzV/lY7Zdh1ZZzdUPpScMi9ReJIutqiyjhemGF8V/GaMIPrcjyZ4ioQ==",
- "files": [
- "lib/dnx451/xunit.runner.utility.dotnet.dll",
- "lib/dnx451/xunit.runner.utility.dotnet.pdb",
- "lib/dnx451/xunit.runner.utility.dotnet.xml",
- "lib/dotnet/xunit.runner.utility.dotnet.dll",
- "lib/dotnet/xunit.runner.utility.dotnet.pdb",
- "lib/dotnet/xunit.runner.utility.dotnet.xml",
- "lib/net35/xunit.runner.utility.desktop.dll",
- "lib/net35/xunit.runner.utility.desktop.pdb",
- "lib/net35/xunit.runner.utility.desktop.xml",
- "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.dll",
- "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.pdb",
- "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.xml",
- "xunit.runner.utility.2.1.0.nupkg",
- "xunit.runner.utility.2.1.0.nupkg.sha512",
- "xunit.runner.utility.nuspec"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "": [
- "xunit >= 2.1.0",
- "xunit.runner.dnx >= 2.1.0-rc1-build204",
- "NLog.Web >= 1.0.0-*"
- ],
- "DNX,Version=v4.5.1": [
- "fx/System >= 4.0.0",
- "fx/System.Runtime >= 4.0.10",
- "fx/System.Xml >= 4.0.0"
- ]
- }
-}
\ No newline at end of file
diff --git a/NLog.Web.ASPNET5/project.lock.json b/NLog.Web.ASPNET5/project.lock.json
index 846c0be9..767a8c31 100644
--- a/NLog.Web.ASPNET5/project.lock.json
+++ b/NLog.Web.ASPNET5/project.lock.json
@@ -1,2000 +1,7194 @@
{
"locked": false,
- "version": 1,
+ "version": 2,
"targets": {
- ".NETFramework,Version=v4.5.1": {
+ "DNXCore,Version=v5.0": {
"Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "[1.0.0-rc1-final, )"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final",
+ "System.IO": "4.0.11-beta-23516",
+ "System.Resources.ResourceManager": "4.0.1-beta-23516"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
+ "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, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "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.Diagnostics.DiagnosticSource": "[4.0.0-beta-23516, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Hosting.dll": {}
+ "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Hosting.dll": {}
+ "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, )"
+ "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": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ "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, )"
+ "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": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "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, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Http.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Http.dll": {}
+ "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, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "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, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
+ "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, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
+ "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, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.AspNet.WebUtilities.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.AspNet.WebUtilities.dll": {}
+ "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
}
},
"Microsoft.CSharp/4.0.1-beta-23516": {
- "frameworkAssemblies": [
- "Microsoft.CSharp"
- ],
+ "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/net45/_._": {}
+ "ref/dotnet5.1/Microsoft.CSharp.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "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, )"
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final",
+ "System.IO.FileSystem": "4.0.1-beta-23516"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "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, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.dll": {}
+ "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, )"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final",
+ "System.Linq": "4.0.1-beta-23516"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "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, )"
+ "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "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, )"
+ "Microsoft.Extensions.Configuration": "1.0.0-rc1-final"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "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, )"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final",
+ "System.AppContext": "4.0.0"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "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, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
+ "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, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
+ "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/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "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, )"
+ "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"
},
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Collections.Concurrent",
- "System.Core"
- ],
"compile": {
- "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
}
},
"Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
+ "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/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
"Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": {
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
+ "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/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
"Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
+ "type": "package",
+ "dependencies": {
+ "System.Resources.ResourceManager": "4.0.1-beta-23516",
+ "System.Runtime": "4.0.21-beta-23516"
+ },
"compile": {
- "lib/net451/Microsoft.Extensions.Primitives.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.Primitives.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
}
},
"Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": {
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
+ "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/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
}
},
"Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
- "frameworkAssemblies": [
- "Microsoft.CSharp",
- "mscorlib",
- "System",
- "System.Core"
- ],
- "compile": {
- "lib/net451/Microsoft.Net.Http.Headers.dll": {}
+ "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"
},
- "runtime": {
- "lib/net451/Microsoft.Net.Http.Headers.dll": {}
- }
- },
- "Newtonsoft.Json/6.0.6": {
"compile": {
- "lib/net45/Newtonsoft.Json.dll": {}
+ "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
},
"runtime": {
- "lib/net45/Newtonsoft.Json.dll": {}
+ "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
}
},
- "NLog/4.4.0-alpha1": {
- "frameworkAssemblies": [
- "mscorlib",
- "System",
- "System.Configuration",
- "System.Core",
- "System.Data",
- "System.Runtime.Serialization",
- "System.ServiceModel",
- "System.Transactions",
- "System.Xml"
- ],
+ "Microsoft.Win32.Primitives/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.20",
+ "System.Runtime.InteropServices": "4.0.20"
+ },
"compile": {
- "lib/net35/NLog.dll": {}
+ "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
},
"runtime": {
- "lib/net35/NLog.dll": {}
+ "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
}
},
- "System.Collections/4.0.11-beta-23516": {
+ "Newtonsoft.Json/6.0.6": {
+ "type": "package",
"compile": {
- "ref/net45/_._": {}
+ "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
+ "NLog/4.4.0-alpha1": {
+ "type": "package",
"dependencies": {
- "System.Diagnostics.Tracing": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )",
- "System.Threading": "[4.0.0, )"
+ "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/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/dnxcore50/NLog.dll": {}
},
"runtime": {
- "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/dnxcore50/NLog.dll": {}
}
},
- "System.Diagnostics.Tracing/4.0.0": {
+ "System.AppContext/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.0"
+ },
"compile": {
- "ref/net45/_._": {}
+ "ref/dotnet/System.AppContext.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/DNXCore50/System.AppContext.dll": {}
}
},
- "System.Linq/4.0.1-beta-23516": {
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.0.21-beta-23516"
+ },
"compile": {
- "ref/net45/_._": {}
+ "ref/dotnet5.4/System.Collections.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/DNXCore50/System.Collections.dll": {}
}
},
- "System.Runtime/4.0.21-beta-23516": {
+ "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/net45/_._": {}
+ "ref/dotnet5.4/System.Collections.Concurrent.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/dotnet5.4/System.Collections.Concurrent.dll": {}
}
},
- "System.Threading/4.0.11-beta-23516": {
+ "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/net45/_._": {}
+ "ref/dotnet/System.Collections.NonGeneric.dll": {}
},
"runtime": {
- "lib/net45/_._": {}
+ "lib/dotnet/System.Collections.NonGeneric.dll": {}
}
- }
- },
- "DNXCore,Version=v5.0": {
- "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
+ },
+ "System.Collections.Specialized/4.0.0": {
+ "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, )"
+ "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": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
+ "ref/dotnet/System.Collections.Specialized.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
+ "lib/dotnet/System.Collections.Specialized.dll": {}
}
},
- "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
+ "System.ComponentModel/4.0.1-beta-23516": {
+ "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, )"
+ "System.Runtime": "4.0.20"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "ref/dotnet5.1/System.ComponentModel.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll": {}
+ "lib/dotnet5.4/System.ComponentModel.dll": {}
}
},
- "Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
+ "System.ComponentModel.EventBasedAsync/4.0.10": {
+ "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, )"
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20",
+ "System.Threading": "4.0.10",
+ "System.Threading.Tasks": "4.0.10"
},
"compile": {
- "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
+ "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
},
"runtime": {
- "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {}
+ "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
}
},
- "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
+ "System.ComponentModel.Primitives/4.0.0": {
+ "type": "package",
"dependencies": {
- "Microsoft.AspNet.FileProviders.Abstractions": "[1.0.0-rc1-final, )",
- "Microsoft.AspNet.Http.Abstractions": "[1.0.0-rc1-final, )"
+ "System.ComponentModel": "4.0.0",
+ "System.Runtime": "4.0.20"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ "ref/dotnet/System.ComponentModel.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll": {}
+ "lib/dotnet/System.ComponentModel.Primitives.dll": {}
}
},
- "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
+ "System.ComponentModel.TypeConverter/4.0.1-beta-23516": {
+ "type": "package",
"dependencies": {
- "Microsoft.AspNet.Http.Features": "[1.0.0-rc1-final, )",
- "Microsoft.Extensions.Configuration.Abstractions": "[1.0.0-rc1-final, )"
+ "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": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "ref/dotnet5.1/System.ComponentModel.TypeConverter.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
+ "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll": {}
}
},
- "Microsoft.AspNet.Http/1.0.0-rc1-final": {
+ "System.Console/4.0.0-beta-23516": {
+ "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, )"
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.dll": {}
+ "ref/dotnet5.1/System.Console.dll": {}
}
},
- "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
+ "System.Data.Common/4.0.0": {
+ "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, )"
+ "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": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "ref/dotnet/System.Data.Common.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll": {}
+ "lib/dotnet/System.Data.Common.dll": {}
}
},
- "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
+ "System.Diagnostics.Contracts/4.0.1-beta-23516": {
+ "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, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll": {}
+ "lib/DNXCore50/System.Diagnostics.Contracts.dll": {}
}
},
- "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
+ "System.Diagnostics.Debug/4.0.11-beta-23516": {
+ "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, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll": {}
+ "ref/dotnet5.4/System.Diagnostics.Debug.dll": {}
}
},
- "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
+ "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
+ "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, )"
+ "System.Diagnostics.Tracing": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Threading": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "Microsoft.CSharp/4.0.1-beta-23516": {
+ "System.Diagnostics.StackTrace/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, )"
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/Microsoft.CSharp.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.StackTrace.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.CSharp.dll": {}
+ "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {}
}
},
- "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
+ "System.Diagnostics.Tools/4.0.1-beta-23516": {
+ "type": "package",
"dependencies": {
- "Microsoft.Extensions.PlatformAbstractions": "[1.0.0-rc1-final, )",
- "System.IO.FileSystem": "[4.0.1-beta-23516, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.Tools.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll": {}
+ "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
+ "System.Diagnostics.TraceSource/4.0.0-beta-23516": {
+ "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, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.dll": {}
+ "ref/dotnet5.1/System.Diagnostics.TraceSource.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": {
+ "System.Diagnostics.Tracing/4.0.20": {
+ "type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "[1.0.0-rc1-final, )",
- "System.Linq": "[4.0.1-beta-23516, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "ref/dotnet/System.Diagnostics.Tracing.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll": {}
+ "lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
}
},
- "Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
+ "System.Dynamic.Runtime/4.0.11-beta-23516": {
+ "type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "[1.0.0-rc1-final, )"
+ "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": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "ref/dotnet5.4/System.Dynamic.Runtime.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll": {}
+ "lib/DNXCore50/System.Dynamic.Runtime.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": {
+ "System.Globalization/4.0.11-beta-23516": {
+ "type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "[1.0.0-rc1-final, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "ref/dotnet5.4/System.Globalization.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
+ "lib/DNXCore50/System.Globalization.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": {
+ "System.Globalization.Extensions/4.0.1-beta-23516": {
+ "type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "[1.0.0-rc1-final, )",
- "System.AppContext": "[4.0.0, )"
+ "System.Globalization": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Extensions": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
+ "ref/dotnet5.1/System.Globalization.Extensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
+ "System.IO/4.0.11-beta-23516": {
+ "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, )"
+ "System.Runtime": "4.0.20",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
+ "ref/dotnet5.4/System.IO.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Configuration.Json.dll": {}
+ "lib/DNXCore50/System.IO.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
+ "System.IO.Compression/4.0.1-beta-23409": {
+ "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, )"
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Text.Encoding": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll": {}
+ "ref/dotnet/System.IO.Compression.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
+ "System.IO.FileSystem/4.0.1-beta-23516": {
+ "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, )"
+ "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": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
+ "ref/dotnet5.4/System.IO.FileSystem.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0-rc1-final": {
+ "System.IO.FileSystem.Primitives/4.0.1-beta-23516": {
+ "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, )"
+ "System.Runtime": "4.0.20"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ "ref/dotnet5.1/System.IO.FileSystem.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.dll": {}
+ "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
+ "System.IO.FileSystem.Watcher/4.0.0-beta-23516": {
+ "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, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Logging.Abstractions.dll": {}
+ "ref/dotnet5.1/System.IO.FileSystem.Watcher.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": {
+ "System.Linq/4.0.1-beta-23516": {
+ "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, )"
+ "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": {
- "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "ref/dotnet5.1/System.Linq.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.PlatformAbstractions.dll": {}
+ "lib/dotnet5.4/System.Linq.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
+ "System.Linq.Expressions/4.0.11-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "[4.0.1-beta-23516, )",
- "System.Runtime": "[4.0.21-beta-23516, )"
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
- },
- "runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.Primitives.dll": {}
+ "ref/dotnet5.4/System.Linq.Expressions.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": {
+ "System.Linq.Queryable/4.0.0": {
+ "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, )"
+ "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": {
- "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ "ref/dotnet/System.Linq.Queryable.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll": {}
+ "lib/dotnet/System.Linq.Queryable.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
+ "System.Net.Http/4.0.0": {
+ "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, )"
+ "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": {
- "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
+ "ref/dotnet/System.Net.Http.dll": {}
},
"runtime": {
- "lib/dotnet5.4/Microsoft.Net.Http.Headers.dll": {}
+ "lib/DNXCore50/System.Net.Http.dll": {}
}
},
- "Microsoft.Win32.Primitives/4.0.0": {
+ "System.Net.Primitives/4.0.11-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.20, )",
- "System.Runtime.InteropServices": "[4.0.20, )"
- },
- "compile": {
- "ref/dotnet/Microsoft.Win32.Primitives.dll": {}
+ "System.Runtime": "4.0.0",
+ "System.Runtime.Handles": "4.0.0"
},
- "runtime": {
- "lib/dotnet/Microsoft.Win32.Primitives.dll": {}
- }
- },
- "Newtonsoft.Json/6.0.6": {
"compile": {
- "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {}
+ "ref/dotnet5.4/System.Net.Primitives.dll": {}
}
},
- "NLog/4.4.0-alpha1": {
+ "System.Net.Requests/4.0.10": {
+ "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, )"
+ "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": {
- "lib/dnxcore50/NLog.dll": {}
+ "ref/dotnet/System.Net.Requests.dll": {}
},
"runtime": {
- "lib/dnxcore50/NLog.dll": {}
+ "lib/dotnet/System.Net.Requests.dll": {}
}
},
- "System.AppContext/4.0.0": {
+ "System.Net.Sockets/4.0.0": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "System.Net.Primitives": "4.0.10",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/System.AppContext.dll": {}
- },
- "runtime": {
- "lib/DNXCore50/System.AppContext.dll": {}
+ "ref/dotnet/System.Net.Sockets.dll": {}
}
},
- "System.Collections/4.0.11-beta-23516": {
+ "System.Net.WebHeaderCollection/4.0.0": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.21-beta-23516, )"
+ "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/dotnet5.4/System.Collections.dll": {}
+ "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Collections.dll": {}
+ "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
}
},
- "System.Collections.Concurrent/4.0.11-beta-23516": {
+ "System.Net.WebSockets/4.0.0-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, )"
+ "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.4/System.Collections.Concurrent.dll": {}
+ "ref/dotnet5.1/System.Net.WebSockets.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Collections.Concurrent.dll": {}
+ "lib/dotnet5.4/System.Net.WebSockets.dll": {}
}
},
- "System.Collections.NonGeneric/4.0.0": {
+ "System.ObjectModel/4.0.10": {
+ "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, )"
+ "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.Collections.NonGeneric.dll": {}
+ "ref/dotnet/System.ObjectModel.dll": {}
},
"runtime": {
- "lib/dotnet/System.Collections.NonGeneric.dll": {}
+ "lib/dotnet/System.ObjectModel.dll": {}
}
},
- "System.Collections.Specialized/4.0.0": {
+ "System.Private.DataContractSerialization/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, )"
+ "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/dotnet/System.Collections.Specialized.dll": {}
+ "ref/dnxcore50/_._": {}
},
"runtime": {
- "lib/dotnet/System.Collections.Specialized.dll": {}
+ "lib/DNXCore50/System.Private.DataContractSerialization.dll": {}
}
},
- "System.ComponentModel/4.0.1-beta-23516": {
+ "System.Private.ServiceModel/4.0.0": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.20, )"
+ "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/dotnet5.1/System.ComponentModel.dll": {}
+ "ref/dnxcore50/_._": {}
},
"runtime": {
- "lib/dotnet5.4/System.ComponentModel.dll": {}
+ "lib/DNXCore50/System.Private.ServiceModel.dll": {}
}
},
- "System.ComponentModel.EventBasedAsync/4.0.10": {
- "dependencies": {
- "System.Resources.ResourceManager": "[4.0.0, )",
- "System.Runtime": "[4.0.20, )",
- "System.Threading": "[4.0.10, )",
- "System.Threading.Tasks": "[4.0.10, )"
- },
+ "System.Private.Uri/4.0.1-beta-23516": {
+ "type": "package",
"compile": {
- "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
- },
- "runtime": {
- "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {}
+ "ref/dnxcore50/_._": {}
}
},
- "System.ComponentModel.Primitives/4.0.0": {
+ "System.Reflection/4.1.0-beta-23225": {
+ "type": "package",
"dependencies": {
- "System.ComponentModel": "[4.0.0, )",
- "System.Runtime": "[4.0.20, )"
+ "System.IO": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.20"
},
"compile": {
- "ref/dotnet/System.ComponentModel.Primitives.dll": {}
+ "ref/dotnet/System.Reflection.dll": {}
},
"runtime": {
- "lib/dotnet/System.ComponentModel.Primitives.dll": {}
+ "lib/DNXCore50/System.Reflection.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.0.1-beta-23516": {
+ "System.Reflection.DispatchProxy/4.0.0": {
+ "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, )"
+ "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/dotnet5.1/System.ComponentModel.TypeConverter.dll": {}
+ "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.ComponentModel.TypeConverter.dll": {}
+ "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {}
}
},
- "System.Console/4.0.0-beta-23516": {
+ "System.Reflection.Emit/4.0.0": {
+ "type": "package",
"dependencies": {
- "System.IO": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )"
+ "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/dotnet5.1/System.Console.dll": {}
+ "ref/dotnet/System.Reflection.Emit.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Emit.dll": {}
}
},
- "System.Data.Common/4.0.0": {
+ "System.Reflection.Emit.ILGeneration/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, )"
+ "System.Reflection": "4.0.0",
+ "System.Reflection.Primitives": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Data.Common.dll": {}
+ "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
},
"runtime": {
- "lib/dotnet/System.Data.Common.dll": {}
+ "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1-beta-23516": {
+ "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Diagnostics.Contracts.dll": {}
+ "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Contracts.dll": {}
+ "lib/DNXCore50/System.Reflection.Extensions.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11-beta-23516": {
+ "System.Reflection.Primitives/4.0.0": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.4/System.Diagnostics.Debug.dll": {}
+ "ref/dotnet/System.Reflection.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Reflection.Primitives.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
+ "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "type": "package",
"dependencies": {
- "System.Diagnostics.Tracing": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )",
- "System.Threading": "[4.0.0, )"
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
},
"runtime": {
- "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
+ "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
}
},
- "System.Diagnostics.StackTrace/4.0.1-beta-23516": {
+ "System.Resources.ResourceManager/4.0.1-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Reflection": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )"
+ "System.Globalization": "4.0.0",
+ "System.Reflection": "4.0.0",
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Diagnostics.StackTrace.dll": {}
+ "ref/dotnet5.1/System.Resources.ResourceManager.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {}
+ "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1-beta-23516": {
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "System.Private.Uri": "4.0.1-beta-23516"
},
"compile": {
- "ref/dotnet5.1/System.Diagnostics.Tools.dll": {}
+ "ref/dotnet5.4/System.Runtime.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Tools.dll": {}
+ "lib/DNXCore50/System.Runtime.dll": {}
}
},
- "System.Diagnostics.TraceSource/4.0.0-beta-23516": {
+ "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "System.Runtime": "4.0.20"
},
"compile": {
- "ref/dotnet5.1/System.Diagnostics.TraceSource.dll": {}
+ "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
}
},
- "System.Diagnostics.Tracing/4.0.20": {
+ "System.Runtime.Handles/4.0.0": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Diagnostics.Tracing.dll": {}
+ "ref/dotnet/System.Runtime.Handles.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Diagnostics.Tracing.dll": {}
+ "lib/DNXCore50/System.Runtime.Handles.dll": {}
}
},
- "System.Dynamic.Runtime/4.0.11-beta-23516": {
+ "System.Runtime.InteropServices/4.0.21-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, )"
+ "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.Dynamic.Runtime.dll": {}
+ "ref/dotnet5.4/System.Runtime.InteropServices.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Dynamic.Runtime.dll": {}
+ "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
}
},
- "System.Globalization/4.0.11-beta-23516": {
+ "System.Runtime.Serialization.Primitives/4.1.0-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "System.Resources.ResourceManager": "4.0.0",
+ "System.Runtime": "4.0.20"
},
"compile": {
- "ref/dotnet5.4/System.Globalization.dll": {}
+ "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Globalization.dll": {}
+ "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "System.Globalization.Extensions/4.0.1-beta-23516": {
+ "System.Runtime.Serialization.Xml/4.0.10": {
+ "type": "package",
"dependencies": {
- "System.Globalization": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )",
- "System.Runtime.Extensions": "[4.0.0, )"
+ "System.Private.DataContractSerialization": "4.0.0",
+ "System.Runtime.Serialization.Primitives": "4.0.10"
},
"compile": {
- "ref/dotnet5.1/System.Globalization.Extensions.dll": {}
+ "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {}
}
},
- "System.IO/4.0.11-beta-23516": {
+ "System.Security.Claims/4.0.1-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.20, )",
- "System.Text.Encoding": "[4.0.0, )",
- "System.Threading.Tasks": "[4.0.0, )"
+ "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.4/System.IO.dll": {}
+ "ref/dotnet5.1/System.Security.Claims.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.IO.dll": {}
+ "lib/dotnet5.4/System.Security.Claims.dll": {}
}
},
- "System.IO.Compression/4.0.1-beta-23409": {
+ "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
+ "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, )"
+ "System.IO": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Security.Cryptography.Primitives": "4.0.0-beta-23516"
},
"compile": {
- "ref/dotnet/System.IO.Compression.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {}
}
},
- "System.IO.FileSystem/4.0.1-beta-23516": {
+ "System.Security.Cryptography.Encoding/4.0.0-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, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.4/System.IO.FileSystem.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1-beta-23516": {
+ "System.Security.Cryptography.Primitives/4.0.0-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.20, )"
+ "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.IO.FileSystem.Primitives.dll": {}
+ "ref/dotnet5.1/System.Security.Cryptography.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.IO.FileSystem.Primitives.dll": {}
+ "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0-beta-23516": {
+ "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "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.1/System.IO.FileSystem.Watcher.dll": {}
+ "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
}
},
- "System.Linq/4.0.1-beta-23516": {
+ "System.Security.Principal/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, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Linq.dll": {}
+ "ref/dotnet5.1/System.Security.Principal.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.0.11-beta-23516": {
- "dependencies": {
- "System.Reflection": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )"
- },
- "compile": {
- "ref/dotnet5.4/System.Linq.Expressions.dll": {}
+ "lib/dotnet5.1/System.Security.Principal.dll": {}
}
},
- "System.Linq.Queryable/4.0.0": {
+ "System.ServiceModel.Primitives/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, )"
+ "System.Private.ServiceModel": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Linq.Queryable.dll": {}
+ "ref/dotnet/System.ServiceModel.Primitives.dll": {}
},
"runtime": {
- "lib/dotnet/System.Linq.Queryable.dll": {}
+ "lib/DNXCore50/System.ServiceModel.Primitives.dll": {}
}
},
- "System.Net.Http/4.0.0": {
+ "System.Text.Encoding/4.0.11-beta-23516": {
+ "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, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Net.Http.dll": {}
+ "ref/dotnet5.4/System.Text.Encoding.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Net.Http.dll": {}
+ "lib/DNXCore50/System.Text.Encoding.dll": {}
}
},
- "System.Net.Primitives/4.0.11-beta-23516": {
+ "System.Text.Encoding.Extensions/4.0.10": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )",
- "System.Runtime.Handles": "[4.0.0, )"
+ "System.Runtime": "4.0.0",
+ "System.Text.Encoding": "4.0.10"
},
"compile": {
- "ref/dotnet5.4/System.Net.Primitives.dll": {}
+ "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {}
}
},
- "System.Net.Requests/4.0.10": {
+ "System.Text.RegularExpressions/4.0.11-beta-23516": {
+ "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, )"
+ "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/dotnet/System.Net.Requests.dll": {}
+ "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
},
"runtime": {
- "lib/dotnet/System.Net.Requests.dll": {}
+ "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
}
},
- "System.Net.Sockets/4.0.0": {
+ "System.Threading/4.0.11-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Net.Primitives": "[4.0.10, )",
- "System.Runtime": "[4.0.0, )"
+ "System.Runtime": "4.0.0",
+ "System.Threading.Tasks": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Net.Sockets.dll": {}
+ "ref/dotnet5.4/System.Threading.dll": {}
}
},
- "System.Net.WebHeaderCollection/4.0.0": {
+ "System.Threading.Tasks/4.0.11-beta-23516": {
+ "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, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Net.WebHeaderCollection.dll": {}
+ "ref/dotnet5.4/System.Threading.Tasks.dll": {}
},
"runtime": {
- "lib/dotnet/System.Net.WebHeaderCollection.dll": {}
+ "lib/DNXCore50/System.Threading.Tasks.dll": {}
}
},
- "System.Net.WebSockets/4.0.0-beta-23516": {
+ "System.Threading.Thread/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, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dotnet5.1/System.Net.WebSockets.dll": {}
+ "ref/dotnet5.1/System.Threading.Thread.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Net.WebSockets.dll": {}
+ "lib/DNXCore50/System.Threading.Thread.dll": {}
}
},
- "System.ObjectModel/4.0.10": {
+ "System.Threading.ThreadPool/4.0.10-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.Threading": "[4.0.10, )"
+ "System.Runtime": "4.0.0",
+ "System.Runtime.InteropServices": "4.0.0"
},
"compile": {
- "ref/dotnet/System.ObjectModel.dll": {}
+ "ref/dotnet5.2/System.Threading.ThreadPool.dll": {}
},
"runtime": {
- "lib/dotnet/System.ObjectModel.dll": {}
+ "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
}
},
- "System.Private.DataContractSerialization/4.0.0": {
+ "System.Threading.Timer/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, )"
+ "System.Runtime": "4.0.0"
},
"compile": {
- "ref/dnxcore50/_._": {}
+ "ref/dotnet/System.Threading.Timer.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Private.DataContractSerialization.dll": {}
+ "lib/DNXCore50/System.Threading.Timer.dll": {}
}
},
- "System.Private.ServiceModel/4.0.0": {
+ "System.Xml.ReaderWriter/4.0.10": {
+ "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, )"
+ "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/dnxcore50/_._": {}
+ "ref/dotnet/System.Xml.ReaderWriter.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Private.ServiceModel.dll": {}
- }
- },
- "System.Private.Uri/4.0.1-beta-23516": {
- "compile": {
- "ref/dnxcore50/_._": {}
+ "lib/dotnet/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Reflection/4.1.0-beta-23225": {
+ "System.Xml.XmlDocument/4.0.1-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.IO": "[4.0.0, )",
- "System.Reflection.Primitives": "[4.0.0, )",
- "System.Runtime": "[4.0.20, )"
+ "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/dotnet/System.Reflection.dll": {}
+ "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": {
+ "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.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, )"
+ "System.Diagnostics.Tracing": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Threading": "4.0.0"
},
"compile": {
- "ref/dotnet/System.Reflection.DispatchProxy.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Reflection.Emit/4.0.0": {
+ "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": {
- "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, )"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.Reflection.Emit.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Emit.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Abstractions.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.0": {
+ "Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.Reflection": "[4.0.0, )",
- "System.Reflection.Primitives": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )"
+ "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {}
+ "lib/net451/Microsoft.AspNet.FileProviders.Physical.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1-beta-23516": {
+ "Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.Reflection": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )"
+ "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": {
- "ref/dotnet5.1/System.Reflection.Extensions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Extensions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.dll": {}
}
},
- "System.Reflection.Primitives/4.0.0": {
+ "Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "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": {
- "ref/dotnet/System.Reflection.Primitives.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.Primitives.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Abstractions.dll": {}
}
},
- "System.Reflection.TypeExtensions/4.0.1-beta-23409": {
+ "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.Reflection": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )"
+ "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": {
- "ref/dotnet/System.Reflection.TypeExtensions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {}
+ "lib/net451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1-beta-23516": {
+ "Microsoft.AspNet.Http/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.Globalization": "[4.0.0, )",
- "System.Reflection": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )"
+ "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": {
- "ref/dotnet5.1/System.Resources.ResourceManager.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Resources.ResourceManager.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.dll": {}
}
},
- "System.Runtime/4.0.21-beta-23516": {
+ "Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.Private.Uri": "[4.0.1-beta-23516, )"
+ "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": {
- "ref/dotnet5.4/System.Runtime.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Abstractions.dll": {}
}
},
- "System.Runtime.Extensions/4.0.11-beta-23516": {
+ "Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.20, )"
+ "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": {
- "ref/dotnet5.4/System.Runtime.Extensions.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNet.Http.Extensions.dll": {}
}
},
- "System.Runtime.Handles/4.0.0": {
+ "Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.Runtime.Handles.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.Handles.dll": {}
+ "lib/net451/Microsoft.AspNet.Http.Features.dll": {}
}
},
- "System.Runtime.InteropServices/4.0.21-beta-23516": {
+ "Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
+ "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, )"
+ "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/dotnet5.4/System.Runtime.InteropServices.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.InteropServices.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.0-beta-23516": {
+ "Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "[4.0.0, )",
- "System.Runtime": "[4.0.20, )"
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
+ "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll": {}
+ "lib/net451/Microsoft.Dnx.Compilation.Abstractions.dll": {}
}
},
- "System.Runtime.Serialization.Xml/4.0.10": {
+ "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": {
- "System.Private.DataContractSerialization": "[4.0.0, )",
- "System.Runtime.Serialization.Primitives": "[4.0.10, )"
+ "Microsoft.Extensions.Primitives": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.Runtime.Serialization.Xml.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "System.Security.Claims/4.0.1-beta-23516": {
+ "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": {
- "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, )"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.Security.Claims.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Security.Claims.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.0.0-beta-23516": {
+ "Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.IO": "[4.0.0, )",
- "System.Runtime": "[4.0.0, )",
- "System.Security.Cryptography.Primitives": "[4.0.0-beta-23516, )"
+ "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": {
- "ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll": {}
+ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "System.Security.Cryptography.Encoding/4.0.0-beta-23516": {
+ "Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final"
},
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Encoding.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "System.Security.Cryptography.Primitives/4.0.0-beta-23516": {
- "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, )"
- },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.Security.Cryptography.Primitives.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Security.Cryptography.Primitives.dll": {}
+ "lib/net451/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.0.0-beta-23516": {
+ "Microsoft.Extensions.Logging/1.0.0-rc1-final": {
+ "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, )"
+ "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": {
- "ref/dotnet5.4/System.Security.Cryptography.X509Certificates.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.Extensions.Logging.dll": {}
}
},
- "System.Security.Principal/4.0.1-beta-23516": {
- "dependencies": {
- "System.Runtime": "[4.0.0, )"
- },
+ "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.1/System.Security.Principal.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
},
"runtime": {
- "lib/dotnet5.1/System.Security.Principal.dll": {}
+ "lib/net451/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "System.ServiceModel.Primitives/4.0.0": {
- "dependencies": {
- "System.Private.ServiceModel": "[4.0.0, )"
- },
+ "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.ServiceModel.Primitives.dll": {}
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.ServiceModel.Primitives.dll": {}
+ "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "System.Text.Encoding/4.0.11-beta-23516": {
- "dependencies": {
- "System.Runtime": "[4.0.0, )"
- },
+ "Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.4/System.Text.Encoding.dll": {}
+ "lib/net451/Microsoft.Extensions.Primitives.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Text.Encoding.dll": {}
+ "lib/net451/Microsoft.Extensions.Primitives.dll": {}
}
},
- "System.Text.Encoding.Extensions/4.0.10": {
- "dependencies": {
- "System.Runtime": "[4.0.0, )",
- "System.Text.Encoding": "[4.0.10, )"
- },
+ "Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet/System.Text.Encoding.Extensions.dll": {}
+ "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {}
+ "lib/net451/Microsoft.Extensions.WebEncoders.Core.dll": {}
}
},
- "System.Text.RegularExpressions/4.0.11-beta-23516": {
- "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, )"
- },
+ "Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "Microsoft.CSharp",
+ "mscorlib",
+ "System",
+ "System.Core"
+ ],
"compile": {
- "ref/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ "lib/net451/Microsoft.Net.Http.Headers.dll": {}
},
"runtime": {
- "lib/dotnet5.4/System.Text.RegularExpressions.dll": {}
+ "lib/net451/Microsoft.Net.Http.Headers.dll": {}
}
},
- "System.Threading/4.0.11-beta-23516": {
- "dependencies": {
- "System.Runtime": "[4.0.0, )",
- "System.Threading.Tasks": "[4.0.0, )"
- },
+ "Newtonsoft.Json/6.0.6": {
+ "type": "package",
"compile": {
- "ref/dotnet5.4/System.Threading.dll": {}
+ "lib/net45/Newtonsoft.Json.dll": {}
+ },
+ "runtime": {
+ "lib/net45/Newtonsoft.Json.dll": {}
}
},
- "System.Threading.Tasks/4.0.11-beta-23516": {
- "dependencies": {
- "System.Runtime": "[4.0.0, )"
- },
+ "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": {
- "ref/dotnet5.4/System.Threading.Tasks.dll": {}
+ "lib/net35/NLog.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Tasks.dll": {}
+ "lib/net35/NLog.dll": {}
}
},
- "System.Threading.Thread/4.0.0-beta-23516": {
- "dependencies": {
- "System.Runtime": "[4.0.0, )"
- },
+ "runtime.win7.System.Threading/4.0.11-beta-23516": {
+ "type": "package",
"compile": {
- "ref/dotnet5.1/System.Threading.Thread.dll": {}
+ "ref/dotnet/_._": {}
+ }
+ },
+ "System.Collections/4.0.11-beta-23516": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Thread.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Threading.ThreadPool/4.0.10-beta-23516": {
+ "System.Diagnostics.DiagnosticSource/4.0.0-beta-23516": {
+ "type": "package",
"dependencies": {
- "System.Runtime": "[4.0.0, )",
- "System.Runtime.InteropServices": "[4.0.0, )"
+ "System.Diagnostics.Tracing": "4.0.0",
+ "System.Runtime": "4.0.0",
+ "System.Threading": "4.0.0"
},
"compile": {
- "ref/dotnet5.2/System.Threading.ThreadPool.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.ThreadPool.dll": {}
+ "lib/dotnet5.2/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Threading.Timer/4.0.0": {
- "dependencies": {
- "System.Runtime": "[4.0.0, )"
- },
+ "System.Diagnostics.Tracing/4.0.0": {
+ "type": "package",
"compile": {
- "ref/dotnet/System.Threading.Timer.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Threading.Timer.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Xml.ReaderWriter/4.0.10": {
- "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, )"
- },
+ "System.Linq/4.0.1-beta-23516": {
+ "type": "package",
"compile": {
- "ref/dotnet/System.Xml.ReaderWriter.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet/System.Xml.ReaderWriter.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Xml.XmlDocument/4.0.1-beta-23516": {
- "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, )"
- },
+ "System.Runtime/4.0.21-beta-23516": {
+ "type": "package",
"compile": {
- "ref/dotnet5.1/System.Xml.XmlDocument.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/dotnet5.4/System.Xml.XmlDocument.dll": {}
+ "lib/net45/_._": {}
}
},
- "System.Xml.XmlSerializer/4.0.10": {
- "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, )"
- },
+ "System.Threading/4.0.11-beta-23516": {
+ "type": "package",
"compile": {
- "ref/dotnet/System.Xml.XmlSerializer.dll": {}
+ "ref/net45/_._": {}
},
"runtime": {
- "lib/DNXCore50/System.Xml.XmlSerializer.dll": {}
+ "lib/net45/_._": {}
}
}
}
},
"libraries": {
"Microsoft.AspNet.FileProviders.Abstractions/1.0.0-rc1-final": {
- "sha512": "Tv6YJk78cH+gFipRNjeMpzzUg3t4BQiS0xYVlv/8gVNl4sI6ytAMYYfIbx8pCacIRH5Nx/Tw9GVn28eyw+JZfA==",
"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",
@@ -2006,8 +7200,8 @@
]
},
"Microsoft.AspNet.FileProviders.Physical/1.0.0-rc1-final": {
- "sha512": "Ni5o7X21cN97krdkg3F77F5app0KpLwdpHbxdpwqaMjhMKYcmNDcyZB8Ke/qgbSMqHRwT3aQVhgEp/iJTbgl6g==",
"type": "package",
+ "sha512": "Ni5o7X21cN97krdkg3F77F5app0KpLwdpHbxdpwqaMjhMKYcmNDcyZB8Ke/qgbSMqHRwT3aQVhgEp/iJTbgl6g==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.dll",
"lib/dotnet5.4/Microsoft.AspNet.FileProviders.Physical.xml",
@@ -2019,8 +7213,8 @@
]
},
"Microsoft.AspNet.Hosting/1.0.0-rc1-final": {
- "sha512": "6ZVZK5Ql+z6UeVOBcXCRLahcAd/NKdMAK17JBZWGZqqmxKO0LtQMdb6drb9H4nBM3/a8vbhd+23wxzyIfoCLQQ==",
"type": "package",
+ "sha512": "6ZVZK5Ql+z6UeVOBcXCRLahcAd/NKdMAK17JBZWGZqqmxKO0LtQMdb6drb9H4nBM3/a8vbhd+23wxzyIfoCLQQ==",
"files": [
"lib/dnx451/Microsoft.AspNet.Hosting.dll",
"lib/dnx451/Microsoft.AspNet.Hosting.xml",
@@ -2036,8 +7230,8 @@
]
},
"Microsoft.AspNet.Hosting.Abstractions/1.0.0-rc1-final": {
- "sha512": "07N5rzYcsjkLgwoI923FcAvvf7167qhLgCExXwYYkdZUIJQzneRG0DqZJTm6qpnaD5igf4FM9F+eh2m7y5NFbg==",
"type": "package",
+ "sha512": "07N5rzYcsjkLgwoI923FcAvvf7167qhLgCExXwYYkdZUIJQzneRG0DqZJTm6qpnaD5igf4FM9F+eh2m7y5NFbg==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.dll",
"lib/dotnet5.4/Microsoft.AspNet.Hosting.Abstractions.xml",
@@ -2049,8 +7243,8 @@
]
},
"Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-rc1-final": {
- "sha512": "55ovPKPLsLvXsZ2xxtCOkQXmLwrE5iMUXe1y3A3Y/DCcI2u9VBJezu1y2EPYmZCM+uP/Y/BaQm68AWg2r8RV5w==",
"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",
@@ -2062,8 +7256,8 @@
]
},
"Microsoft.AspNet.Http/1.0.0-rc1-final": {
- "sha512": "2vVd6xlfDKxl7pln5VOSczVo5bdJK6VLF6LR62Tb+le6e0COju7diAPHujFcXQlX/eLq2GrctN5vbIMeQ6vRTg==",
"type": "package",
+ "sha512": "2vVd6xlfDKxl7pln5VOSczVo5bdJK6VLF6LR62Tb+le6e0COju7diAPHujFcXQlX/eLq2GrctN5vbIMeQ6vRTg==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.dll",
"lib/dotnet5.4/Microsoft.AspNet.Http.xml",
@@ -2075,8 +7269,8 @@
]
},
"Microsoft.AspNet.Http.Abstractions/1.0.0-rc1-final": {
- "sha512": "sfzc1WJMl8wGCF+rChVfJ7otT6tTv24RNXUej2r8tlQ2RDNnAozYyGb0SCW2mxpHrC31On99Wt0rksgF0c2WUw==",
"type": "package",
+ "sha512": "sfzc1WJMl8wGCF+rChVfJ7otT6tTv24RNXUej2r8tlQ2RDNnAozYyGb0SCW2mxpHrC31On99Wt0rksgF0c2WUw==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.dll",
"lib/dotnet5.4/Microsoft.AspNet.Http.Abstractions.xml",
@@ -2088,8 +7282,8 @@
]
},
"Microsoft.AspNet.Http.Extensions/1.0.0-rc1-final": {
- "sha512": "rsjbxD9W6NfqP0WNHMRyetIh6ZoKRbK1ea0V5xWdVAx53WdvgBy0HmkSwXt506+xU65jjZP19F4Ua4YjZdPHfQ==",
"type": "package",
+ "sha512": "rsjbxD9W6NfqP0WNHMRyetIh6ZoKRbK1ea0V5xWdVAx53WdvgBy0HmkSwXt506+xU65jjZP19F4Ua4YjZdPHfQ==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.dll",
"lib/dotnet5.4/Microsoft.AspNet.Http.Extensions.xml",
@@ -2101,8 +7295,8 @@
]
},
"Microsoft.AspNet.Http.Features/1.0.0-rc1-final": {
- "sha512": "WlscfdAvN8XaaK1iv1Iewp5emei7+0SlXNkUh7kMJpeaS6K0GhwNmwqZR6VrT1oN+Maw98nEONHS34/suqQwOA==",
"type": "package",
+ "sha512": "WlscfdAvN8XaaK1iv1Iewp5emei7+0SlXNkUh7kMJpeaS6K0GhwNmwqZR6VrT1oN+Maw98nEONHS34/suqQwOA==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.Http.Features.dll",
"lib/dotnet5.4/Microsoft.AspNet.Http.Features.xml",
@@ -2114,8 +7308,8 @@
]
},
"Microsoft.AspNet.WebUtilities/1.0.0-rc1-final": {
- "sha512": "0D80xroAEiWlB9X5eR/JUya1H2saIYnt4d7bPru5RRf5L/66X+9WWhf3hFkLUF3W13K6g6K9Is9dCTaEfFFKTA==",
"type": "package",
+ "sha512": "0D80xroAEiWlB9X5eR/JUya1H2saIYnt4d7bPru5RRf5L/66X+9WWhf3hFkLUF3W13K6g6K9Is9dCTaEfFFKTA==",
"files": [
"lib/dotnet5.4/Microsoft.AspNet.WebUtilities.dll",
"lib/dotnet5.4/Microsoft.AspNet.WebUtilities.xml",
@@ -2127,11 +7321,10 @@
]
},
"Microsoft.CSharp/4.0.1-beta-23516": {
- "sha512": "z/W5YaTGVQ8WX6TQDW8cCBAe2rBhHOD7NZHxLAnBIMoLWMI/upWDi+dxHYMDDWmGOM7a3di6evem2OzOdaB1fQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "fb+HO3nIjHao9lqsVVM0ne3GM/+1EfRQUoM58cxEOt+5biy/8DQ1nxIahZ9VaJKw7Wgb6XhRhsdwg8DkePEOJA==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.4/Microsoft.CSharp.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -2142,8 +7335,9 @@
"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",
- "package/services/metadata/core-properties/61a4ac0276c64f119518659ebd78b541.psmdcp",
"ref/dotnet5.1/de/Microsoft.CSharp.xml",
"ref/dotnet5.1/es/Microsoft.CSharp.xml",
"ref/dotnet5.1/fr/Microsoft.CSharp.xml",
@@ -2177,8 +7371,8 @@
]
},
"Microsoft.Dnx.Compilation.Abstractions/1.0.0-rc1-final": {
- "sha512": "kg3kR7H12Bs46TiuF7YT8A3SNXehhBcwsArIMQIH2ecXGkg5MPWDl2OR6bnQu6k0OMu9QUiv1oiwC9yU7rHWfw==",
"type": "package",
+ "sha512": "kg3kR7H12Bs46TiuF7YT8A3SNXehhBcwsArIMQIH2ecXGkg5MPWDl2OR6bnQu6k0OMu9QUiv1oiwC9yU7rHWfw==",
"files": [
"lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.dll",
"lib/dotnet5.4/Microsoft.Dnx.Compilation.Abstractions.xml",
@@ -2190,8 +7384,8 @@
]
},
"Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
- "sha512": "2ayWzqMVGWjr8o8bOSnIsyQbi9sLz9Ya8+YM+9tM/ivSnLHuN7TNHNfJv4jTyRZvoOafdh5Ivlc/OdmsZPXlQQ==",
"type": "package",
+ "sha512": "2ayWzqMVGWjr8o8bOSnIsyQbi9sLz9Ya8+YM+9tM/ivSnLHuN7TNHNfJv4jTyRZvoOafdh5Ivlc/OdmsZPXlQQ==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.xml",
@@ -2205,8 +7399,8 @@
]
},
"Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc1-final": {
- "sha512": "xA7ObOlIswcx2qakv69kz0pnBizFJrmwxRxJyjPOHWfevF4W+OdolZsbKOc12kY7y5upqhAvNGWTblffMvADHA==",
"type": "package",
+ "sha512": "xA7ObOlIswcx2qakv69kz0pnBizFJrmwxRxJyjPOHWfevF4W+OdolZsbKOc12kY7y5upqhAvNGWTblffMvADHA==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.Abstractions.xml",
@@ -2220,8 +7414,8 @@
]
},
"Microsoft.Extensions.Configuration.CommandLine/1.0.0-rc1-final": {
- "sha512": "k+kXsefuLV5WkkG6X8GFn9zf9ZrMyC3dddgm6I6scpbanDyoKUYrRUP2VhW0ViO6TIva0soh6jJy3pFPCrNx9Q==",
"type": "package",
+ "sha512": "k+kXsefuLV5WkkG6X8GFn9zf9ZrMyC3dddgm6I6scpbanDyoKUYrRUP2VhW0ViO6TIva0soh6jJy3pFPCrNx9Q==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.CommandLine.xml",
@@ -2235,8 +7429,8 @@
]
},
"Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc1-final": {
- "sha512": "CaNirkiOycy0L6ptGxmpDkHZ2lzqcHKDbQJBfEhobnEt43pqKGKgAPC5dW3DfnsMpuK+inypm5iht9t6tq4vjg==",
"type": "package",
+ "sha512": "CaNirkiOycy0L6ptGxmpDkHZ2lzqcHKDbQJBfEhobnEt43pqKGKgAPC5dW3DfnsMpuK+inypm5iht9t6tq4vjg==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
@@ -2250,8 +7444,8 @@
]
},
"Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc1-final": {
- "sha512": "w2x8nqrp2YUgNBJuZ3SUmexBtjaoZFzCQtObRTjrE4GWceFEmaLZtXFvs4n9IgRQkOqqCza7Fv7NXnD9m2emjQ==",
"type": "package",
+ "sha512": "w2x8nqrp2YUgNBJuZ3SUmexBtjaoZFzCQtObRTjrE4GWceFEmaLZtXFvs4n9IgRQkOqqCza7Fv7NXnD9m2emjQ==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.dll",
"lib/dotnet5.4/Microsoft.Extensions.Configuration.FileExtensions.xml",
@@ -2265,8 +7459,8 @@
]
},
"Microsoft.Extensions.Configuration.Json/1.0.0-rc1-final": {
- "sha512": "9v+RpswnXEpAP5mx8J1w1yZZT2pPtMBTnOAauNh2c9ju5Dhq3ljxvbm0S9j6o5F/EFSLlbfN/brxTJN3qa/upw==",
"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",
@@ -2280,8 +7474,8 @@
]
},
"Microsoft.Extensions.DependencyInjection/1.0.0-rc1-final": {
- "sha512": "S/+s3fq85j21H5nYOvh1fIt1arl8F5lZ7Ryiw/qend83yHQwIQbBs+dip9FhqiPmAn6Dz3UhW0likQQurfEsLQ==",
"type": "package",
+ "sha512": "S/+s3fq85j21H5nYOvh1fIt1arl8F5lZ7Ryiw/qend83yHQwIQbBs+dip9FhqiPmAn6Dz3UhW0likQQurfEsLQ==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.dll",
"lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.xml",
@@ -2295,8 +7489,8 @@
]
},
"Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc1-final": {
- "sha512": "MUKexXAsRZ55C7YZ26ShePZgBeW+6FbasxeIVmZ/BZIgiG4uw6yPOdfl9WvTaUL9SFK2sEPcYLatWmLfTpsOAA==",
"type": "package",
+ "sha512": "MUKexXAsRZ55C7YZ26ShePZgBeW+6FbasxeIVmZ/BZIgiG4uw6yPOdfl9WvTaUL9SFK2sEPcYLatWmLfTpsOAA==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/dotnet5.4/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
@@ -2310,8 +7504,8 @@
]
},
"Microsoft.Extensions.Logging/1.0.0-rc1-final": {
- "sha512": "anegHH4XHjaCmC557A0uvnJzprT44MOKr669yfiQLtITA+lQrM3aMijxjjdCREnxE8ftXuSz+6wViCvkgcAOhA==",
"type": "package",
+ "sha512": "anegHH4XHjaCmC557A0uvnJzprT44MOKr669yfiQLtITA+lQrM3aMijxjjdCREnxE8ftXuSz+6wViCvkgcAOhA==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Logging.dll",
"lib/dotnet5.4/Microsoft.Extensions.Logging.xml",
@@ -2325,8 +7519,8 @@
]
},
"Microsoft.Extensions.Logging.Abstractions/1.0.0-rc1-final": {
- "sha512": "ejGO1JhPXMsCCSyH12xwkOYsb9oBv2gHc3LLaT2jevrD//xuQizWaxpVk0/rHGdORkWdp+kT2Qmuz/sLyNWW/g==",
"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",
@@ -2340,8 +7534,8 @@
]
},
"Microsoft.Extensions.PlatformAbstractions/1.0.0-rc1-final": {
- "sha512": "26HS4c6MBisN+D7XUr8HObOI/JJvSJQYQR//Bfw/hi9UqhqK3lFpNKjOuYHI+gTxYdXT46HqZiz4D+k7d+ob3A==",
"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",
@@ -2353,8 +7547,8 @@
]
},
"Microsoft.Extensions.Primitives/1.0.0-rc1-final": {
- "sha512": "oHWqBARJveyM7LctuqQqvsTC58hxoq0gGnHr6Qsxie71LIkZpfE21IklhSLOsqmv4QIpes/G6k1vZbAQ+cC/nw==",
"type": "package",
+ "sha512": "oHWqBARJveyM7LctuqQqvsTC58hxoq0gGnHr6Qsxie71LIkZpfE21IklhSLOsqmv4QIpes/G6k1vZbAQ+cC/nw==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.Primitives.dll",
"lib/dotnet5.4/Microsoft.Extensions.Primitives.xml",
@@ -2368,8 +7562,8 @@
]
},
"Microsoft.Extensions.WebEncoders.Core/1.0.0-rc1-final": {
- "sha512": "wt47w3Zu7JvuD7CfRSCaz0IZL5EzpuzicRm6Qcidteb2TVeB98Psg7YGiwIBeYB1b52YFTBgqC+ySKk/GRhy2A==",
"type": "package",
+ "sha512": "wt47w3Zu7JvuD7CfRSCaz0IZL5EzpuzicRm6Qcidteb2TVeB98Psg7YGiwIBeYB1b52YFTBgqC+ySKk/GRhy2A==",
"files": [
"lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.dll",
"lib/dotnet5.4/Microsoft.Extensions.WebEncoders.Core.xml",
@@ -2381,8 +7575,8 @@
]
},
"Microsoft.Net.Http.Headers/1.0.0-rc1-final": {
- "sha512": "Y10hkmHQZLieW3J6J+vTiq86vifmJ7Vc2zrwNR349oAaUGjTHL0ws6rqHn0JDIcawBna4AE3OBNsL9vuZuE8bw==",
"type": "package",
+ "sha512": "Y10hkmHQZLieW3J6J+vTiq86vifmJ7Vc2zrwNR349oAaUGjTHL0ws6rqHn0JDIcawBna4AE3OBNsL9vuZuE8bw==",
"files": [
"lib/dotnet5.4/Microsoft.Net.Http.Headers.dll",
"lib/dotnet5.4/Microsoft.Net.Http.Headers.xml",
@@ -2394,8 +7588,8 @@
]
},
"Microsoft.Win32.Primitives/4.0.0": {
- "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==",
"type": "package",
+ "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==",
"files": [
"lib/dotnet/Microsoft.Win32.Primitives.dll",
"lib/MonoAndroid10/_._",
@@ -2425,8 +7619,8 @@
]
},
"Newtonsoft.Json/6.0.6": {
- "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==",
"type": "package",
+ "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==",
"files": [
"lib/net20/Newtonsoft.Json.dll",
"lib/net20/Newtonsoft.Json.xml",
@@ -2449,11 +7643,9 @@
]
},
"NLog/4.4.0-alpha1": {
- "sha512": "v/eEQgbC/sFIHhWxO7jJUnK/ESeKXI6xisn7pchXg7ZOUSeL16t+H19ZumgTl7BfiMaXGezR/pNv+o2inMqpnw==",
- "type": "Package",
+ "type": "package",
+ "sha512": "cdbV/3VFqaxrcRvqafowTwK4re93JDueuG9cmjpx8ivcdB6Jc226SdMmJWkDSv8vwGeUrvYKF14GuogfdycU1w==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dnx451/NLog.dll",
"lib/dnx451/NLog.xml",
"lib/dnxcore50/NLog.dll",
@@ -2464,12 +7656,272 @@
"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": {
- "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==",
"type": "package",
+ "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==",
"files": [
"lib/DNXCore50/System.AppContext.dll",
"lib/MonoAndroid10/_._",
@@ -2500,11 +7952,10 @@
]
},
"System.Collections/4.0.11-beta-23516": {
- "sha512": "FSd5zsGfmG2pidC3CVizQPNGTK1Q3A2HEuRqwUPLU/AArjELLC5p4l6XIAlJ9ZBPdbp6V8vFQAxUHzkFfyVkYA==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "TDca4OETV0kkXdpkyivMw1/EKKD1Sa/NVAjirw+fA0LZ37jLDYX+KhPPUQxgkvhCe/SVvxETD5Viiudza2k7OQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Collections.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -2515,7 +7966,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/82293a3545084670b4f6809c399d94e2.psmdcp",
"ref/dotnet5.1/de/System.Collections.xml",
"ref/dotnet5.1/es/System.Collections.xml",
"ref/dotnet5.1/fr/System.Collections.xml",
@@ -2558,15 +8008,16 @@
"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": {
- "sha512": "K+n6bC3jL5nRzwm8IM5WHxPScCnrVoPCJjpkBEmoBYY8/3j4RJdqIng/NYcpGcjvP/GIF6tAwZlh54ao2pWOvQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "e4FscEk9ugPXPKEIQFYBS/i+0KAkKf/IEe26fiOnqk8JVZQuCLO3gJmJ+IiVD1TxJjvVmh+tayQuo2svVzZV7g==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.4/System.Collections.Concurrent.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -2576,7 +8027,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/ccf573b379ed4ac38cc28d81f73b4117.psmdcp",
"ref/dotnet5.2/de/System.Collections.Concurrent.xml",
"ref/dotnet5.2/es/System.Collections.Concurrent.xml",
"ref/dotnet5.2/fr/System.Collections.Concurrent.xml",
@@ -2617,12 +8067,14 @@
"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": {
- "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==",
"type": "package",
+ "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==",
"files": [
"lib/dotnet/System.Collections.NonGeneric.dll",
"lib/MonoAndroid10/_._",
@@ -2652,8 +8104,8 @@
]
},
"System.Collections.Specialized/4.0.0": {
- "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==",
"type": "package",
+ "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==",
"files": [
"lib/dotnet/System.Collections.Specialized.dll",
"lib/MonoAndroid10/_._",
@@ -2683,18 +8135,16 @@
]
},
"System.ComponentModel/4.0.1-beta-23516": {
- "sha512": "PWlAKIWFtb0ahyK9mXkvW+8WzKfXd9n5NAtRDduoE2JETVZtWL2jUM08lVKWU+oZr3ZGBdRPPLVbUD/K9i4uzw==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "PdAC1M7yT9EBtLpXICbOtPDpDjYSlV2RXyQ7AiKyBD7mV1DNTIK7tcM1056GIOlMoJDDdxU5Z3otBeAM8v5PAg==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.4/System.ComponentModel.dll",
"lib/net45/_._",
"lib/netcore50/System.ComponentModel.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
- "package/services/metadata/core-properties/161f0e7104694562b14cbc3a143857bc.psmdcp",
"ref/dotnet5.1/de/System.ComponentModel.xml",
"ref/dotnet5.1/es/System.ComponentModel.xml",
"ref/dotnet5.1/fr/System.ComponentModel.xml",
@@ -2721,12 +8171,14 @@
"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": {
- "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==",
"type": "package",
+ "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==",
"files": [
"lib/dotnet/System.ComponentModel.EventBasedAsync.dll",
"lib/MonoAndroid10/_._",
@@ -2756,8 +8208,8 @@
]
},
"System.ComponentModel.Primitives/4.0.0": {
- "sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==",
"type": "package",
+ "sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==",
"files": [
"lib/dotnet/System.ComponentModel.Primitives.dll",
"lib/MonoAndroid10/_._",
@@ -2787,18 +8239,16 @@
]
},
"System.ComponentModel.TypeConverter/4.0.1-beta-23516": {
- "sha512": "VtCI6yLFRU1JcxxLBKRXkqLATN34O98wxjzlbmGV8AuGu9qTMJVeEUCOAGAuwdJRPPU+FYVAJ1Nnw6tNBAtLoQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "qDsYqQxdMF/hu9yTRHYU3qIYmMATKvVeytFd0GEnZwOMrvv5EQj2IhhYccIifukAo7eTfQSMCAZkn9A9XPOtaQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.4/System.ComponentModel.TypeConverter.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.ComponentModel.TypeConverter.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/215bf2c9f189472185ad0a90925bf4ce.psmdcp",
"ref/dotnet5.1/de/System.ComponentModel.TypeConverter.xml",
"ref/dotnet5.1/es/System.ComponentModel.TypeConverter.xml",
"ref/dotnet5.1/fr/System.ComponentModel.TypeConverter.xml",
@@ -2815,21 +8265,21 @@
"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": {
- "sha512": "tzF4Dbbv+5bcbQ7GHuuKafkaDZThiUiwxqCc1ngewnMWZ5YmIgjQZjs+E1DNhoMVAvkH0tSmLJvsDlx9dFg+Aw==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "0YTzoNamTU+6qfZEYtMuGjtkJHB1MEDyFsZ5L/x97GkZO3Bw91uwdPh0DkFwQ6E8KaQTgZAecSXoboUHAcdSLA==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Console.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/0f58e9cc925842d59b2573c5e518453d.psmdcp",
"ref/dotnet5.1/de/System.Console.xml",
"ref/dotnet5.1/es/System.Console.xml",
"ref/dotnet5.1/fr/System.Console.xml",
@@ -2847,12 +8297,14 @@
"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": {
- "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==",
"type": "package",
+ "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==",
"files": [
"lib/dotnet/System.Data.Common.dll",
"lib/MonoAndroid10/_._",
@@ -2882,18 +8334,16 @@
]
},
"System.Diagnostics.Contracts/4.0.1-beta-23516": {
- "sha512": "y8fwR6QS7ZSUzxW2tBULWM2AfyMV/7Hvgm2L5IdcnCEa2fwoNw+bAoGTS7ItuOjS5Yb2sKtJ1QUv8nP42NfgdQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "iG9kHAu2B251lTHH2B4qXjctRkiEuCov8fDiSqZAuqFTMegcZ27wLKWAQxXANs1A5PmqSPzrfro+mBUxqlaCVA==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Diagnostics.Contracts.dll",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Contracts.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
- "package/services/metadata/core-properties/6e469950d54e47c8a060c6fba56b691a.psmdcp",
"ref/dotnet5.1/de/System.Diagnostics.Contracts.xml",
"ref/dotnet5.1/es/System.Diagnostics.Contracts.xml",
"ref/dotnet5.1/fr/System.Diagnostics.Contracts.xml",
@@ -2921,15 +8371,16 @@
"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": {
- "sha512": "eVfSsVOIlL2tZwA24PKduDIGrPXH1OdAnRPhU4q5nGA35kX+vnFtE+IyGfiyShwlC0ldnssmQRAm9mPKmgOpyA==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "wK52HdO2OW7P6hVk/Q9FCnKE9WcTDA3Yio1D8xmeE+6nfOqwWw6d+jVjgn5TSuDghudJK9xq77wseiGa6i7OTQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
@@ -2938,7 +8389,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/1818acf516ba492798a232916904d5ca.psmdcp",
"ref/dotnet5.1/de/System.Diagnostics.Debug.xml",
"ref/dotnet5.1/es/System.Diagnostics.Debug.xml",
"ref/dotnet5.1/fr/System.Diagnostics.Debug.xml",
@@ -2981,29 +8431,30 @@
"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": {
- "sha512": "0uDR/UOmFCNPDCyHEPHhCrk6c1iRnDp00YqwSZ8Qf5aaaJjm4WXnf4Q9xZw4OoApsSiODSypDMdpQU24IxR16A==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "WHVhr5/p8UDjqNV7l9PCxZgOufE2tO4XOWva9pau9c7PzJJTdB1By6scO5dgHLpmlB/u4y27Y9AzT8AqtG8sxw==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"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",
- "package/services/metadata/core-properties/21ac08f53b4443dfb08fe87a841557dc.psmdcp",
+ "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": {
- "sha512": "ASJgVLKEhVUUU64BHj+9141ndCG3Kqk0lHKtUkDvKj9/ROBYtuPiBgBJx74OlZ28CSmiLZXIvADW+XM5E9BoUg==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "yuZ7s6ttGN7RHK/RRWIz/O7yctfBLUFCUZYcwB4ZrKI6gmwfdGI5wlrNEV1IJe3dW4t+Xh1F+eaQu7FZdW8lcA==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Diagnostics.StackTrace.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -3011,7 +8462,6 @@
"lib/netcore50/System.Diagnostics.StackTrace.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/4c93c44390354f0fa39e6d2e212bc1c6.psmdcp",
"ref/dotnet5.1/de/System.Diagnostics.StackTrace.xml",
"ref/dotnet5.1/es/System.Diagnostics.StackTrace.xml",
"ref/dotnet5.1/fr/System.Diagnostics.StackTrace.xml",
@@ -3029,22 +8479,22 @@
"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": {
- "sha512": "tbiK8p/MW8s15iO7oAVdFHRM1VkEuj6s0wC0W6N3aRcWxJm7Hta+x0aoBmO2ukm16rTKT+YhCTxbsz9SQxJ84Q==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "E8oQK7C7tScD+2oTpsx36a60BWTjBpw/RLzoll4niFX39EF/ZBCYhRx7SoniwF9ql3iKG0UWY/p0VmaCh/Y9Nw==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Diagnostics.Tools.dll",
"lib/net45/_._",
"lib/netcore50/System.Diagnostics.Tools.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
- "package/services/metadata/core-properties/5e5c0153e6db47ba9651e2ff02ef79e8.psmdcp",
"ref/dotnet5.1/de/System.Diagnostics.Tools.xml",
"ref/dotnet5.1/es/System.Diagnostics.Tools.xml",
"ref/dotnet5.1/fr/System.Diagnostics.Tools.xml",
@@ -3072,21 +8522,21 @@
"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": {
- "sha512": "gvJNxObthiaV07AKZYjQV69xRBKRR7gTpEVe4qXF4Mta/2zD7sI+Zm//rRCQenLYBuL8nBxVzomtYJ4eT7w8QQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "OIWB5pvMqOdCraAtiJBhRahrsnP2sNaXbCZNdAadzwiPLzRI7EvLTc7/NlkFDxm3I6YKVGxnJ5aO+YJ/XPC8yw==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Diagnostics.TraceSource.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/298a8a420a424b1789a772a00442b482.psmdcp",
"ref/dotnet5.1/de/System.Diagnostics.TraceSource.xml",
"ref/dotnet5.1/es/System.Diagnostics.TraceSource.xml",
"ref/dotnet5.1/fr/System.Diagnostics.TraceSource.xml",
@@ -3104,12 +8554,14 @@
"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": {
- "sha512": "tzqQJPgD4bKs0eE5Gx9HEsxiHSBGcL42PImkjhwXTQK6iQbLTTB9mi+G7mUyEjlH8LUcm7F5QHEs+O+LpruOrQ==",
"type": "package",
+ "sha512": "tzqQJPgD4bKs0eE5Gx9HEsxiHSBGcL42PImkjhwXTQK6iQbLTTB9mi+G7mUyEjlH8LUcm7F5QHEs+O+LpruOrQ==",
"files": [
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -3154,8 +8606,8 @@
]
},
"System.Diagnostics.Tracing/4.0.20": {
- "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==",
"type": "package",
+ "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==",
"files": [
"lib/DNXCore50/System.Diagnostics.Tracing.dll",
"lib/MonoAndroid10/_._",
@@ -3187,11 +8639,10 @@
]
},
"System.Dynamic.Runtime/4.0.11-beta-23516": {
- "sha512": "C2GXB20I5vMcO4wemZr5pEjwwEb6H6zVkwF12JSUhripKBIKgI0YKpfp9glyDSL903cYgIXAztMQDajwCR0PmA==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "ypkxS0e+yUw7F6JEwuB22u0qqruMeZFOmtcImh2efDHpTAuhF2FOqCDJ7f4qLf9yomVvB4kjkZ6xGunbIQryxQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Dynamic.Runtime.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -3202,7 +8653,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/623f8cb6291545b4b8953983466a399d.psmdcp",
"ref/dotnet5.1/de/System.Dynamic.Runtime.xml",
"ref/dotnet5.1/es/System.Dynamic.Runtime.xml",
"ref/dotnet5.1/fr/System.Dynamic.Runtime.xml",
@@ -3245,15 +8695,16 @@
"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": {
- "sha512": "jctanC1VveBFsgOysiqFN/HH0qX+EvLNelcBU6Fb4w7m3BBu827k8RCNiwW+uAC5f5XZBTRpsXZk4cI15RCdYQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "htoF4cS3WhCkU3HloMj3mz+h2FHnF8Hz0po/26otT5e46LlJ8p7LpFpxckxVviyYg9Fab9gr8aIB0ZDN9Cjpig==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Globalization.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -3264,7 +8715,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/b8ba15c002a848bba072fd7ed97e386a.psmdcp",
"ref/dotnet5.1/de/System.Globalization.xml",
"ref/dotnet5.1/es/System.Globalization.xml",
"ref/dotnet5.1/fr/System.Globalization.xml",
@@ -3307,21 +8757,54 @@
"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": {
- "sha512": "OUVMFv3m0OEn+p0CsKbLc9hUaRMXC4lYy/9DOynbPsbYNom98ZfDn5YaiMnXUvAufdSgfxxHm4kAUsiQsQ8YRA==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "fRlxcftQ0sxalExgrmSp3AL6srJJQQfuLEoGKQbMAWmaeK0/KkshB01hMWVVuQ36bOg3Alr+By9v2ULsIOLRkw==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Globalization.Extensions.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/ffb537f9e5224306bf675da568e104be.psmdcp",
"ref/dotnet5.1/de/System.Globalization.Extensions.xml",
"ref/dotnet5.1/es/System.Globalization.Extensions.xml",
"ref/dotnet5.1/fr/System.Globalization.Extensions.xml",
@@ -3339,15 +8822,16 @@
"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": {
- "sha512": "6nJmAk4vYjN+5/haenkKk/BDGCOKw5pk5EjXAOvBnUM5PFIfO8JwUxGbcveOD4vV5Vb6TAxrmRmts/7F+BEuEw==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "dR1DaWrF0zsV2z/GVs8xVvMds6xu0ykuwv+VPou8wbpJ1XxGBK9g6v5F84DWL8Q1qi+6Kyb56wbZYdYQO8OMew==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.IO.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -3358,7 +8842,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/efaeee59930e4aed94a20e7a881a929b.psmdcp",
"ref/dotnet5.1/de/System.IO.xml",
"ref/dotnet5.1/es/System.IO.xml",
"ref/dotnet5.1/fr/System.IO.xml",
@@ -3401,12 +8884,14 @@
"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": {
- "sha512": "zICw1/9Hmsv6JiU3RHPzwKf3py7pyO6vCmZQDjuTCgjRQuDPYG4ok/7X6nWX+CXhgVpq8wEnkXh9DmRwlltQ5g==",
"type": "package",
+ "sha512": "zICw1/9Hmsv6JiU3RHPzwKf3py7pyO6vCmZQDjuTCgjRQuDPYG4ok/7X6nWX+CXhgVpq8wEnkXh9DmRwlltQ5g==",
"files": [
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -3431,17 +8916,15 @@
]
},
"System.IO.FileSystem/4.0.1-beta-23516": {
- "sha512": "xggWMgLzKnBisYTx5HW3og8qRR7TjmorQAdsAQOaMcY4I9CQA6JUxw0r2AvCC1+ToXh0CuO7J6dymX33pkmwbA==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "KOYNQ6FeLQh0HdHVlp6IRjRGPCjyFvZRKfhYSDFi7DR0EHY3cC2rvfVj5HWJEW5KlSaa01Ct25m06yVnqSxwOQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/0495a7c996a24c39b8f6cfaaf186e223.psmdcp",
"ref/dotnet5.4/de/System.IO.FileSystem.xml",
"ref/dotnet5.4/es/System.IO.FileSystem.xml",
"ref/dotnet5.4/fr/System.IO.FileSystem.xml",
@@ -3459,22 +8942,22 @@
"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": {
- "sha512": "GQF2ywO/+KYLvxwkJZxAWT/FqX8HjntDj94nNcXtoUDKi8UBpfGpuMKqEsCfl5XRfbzxPnDPZAE+7wDVubUiCQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "vaT0Coz/K9ZnuxyF50D541F9N7LmHCZJZ1RgFmBAB2T4A8U+WLrtdBrmA6jf2hl/aS7+RInYOfJ1cpDFErTbfQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.4/System.IO.FileSystem.Primitives.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/fb2b560794ac46ccba456f10e3831ea5.psmdcp",
"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",
@@ -3491,21 +8974,21 @@
"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": {
- "sha512": "y56ajBzgm7FQ2iVfB6+ylAYBwtZ/6X10/ripP5/rIQpea76JAEAyAmvU19mIYBUXzQu46Fn9MnMpBh2FcMRfiA==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "PYd9QHNlSf3ZnQEYFX2foGxkdKY5J8mTjdI0axB+XqiJgXRSiV4htrreKGDl7Wpu/RNjLProqQsLft039ALypw==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.IO.FileSystem.Watcher.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/70d186cb125b4af1bffa98e0bc719c9e.psmdcp",
"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",
@@ -3523,22 +9006,22 @@
"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": {
- "sha512": "AJaoyeAHLpurbTWnmvOhK/QC2sswKJrIA5RlPea+UdfXpHOw3srPNEPpseZDMV/EviVqAwUfFNkc5QxpGZtsLA==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "uNxm2RB+kMeiKnY26iPvOtJLzTzNaAF4A2qqyzev6j8x8w2Dr+gg7LF7BHCwC55N7OirhHrAWUb3C0n4oi9qYw==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.4/System.Linq.dll",
"lib/net45/_._",
"lib/netcore50/System.Linq.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
- "package/services/metadata/core-properties/33b76715f2af4d43b8dbed2b46a22c7c.psmdcp",
"ref/dotnet5.1/de/System.Linq.xml",
"ref/dotnet5.1/es/System.Linq.xml",
"ref/dotnet5.1/fr/System.Linq.xml",
@@ -3565,15 +9048,16 @@
"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": {
- "sha512": "FtKytB13HabzrSvrAgBgOOnG2uxJO4s7zvP5Sk0NS3bwbJUyb5AP1p4897UWnLiB6C95jI4nIkZps51sa9In8g==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "YEl5oyF5fifLbHHP099cvb/6f2r2h1QVHzoaoINPHOZtpNec+RfqvzETXcYDIdHT7l+bBAYsBuVUkBgfQEoYfQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
@@ -3582,7 +9066,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/312fdd2d56a94afa9a55f7b5804bb174.psmdcp",
"ref/dotnet5.1/de/System.Linq.Expressions.xml",
"ref/dotnet5.1/es/System.Linq.Expressions.xml",
"ref/dotnet5.1/fr/System.Linq.Expressions.xml",
@@ -3625,12 +9108,14 @@
"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": {
- "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==",
"type": "package",
+ "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==",
"files": [
"lib/dotnet/System.Linq.Queryable.dll",
"lib/net45/_._",
@@ -3661,8 +9146,8 @@
]
},
"System.Net.Http/4.0.0": {
- "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==",
"type": "package",
+ "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==",
"files": [
"lib/DNXCore50/System.Net.Http.dll",
"lib/net45/_._",
@@ -3691,11 +9176,10 @@
]
},
"System.Net.Primitives/4.0.11-beta-23516": {
- "sha512": "e6bYgPSmo1n/+Ccef2OxFm5gyvhGvw/+Zvsh09iOfLNOutr/2ker4IsxC+3VMVDZc/3/glc4iOfuB5x59HzzHQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "lEMwORLJNk7tEAO+4RJ/aPjF2KlismwYxCYgqJZza3ArRznAqrzKeCpcnBlo3zJPHjR1tSNhRWk9SLRGGV2K3Q==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
@@ -3704,7 +9188,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/1f8e4058bcc1441f98f9d60892892c3a.psmdcp",
"ref/dotnet5.1/de/System.Net.Primitives.xml",
"ref/dotnet5.1/es/System.Net.Primitives.xml",
"ref/dotnet5.1/fr/System.Net.Primitives.xml",
@@ -3758,12 +9241,14 @@
"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": {
- "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==",
"type": "package",
+ "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==",
"files": [
"lib/dotnet/System.Net.Requests.dll",
"lib/MonoAndroid10/_._",
@@ -3793,8 +9278,8 @@
]
},
"System.Net.Sockets/4.0.0": {
- "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==",
"type": "package",
+ "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==",
"files": [
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -3824,8 +9309,8 @@
]
},
"System.Net.WebHeaderCollection/4.0.0": {
- "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==",
"type": "package",
+ "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==",
"files": [
"lib/dotnet/System.Net.WebHeaderCollection.dll",
"lib/MonoAndroid10/_._",
@@ -3855,18 +9340,16 @@
]
},
"System.Net.WebSockets/4.0.0-beta-23516": {
- "sha512": "1HTK/ncmLrpKvooNRBIr6EgUY550tMM0hXh/84Ni6bc2Ia8ySGwc3UkLga27GKHSymslU7zCtFzc1UAxqxNeIw==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "aMSs8kyRS5CNa20h8XWv6IOcZHqOZOHBO/rEOjP+rS+dOmn0tBu5zhJJdkhzb4GS9qAikjwc7UXB0MK3LnuBTA==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.4/System.Net.WebSockets.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Net.WebSockets.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/31fdbaea791f4ec88dda6865f3d489b1.psmdcp",
"ref/dotnet5.1/de/System.Net.WebSockets.xml",
"ref/dotnet5.1/es/System.Net.WebSockets.xml",
"ref/dotnet5.1/fr/System.Net.WebSockets.xml",
@@ -3883,12 +9366,14 @@
"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": {
- "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==",
"type": "package",
+ "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==",
"files": [
"lib/dotnet/System.ObjectModel.dll",
"lib/MonoAndroid10/_._",
@@ -3918,8 +9403,8 @@
]
},
"System.Private.DataContractSerialization/4.0.0": {
- "sha512": "uQvzoXHXHn/9YqUmPtgD8ZPJIlBuuL3QHegbuik97W/umoI28fOnGLnvjRHhju1VMWvFLRQoh7uZkBaoZ+KpVQ==",
"type": "package",
+ "sha512": "uQvzoXHXHn/9YqUmPtgD8ZPJIlBuuL3QHegbuik97W/umoI28fOnGLnvjRHhju1VMWvFLRQoh7uZkBaoZ+KpVQ==",
"files": [
"lib/DNXCore50/System.Private.DataContractSerialization.dll",
"lib/netcore50/System.Private.DataContractSerialization.dll",
@@ -3932,9 +9417,23 @@
"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": {
- "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==",
"type": "package",
+ "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==",
"files": [
"lib/DNXCore50/System.Private.ServiceModel.dll",
"lib/netcore50/System.Private.ServiceModel.dll",
@@ -3946,8 +9445,8 @@
]
},
"System.Private.Uri/4.0.1-beta-23516": {
- "sha512": "PISxTW5FSZw8cQ8DOvq2pHHz48mok3ex0/QU2gcHG5PACvobxaXQl2oR345vqOx6C15l10bJPVkKZlgi2Ic4KQ==",
"type": "package",
+ "sha512": "PISxTW5FSZw8cQ8DOvq2pHHz48mok3ex0/QU2gcHG5PACvobxaXQl2oR345vqOx6C15l10bJPVkKZlgi2Ic4KQ==",
"files": [
"ref/dnxcore50/_._",
"ref/netcore50/_._",
@@ -3958,8 +9457,8 @@
]
},
"System.Reflection/4.1.0-beta-23225": {
- "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==",
"type": "package",
+ "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==",
"files": [
"lib/DNXCore50/System.Reflection.dll",
"lib/MonoAndroid10/_._",
@@ -3981,8 +9480,8 @@
]
},
"System.Reflection.DispatchProxy/4.0.0": {
- "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==",
"type": "package",
+ "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==",
"files": [
"lib/DNXCore50/System.Reflection.DispatchProxy.dll",
"lib/MonoAndroid10/_._",
@@ -4014,8 +9513,8 @@
]
},
"System.Reflection.Emit/4.0.0": {
- "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==",
"type": "package",
+ "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==",
"files": [
"lib/DNXCore50/System.Reflection.Emit.dll",
"lib/MonoAndroid10/_._",
@@ -4042,8 +9541,8 @@
]
},
"System.Reflection.Emit.ILGeneration/4.0.0": {
- "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==",
"type": "package",
+ "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==",
"files": [
"lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll",
"lib/net45/_._",
@@ -4067,19 +9566,43 @@
"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": {
- "sha512": "Ph0ELqqqz218bGEtnfQ1xegANVQ3v0S/hU12AHpb4HEw8SESssbNCKWEVjeI3y2xDYaVx1aVjM4hZ1QXa4IonQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "CiaYbkU2dzOSTSB7X/xLvlae3rop8xz62XjflUSnyCaRPB5XaQR4JasHW07/lRKJowt67Km7K1LMpYEmoRku8w==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Reflection.Extensions.dll",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Extensions.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
- "package/services/metadata/core-properties/6cb962d474a142a883ced803cc254205.psmdcp",
"ref/dotnet5.1/de/System.Reflection.Extensions.xml",
"ref/dotnet5.1/es/System.Reflection.Extensions.xml",
"ref/dotnet5.1/fr/System.Reflection.Extensions.xml",
@@ -4107,12 +9630,14 @@
"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": {
- "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==",
"type": "package",
+ "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==",
"files": [
"lib/DNXCore50/System.Reflection.Primitives.dll",
"lib/net45/_._",
@@ -4144,8 +9669,8 @@
]
},
"System.Reflection.TypeExtensions/4.0.1-beta-23409": {
- "sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==",
"type": "package",
+ "sha512": "n8m144jjCwhN/qtLih35a2sO33fLWm1U3eg51KxqAcAjJcw0nq1zWie8FZognBTPv7BXdW/G8xGbbvDGFoJwZA==",
"files": [
"lib/DNXCore50/de/System.Reflection.TypeExtensions.xml",
"lib/DNXCore50/es/System.Reflection.TypeExtensions.xml",
@@ -4217,18 +9742,16 @@
]
},
"System.Resources.ResourceManager/4.0.1-beta-23516": {
- "sha512": "KLzhgVk6aZDbU3jU+zGN3gGIU6hlhPyA8hwGqB1FmJRs/lJl7o9td34+5xm3Mk1va5vHEO8+cRj7te9WdNalHQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "d1PiB1k57GP5EJZJKnJ+LgrOQCgHPnn5oySQAy4pL2MpEDDpTyTPKv+q9aRWUA25ICXaHkWJzeTkj898ePteWQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Resources.ResourceManager.dll",
"lib/net45/_._",
"lib/netcore50/System.Resources.ResourceManager.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
- "package/services/metadata/core-properties/34a1b72bfe32447aa4fff3d5e9b15f2f.psmdcp",
"ref/dotnet5.1/de/System.Resources.ResourceManager.xml",
"ref/dotnet5.1/es/System.Resources.ResourceManager.xml",
"ref/dotnet5.1/fr/System.Resources.ResourceManager.xml",
@@ -4256,15 +9779,16 @@
"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": {
- "sha512": "ToYWwDgwR8fR9/8aaV+7PMFBfG2tEgGWED0l9OC9DQieaKEMAzXV3c6fOkK8FTd9YPjFcYnvx73tg21w6GuNDA==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "R174ctQjJnCIVxA2Yzp1v68wfLfPSROZWrbaSBcnEzHAQbOjprBQi37aWdr5y05Pq2J/O7h6SjTsYhVOLdiRYQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Runtime.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -4275,7 +9799,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/8fbc3a0338544fbabc852e6d9cc59da5.psmdcp",
"ref/dotnet5.1/de/System.Runtime.xml",
"ref/dotnet5.1/es/System.Runtime.xml",
"ref/dotnet5.1/fr/System.Runtime.xml",
@@ -4329,15 +9852,16 @@
"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": {
- "sha512": "mpKQVIySlFSvgQkeb9qvXxHOY3jV7H9x5DmPSeNac0APFOG9ROufrMozY3VP/GxBWu4AVS/HDG1lUxg/riE4ew==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "HX4wNPrcCV9D+jpbsJCRPuVJbcDM+JobSotQWKq40lCq0WJbJi+0lNQ/T1zHEdWcf4W2PmtMkug1rW7yKW9PiQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
@@ -4346,7 +9870,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/c0c6896d10344231aae6771e7adbaa70.psmdcp",
"ref/dotnet5.1/de/System.Runtime.Extensions.xml",
"ref/dotnet5.1/es/System.Runtime.Extensions.xml",
"ref/dotnet5.1/fr/System.Runtime.Extensions.xml",
@@ -4389,12 +9912,14 @@
"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": {
- "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==",
"type": "package",
+ "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==",
"files": [
"lib/DNXCore50/System.Runtime.Handles.dll",
"lib/MonoAndroid10/_._",
@@ -4426,11 +9951,10 @@
]
},
"System.Runtime.InteropServices/4.0.21-beta-23516": {
- "sha512": "3QodORMX/J/HMQgeBf62yYLESn4g+Gl9XGKEoFNCHGUb03yWqpSVPOD0gSksyb661kRdxR5K4/7I9xjz/GxkRg==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "XRWX4yFPKQ3t3hbPReLB9d2ViTuGqMLYHGcuWteIYgoIaKtHp7Uae2xHjiUG/QZbVN6vUp+KnL04aIi5dOj8lQ==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Runtime.InteropServices.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -4440,7 +9964,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/4340374a74de4748a2c3453f3fa43c06.psmdcp",
"ref/dotnet5.2/de/System.Runtime.InteropServices.xml",
"ref/dotnet5.2/es/System.Runtime.InteropServices.xml",
"ref/dotnet5.2/fr/System.Runtime.InteropServices.xml",
@@ -4493,12 +10016,45 @@
"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": {
- "sha512": "Dsl95PE2vyGIy9voclfTVKSqYD8O4PjsMS+TV0bM3N1xNraS2BBaChGk1stGmf04cn2/xA3cZyh80bkZL+v1/Q==",
"type": "package",
+ "sha512": "Dsl95PE2vyGIy9voclfTVKSqYD8O4PjsMS+TV0bM3N1xNraS2BBaChGk1stGmf04cn2/xA3cZyh80bkZL+v1/Q==",
"files": [
"lib/dotnet5.4/System.Runtime.Serialization.Primitives.dll",
"lib/MonoAndroid10/_._",
@@ -4557,8 +10113,8 @@
]
},
"System.Runtime.Serialization.Xml/4.0.10": {
- "sha512": "xsy7XbH8RTpKoDPNcibSGCOpujsmwUmOWAby3PssqkZFpLBXUbDO2s6JKITRjxejET2g0PK8t+mdIvu3xmUuKA==",
"type": "package",
+ "sha512": "xsy7XbH8RTpKoDPNcibSGCOpujsmwUmOWAby3PssqkZFpLBXUbDO2s6JKITRjxejET2g0PK8t+mdIvu3xmUuKA==",
"files": [
"lib/DNXCore50/System.Runtime.Serialization.Xml.dll",
"lib/MonoAndroid10/_._",
@@ -4590,18 +10146,16 @@
]
},
"System.Security.Claims/4.0.1-beta-23516": {
- "sha512": "uDov+92UOm6t5mShVsXoJa1HIPtxYSsF5sVc+d5WDw+GzgJEw5+VF8NZL0a1mSvvBh3epHdx+MLSrpovcPmcSw==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "+BDgRxwI4ClDxkLgNof/FdUF92U3+phdvsIT/CX8Ym3iOrughd7tMJIlGYzQrJSIp+0+ivHgWvOb5ytmPAgJhw==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.4/System.Security.Claims.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Claims.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/7a60fac1e11e48c68e112316dba00c2a.psmdcp",
"ref/dotnet5.1/de/System.Security.Claims.xml",
"ref/dotnet5.1/es/System.Security.Claims.xml",
"ref/dotnet5.1/fr/System.Security.Claims.xml",
@@ -4618,21 +10172,21 @@
"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": {
- "sha512": "h0t6XvR47THFihonJfk2aC3m2YQ94hzF0bFBE9Zgs4td+G+NgIuRmIdGQMFKv3sH7jX5ItOLq/K7uX9M6dvlgQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "yvMpzC6Cd/UBHB3LU4z4jorW8nuitQfG171R8INxoUtNTZPBUmVhW4MW4adQYmwZ9IJ5C5rxnXKNfsvF5g9eog==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Algorithms.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/a91ebe339acb4c719284a4ca725aadbe.psmdcp",
"ref/dotnet5.1/System.Security.Cryptography.Algorithms.dll",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
@@ -4640,21 +10194,57 @@
"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": {
- "sha512": "XSlFRqbEojrHSEffTWFLw7iPa3ZclvAJ/yjBNoCKr4F/xXvqPu4jcDeSb2loWhLTQkwRJR1AM/U7d0EHU6gxhw==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "UQxu43zAZI+UIaiUCrBKnmF4A7RLDBYUgms37iSYfNvEkBAIzrAsoRKaSMocIRI1bq58ULVO2NCqMnt2qWOnoA==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Encoding.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/12c31ab18e464f098e9ebef90fe38418.psmdcp",
"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",
@@ -4672,43 +10262,43 @@
"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": {
- "sha512": "ztiLIQf2hl0ljLzaUeCx5tk+TU8TrHwrEatuKgSl2KoZXxeOCeXnB+oE07xQO7RnnMlPLtX7/ucHQtteh9du7A==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "YEHmq6x6u2grEuZFAX9au+6uY8SCIkA6lu4wbrt2C71RFQKWEyO5G9+pk1v0QcNPqay/38aSm9v/BoTFNQii1Q==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.4/System.Security.Cryptography.Primitives.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.Primitives.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/505b312a573e4430bca3951f7bbbff5a.psmdcp",
"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": {
- "sha512": "yIZEPChGR0OcuBjjDPm+CcwPW5HQgRQ2JQrbdRRWaYKI0p9BfbyUbQOb9te26BnBj4WFgFd5zlSxHlW3oX2BkQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "IHh/XFAiku2Xih0WCN4LsZ4QC5bAiq0Qb+SIkiKHBSTHXDtQJNBuMoTZUSr51uIfuw/Fep3sW04rH4cxXmO36w==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Security.Cryptography.X509Certificates.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/75f7d90e6932442db6b7205d7e6a8bbd.psmdcp",
"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",
@@ -4726,22 +10316,22 @@
"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": {
- "sha512": "mtaQ15TSkjSJRgeET8h41QJQzfXCJjfQsvD5QfZ2oPQq943hM9j6ZRcdBYZ6EtjhC2IXRMUWnrMCFGGNeDLRYQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "gErwOwetybJxJgsFuNS8H55BzQxfwHG+yZ0MjzK6Bz1rsNEIBit2e5A+uU/aQirImohcQpKNL902zMDzu8fLag==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.1/System.Security.Principal.dll",
"lib/net45/_._",
"lib/netcore50/System.Security.Principal.dll",
"lib/win8/_._",
"lib/wp80/_._",
"lib/wpa81/_._",
- "package/services/metadata/core-properties/1e3fda229e8d489781d6e008b37c96cc.psmdcp",
"ref/dotnet5.1/de/System.Security.Principal.xml",
"ref/dotnet5.1/es/System.Security.Principal.xml",
"ref/dotnet5.1/fr/System.Security.Principal.xml",
@@ -4768,12 +10358,14 @@
"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": {
- "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==",
"type": "package",
+ "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==",
"files": [
"lib/DNXCore50/System.ServiceModel.Primitives.dll",
"lib/net45/_._",
@@ -4800,11 +10392,10 @@
]
},
"System.Text.Encoding/4.0.11-beta-23516": {
- "sha512": "OnM2cqPXeOKF8cwgIAygYeCSKsJL7gjBDi3tI8lEaJSdnt4nM3/k4i1+p73oXn8a8tEcFRNvrvNuqsdqxYixXQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "gk4da/Y3VReZpIeQ3UDTCknbkO/FuYKOJtP+5+Vtc07mTcPHvhgbZLXEGTTneP6yWPDWTTh20nZZMF/19YsRtA==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Text.Encoding.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -4815,7 +10406,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/d0a356ed64de4269b28123a6591dd03e.psmdcp",
"ref/dotnet5.1/de/System.Text.Encoding.xml",
"ref/dotnet5.1/es/System.Text.Encoding.xml",
"ref/dotnet5.1/fr/System.Text.Encoding.xml",
@@ -4858,12 +10448,14 @@
"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": {
- "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==",
"type": "package",
+ "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==",
"files": [
"lib/DNXCore50/System.Text.Encoding.Extensions.dll",
"lib/MonoAndroid10/_._",
@@ -4895,11 +10487,10 @@
]
},
"System.Text.RegularExpressions/4.0.11-beta-23516": {
- "sha512": "ZtarWBvDF7R6pRqo1jxo+uV46Rzxht8rRTe+qSHrr6SLLiZRL4RMncU+mDEn81wF+WL+v81ug20lnssHNHlV+Q==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "Iz3942FXA47VxsuJTBq4aA/gevsbdMhyUnQD6Y0aHt57oP6KAwZLaxVtrRzB03yxh6oGBlvQfxBlsXWnLLj4gg==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/dotnet5.4/System.Text.RegularExpressions.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -4910,7 +10501,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/df1f4be0b63f4095811c9be8b456680b.psmdcp",
"ref/dotnet5.1/de/System.Text.RegularExpressions.xml",
"ref/dotnet5.1/es/System.Text.RegularExpressions.xml",
"ref/dotnet5.1/fr/System.Text.RegularExpressions.xml",
@@ -4952,15 +10542,16 @@
"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": {
- "sha512": "vZNXMOIwejg9jS/AkkCs43BIDrzONbT43yhU7X2217Ypi9EZN5X16DwtqBD7eMjDBsA23IRZxuugzUnV8icaxQ==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "AiuvOzOo6CZpIIw3yGJZcs3IhiCZcy0P/ThubazmWExERHJZoOnD/jB+Bn2gxTAD0rc/ytrRdBur9PuX6DvvvA==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
@@ -4969,7 +10560,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/2cba609b43834beca4d5f01f7d21858c.psmdcp",
"ref/dotnet5.1/de/System.Threading.xml",
"ref/dotnet5.1/es/System.Threading.xml",
"ref/dotnet5.1/fr/System.Threading.xml",
@@ -5012,15 +10602,41 @@
"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": {
- "sha512": "kO+GZsJrZO+G7DA4xSuDZXaE1haJWia6TdzMt3xt9oTgh5GQ4bwI6UqBUVKhdTKxC3TI+snsbHXPy2+Qmd6i0g==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "xjN0l+GsHEdV3G2lKF7DnH7kEM2OXoWq56jcvByNaiirrs1om5RyI6gwX7F4rTbkf8eZk1pjg01l4CI3nLyTKg==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Threading.Tasks.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
@@ -5031,7 +10647,6 @@
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/ee9e8134c1614a6cb15212d827efdaa0.psmdcp",
"ref/dotnet5.1/de/System.Threading.Tasks.xml",
"ref/dotnet5.1/es/System.Threading.Tasks.xml",
"ref/dotnet5.1/fr/System.Threading.Tasks.xml",
@@ -5074,22 +10689,22 @@
"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": {
- "sha512": "/yo7KuZ9zLrB3hdWARrvus3YTAdvvuqHWf2oMNpyG1mpoVlmhRwkZ9JqYRC+TL3hSFHa7mvHa8EItA+BBahlsA==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "2a5k/EmBXNiIoQZ8hk32KjoCVs1E5OdQtqJCHcW4qThmk+m/siQgB7zYamlRBeQ5zJs7c1l4oN/y5+YRq8oQ2Q==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Threading.Thread.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Threading.Thread.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/a9783b4061e042cead315b30f518c65d.psmdcp",
"ref/dotnet5.1/de/System.Threading.Thread.xml",
"ref/dotnet5.1/es/System.Threading.Thread.xml",
"ref/dotnet5.1/fr/System.Threading.Thread.xml",
@@ -5106,22 +10721,22 @@
"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": {
- "sha512": "s7KzGX8skWrj2raEEWt/qbMUPZJuHlwW6XP1fC4yltuX+6FqPA/D5fag8Q0/TsbcCcC8Q50+fULuHjlCNeblow==",
- "type": "Package",
+ "type": "package",
+ "serviceable": true,
+ "sha512": "xDTdxmxDAfIMrbANWXQih80yOTbyXhU5z/2P15n3EuyJOetqKKVWEXouoD8bV25RzJHuB2rHMTZhUmbtLmEpwA==",
"files": [
- "[Content_Types].xml",
- "_rels/.rels",
"lib/DNXCore50/System.Threading.ThreadPool.dll",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net46/System.Threading.ThreadPool.dll",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
- "package/services/metadata/core-properties/0fd61154fa6341e5aded57bf0aabc3e5.psmdcp",
"ref/dotnet5.2/de/System.Threading.ThreadPool.xml",
"ref/dotnet5.2/es/System.Threading.ThreadPool.xml",
"ref/dotnet5.2/fr/System.Threading.ThreadPool.xml",
@@ -5138,12 +10753,14 @@
"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": {
- "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==",
"type": "package",
+ "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==",
"files": [
"lib/DNXCore50/System.Threading.Timer.dll",
"lib/net451/_._",
@@ -5173,8 +10790,8 @@
]
},
"System.Xml.ReaderWriter/4.0.10": {
- "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==",
"type": "package",
+ "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==",
"files": [
"lib/dotnet/System.Xml.ReaderWriter.dll",
"lib/MonoAndroid10/_._",
@@ -5204,8 +10821,8 @@
]
},
"System.Xml.XmlDocument/4.0.1-beta-23516": {
- "sha512": "4gaHGHF5YfchhO6pqz2LtfcejCd+XpsVc1m9js78JequgYT6UihV+j6T0hZN/xb8rloHsAJTf8jZaFOLDY8msw==",
"type": "package",
+ "sha512": "4gaHGHF5YfchhO6pqz2LtfcejCd+XpsVc1m9js78JequgYT6UihV+j6T0hZN/xb8rloHsAJTf8jZaFOLDY8msw==",
"files": [
"lib/dotnet5.4/System.Xml.XmlDocument.dll",
"lib/MonoAndroid10/_._",
@@ -5235,8 +10852,8 @@
]
},
"System.Xml.XmlSerializer/4.0.10": {
- "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==",
"type": "package",
+ "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==",
"files": [
"lib/DNXCore50/System.Xml.XmlSerializer.dll",
"lib/MonoAndroid10/_._",
@@ -5271,23 +10888,23 @@
},
"projectFileDependencyGroups": {
"": [],
- ".NETFramework,Version=v4.5.1": [
- "Microsoft.AspNet.Hosting >= 1.0.0-rc1-final",
+ "DNXCore,Version=v5.0": [
"Microsoft.CSharp >= 4.0.1-beta-23516",
- "NLog >= 4.4.0-alpha1",
"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"
- ],
- "DNXCore,Version=v5.0": [
+ "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",
- "NLog >= 4.4.0-alpha1",
"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"
+ "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.aspnet5.sln b/NLog.Web.aspnet5.sln
index a7ed6b74..f3a7c3bd 100644
--- a/NLog.Web.aspnet5.sln
+++ b/NLog.Web.aspnet5.sln
@@ -3,9 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
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}"
- ProjectSection(SolutionItems) = preProject
- NLog.Web\global.json = NLog.Web\global.json
- EndProjectSection
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "NLog.Web.aspnet5", "NLog.Web.ASPNET5\NLog.Web.aspnet5.xproj", "{74D5915B-BEA9-404C-B4D0-B663164DEF37}"
EndProject
From 85cc09bee27db5db35757f9e9cecad81d3098539 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 14 Feb 2016 23:35:02 +0100
Subject: [PATCH 15/21] Move assemblyinfo.cs
---
NLog.Web.Tests/NLog.Web.Tests.csproj | 4 ++--
.../Properties/AssemblyInfo.cs | 0
NLog.Web/NLog.Web.csproj | 2 +-
{NLog.Web.ASPNET5 => NLog.Web}/Properties/AssemblyInfo.cs | 0
4 files changed, 3 insertions(+), 3 deletions(-)
rename {NLog.Web.ASPNET5.Tests => NLog.Web.Tests}/Properties/AssemblyInfo.cs (100%)
rename {NLog.Web.ASPNET5 => NLog.Web}/Properties/AssemblyInfo.cs (100%)
diff --git a/NLog.Web.Tests/NLog.Web.Tests.csproj b/NLog.Web.Tests/NLog.Web.Tests.csproj
index 8ad0e8cf..98c3ccd9 100644
--- a/NLog.Web.Tests/NLog.Web.Tests.csproj
+++ b/NLog.Web.Tests/NLog.Web.Tests.csproj
@@ -1,4 +1,4 @@
-
+
@@ -87,7 +87,7 @@
-
+
diff --git a/NLog.Web.ASPNET5.Tests/Properties/AssemblyInfo.cs b/NLog.Web.Tests/Properties/AssemblyInfo.cs
similarity index 100%
rename from NLog.Web.ASPNET5.Tests/Properties/AssemblyInfo.cs
rename to NLog.Web.Tests/Properties/AssemblyInfo.cs
diff --git a/NLog.Web/NLog.Web.csproj b/NLog.Web/NLog.Web.csproj
index 3dd8c52b..0cee3f6b 100644
--- a/NLog.Web/NLog.Web.csproj
+++ b/NLog.Web/NLog.Web.csproj
@@ -67,9 +67,9 @@
-
+
diff --git a/NLog.Web.ASPNET5/Properties/AssemblyInfo.cs b/NLog.Web/Properties/AssemblyInfo.cs
similarity index 100%
rename from NLog.Web.ASPNET5/Properties/AssemblyInfo.cs
rename to NLog.Web/Properties/AssemblyInfo.cs
From 8215734b297f68865bdc8e887ecfafe63b4435e2 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Sun, 14 Feb 2016 23:36:47 +0100
Subject: [PATCH 16/21] Update project info
---
NLog.Web.ASPNET5/project.json | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/NLog.Web.ASPNET5/project.json b/NLog.Web.ASPNET5/project.json
index 8e85e87d..0b0dcbdc 100644
--- a/NLog.Web.ASPNET5/project.json
+++ b/NLog.Web.ASPNET5/project.json
@@ -1,8 +1,8 @@
{
- "version": "4.3.0",
- "summary": "NLog - Advanced .NET and Silverlight Logging",
- "description": "NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. This package installs NLog.dll with includes core logging functionality. For your main project also need to install 'NLog Configuration' package.",
+ "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",
@@ -15,7 +15,7 @@
},
"title": "NLog.Web.ASPNET5",
-
+
"frameworks": {
"dnxcore50": {
"compilationOptions": { "define": [ "DOTNET5_4", "DNX" ] },
From ac2d28ed61de9d446211143110cbc9dd1310c49f Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Mon, 15 Feb 2016 00:15:32 +0100
Subject: [PATCH 17/21] Update appveyor.yml
---
appveyor.yml | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/appveyor.yml b/appveyor.yml
index ca2ba1a3..764fd005 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -10,11 +10,6 @@ assembly_info:
assembly_informational_version: '4.2'
nuget:
project_feed: true
-before_build:
-- cmd: >-
- dnvm install latest
-
- dnu restore --quiet
matrix:
fast_finish: true
build:
@@ -23,11 +18,17 @@ build:
verbosity: quiet
build_script:
-- msbuild NLog.Web.sln /verbosity:minimal /t:rebuild /p:configuration=release
-- dnu build NLog.Web.ASPNET5\project.json --configuration release --quiet
+- cmd: >-
+ nuget restore NLog.Web.sln
+
+ msbuild NLog.Web.sln /verbosity:minimal /t:rebuild /p:configuration=release
+
+ dnvm install 1.0.0-rc1-update1
+
+ dnu restore --quiet
+ dnu build NLog.Web.ASPNET5/project.json --configuration release --quiet
-
deploy: off
test_script:
- nuget.exe install OpenCover -ExcludeVersion
From d59ed5da5d9388c1e42e2ddc3b8bf7e8c96b7950 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Mon, 15 Feb 2016 00:20:17 +0100
Subject: [PATCH 18/21] Update appveyor.yml
---
appveyor.yml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/appveyor.yml b/appveyor.yml
index 764fd005..ad2af7d0 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -29,6 +29,9 @@ build_script:
dnu build NLog.Web.ASPNET5/project.json --configuration release --quiet
+after_build:
+ - dnu pack NLog.Web.ASPNET5\project.json --quiet
+
deploy: off
test_script:
- nuget.exe install OpenCover -ExcludeVersion
@@ -36,4 +39,8 @@ test_script:
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
- pip install codecov
- codecov -f "coverage.xml"
+
+artifacts:
+- path: '**\*.nupkg'
+
From 6d1ad46567d38edc107fe60566657d7a9125c4ea Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Mon, 15 Feb 2016 00:33:48 +0100
Subject: [PATCH 19/21] Update appveyor.yml
---
appveyor.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/appveyor.yml b/appveyor.yml
index ad2af7d0..b94afb2b 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -30,7 +30,7 @@ build_script:
dnu build NLog.Web.ASPNET5/project.json --configuration release --quiet
after_build:
- - dnu pack NLog.Web.ASPNET5\project.json --quiet
+ - dnu pack NLog.Web.ASPNET5\project.json -configuration release --quiet
deploy: off
test_script:
@@ -41,6 +41,6 @@ test_script:
- codecov -f "coverage.xml"
artifacts:
-- path: '**\*.nupkg'
+- path: 'NLog*\*.nupkg'
From 765c055c984b9e7ef9c15d2d0179b3a4fbb3150b Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Mon, 15 Feb 2016 00:38:41 +0100
Subject: [PATCH 20/21] strong name
---
NLog.Web.ASPNET5/Properties/AssemblyInfo.cs | 26 +++++++++++++++++++++
NLog.Web.ASPNET5/project.json | 3 +++
2 files changed, 29 insertions(+)
create mode 100644 NLog.Web.ASPNET5/Properties/AssemblyInfo.cs
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.ASPNET5/project.json b/NLog.Web.ASPNET5/project.json
index 0b0dcbdc..c6f22ace 100644
--- a/NLog.Web.ASPNET5/project.json
+++ b/NLog.Web.ASPNET5/project.json
@@ -45,5 +45,8 @@
}
}
+ },
+ "compilationOptions": {
+ "keyFile": "NLog.snk"
}
}
From 62445937736edb934005591201d4f9b746993668 Mon Sep 17 00:00:00 2001
From: Julian Verdurmen <304NotModified@users.noreply.github.com>
Date: Mon, 15 Feb 2016 00:39:07 +0100
Subject: [PATCH 21/21] Update appveyor.yml
---
appveyor.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/appveyor.yml b/appveyor.yml
index b94afb2b..1ff14298 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -30,7 +30,7 @@ build_script:
dnu build NLog.Web.ASPNET5/project.json --configuration release --quiet
after_build:
- - dnu pack NLog.Web.ASPNET5\project.json -configuration release --quiet
+ - dnu pack NLog.Web.ASPNET5\project.json --configuration release --quiet
deploy: off
test_script: