From 74c27c0c2a630ac0b281c01b57084678be976460 Mon Sep 17 00:00:00 2001 From: mperdeck Date: Sun, 10 Jan 2016 21:10:15 +1100 Subject: [PATCH] Fixed easiest compile errors --- .gitattributes | 22 + .gitignore | 171 +++++ .../JSNLog.Tests.csproj.FileListAbsolute.txt | 1 - src/JSNLog/Infrastructure/ConfigProcessor.cs | 9 - .../Infrastructure/LogMessageHelpers.cs | 4 - src/JSNLog/LogHandling/LoggerProcessor.cs | 5 - .../ConfigurationSectionHandler.cs | 7 +- .../Middleware/JSNLogMiddleware.cs | 5 +- .../Configuration/JavascriptLogging.cs | 11 +- .../JsnlogConfiguration/AjaxAppender.cs | 2 + .../JsnlogConfiguration/Appender.cs | 10 + .../JsnlogConfiguration/FilterOptions.cs | 8 + .../JsnlogConfiguration.cs | 26 + .../JsnlogConfiguration/Logger.cs | 6 + .../JsnlogConfiguration/OnceOnlyOptions.cs | 2 + src/JSNLog/ValueInfos/AppendersValue.cs | 7 +- src/JSNLog/ValueInfos/LevelValue.cs | 7 +- src/JSNLog/ValueInfos/StringValue.cs | 6 +- src/JSNLog/ValueInfos/UrlValue.cs | 4 - src/JSNLog/project.json | 14 +- src/JSNLog/project.lock.json | 647 ++++++++++++++---- 21 files changed, 795 insertions(+), 179 deletions(-) create mode 100644 .gitattributes create mode 100644 .gitignore rename src/JSNLog/{ => PublicFacing/AspNet4/Configuration}/ConfigurationSectionHandler.cs (90%) diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..412eeda7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,22 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Custom for Visual Studio +*.cs diff=csharp +*.sln merge=union +*.csproj merge=union +*.vbproj merge=union +*.fsproj merge=union +*.dbproj merge=union + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..227b6948 --- /dev/null +++ b/.gitignore @@ -0,0 +1,171 @@ +################# +## Eclipse +################# + +*.pydevproject +.project +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.classpath +.settings/ +.loadpath + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# CDT-specific +.cproject + +# PDT-specific +.buildpath + + +################# +## Visual Studio +################# + +## NuGet packages +.nupkg +.vs +UpgradeLog.htm +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results +[Dd]ebug/ +[Rr]elease/ +*_i.c +*_p.c +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.vspscc +.builds +*.dotCover + +## TODO: If you have NuGet Package Restore enabled, uncomment this +packages/ + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf + +# Visual Studio profiler +*.psess +*.vsp + +# ReSharper is a .NET coding add-in +_ReSharper* + +# Installshield output folder +[Ee]xpress + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish + +# Others +[Bb]in +[Oo]bj +sql +TestResults +*.Cache +ClientBin +stylecop.* +~$* +*.dbmdl +Generated_Code #added for RIA/Silverlight projects + +# Backup & report files from converting an old project file to a newer +# Visual Studio version. Backup files are not needed, because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML + + + +############ +## Windows +############ + +# Windows image file caches +Thumbs.db + +# Folder config file +Desktop.ini + + +############# +## Python +############# + +*.py[co] + +# Packages +*.egg +*.egg-info +dist +build +eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage +.tox + +#Translations +*.mo + +#Mr Developer +.mr.developer.cfg + +# Mac crap +.DS_Store + +# Included files +!chromedriver.exe + diff --git a/JSNLog.Tests/obj/Debug/JSNLog.Tests.csproj.FileListAbsolute.txt b/JSNLog.Tests/obj/Debug/JSNLog.Tests.csproj.FileListAbsolute.txt index 0db94395..ff1f2b27 100644 --- a/JSNLog.Tests/obj/Debug/JSNLog.Tests.csproj.FileListAbsolute.txt +++ b/JSNLog.Tests/obj/Debug/JSNLog.Tests.csproj.FileListAbsolute.txt @@ -1,6 +1,5 @@ D:\Dev\JSNLog\jsnlog\JSNLog.Tests\bin\Debug\JSNLog.Tests.dll D:\Dev\JSNLog\jsnlog\JSNLog.Tests\bin\Debug\JSNLog.Tests.pdb D:\Dev\JSNLog\jsnlog\JSNLog.Tests\bin\Debug\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll -D:\Dev\JSNLog\jsnlog\JSNLog.Tests\obj\Debug\JSNLog.Tests.csprojResolveAssemblyReference.cache D:\Dev\JSNLog\jsnlog\JSNLog.Tests\obj\Debug\JSNLog.Tests.dll D:\Dev\JSNLog\jsnlog\JSNLog.Tests\obj\Debug\JSNLog.Tests.pdb diff --git a/src/JSNLog/Infrastructure/ConfigProcessor.cs b/src/JSNLog/Infrastructure/ConfigProcessor.cs index ceb9d15c..048df625 100644 --- a/src/JSNLog/Infrastructure/ConfigProcessor.cs +++ b/src/JSNLog/Infrastructure/ConfigProcessor.cs @@ -1,16 +1,7 @@ using System; using System.Collections.Generic; -using System.Linq; using System.Text; -using System.Xml; -using System.Web.Configuration; -using JSNLog.Exceptions; -using JSNLog.Infrastructure; -using System.Text.RegularExpressions; -using System.Web; -using System.Reflection; using JSNLog.ValueInfos; -using JSNLog; namespace JSNLog.Infrastructure { diff --git a/src/JSNLog/Infrastructure/LogMessageHelpers.cs b/src/JSNLog/Infrastructure/LogMessageHelpers.cs index 53f6503f..d2489427 100644 --- a/src/JSNLog/Infrastructure/LogMessageHelpers.cs +++ b/src/JSNLog/Infrastructure/LogMessageHelpers.cs @@ -1,9 +1,5 @@ using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Web.Script.Serialization; -using System.Web; using Newtonsoft.Json; namespace JSNLog.Infrastructure diff --git a/src/JSNLog/LogHandling/LoggerProcessor.cs b/src/JSNLog/LogHandling/LoggerProcessor.cs index fd5f1368..cca1eb8b 100644 --- a/src/JSNLog/LogHandling/LoggerProcessor.cs +++ b/src/JSNLog/LogHandling/LoggerProcessor.cs @@ -1,11 +1,6 @@ using System; using System.Collections.Generic; -using System.Linq; -using System.Text; using JSNLog.Infrastructure; -using System.Web.Script.Serialization; -using System.Xml; -using System.Web; using System.Net; using System.Text.RegularExpressions; using JSNLog.Exceptions; diff --git a/src/JSNLog/ConfigurationSectionHandler.cs b/src/JSNLog/PublicFacing/AspNet4/Configuration/ConfigurationSectionHandler.cs similarity index 90% rename from src/JSNLog/ConfigurationSectionHandler.cs rename to src/JSNLog/PublicFacing/AspNet4/Configuration/ConfigurationSectionHandler.cs index b282123d..d7148cf9 100644 --- a/src/JSNLog/ConfigurationSectionHandler.cs +++ b/src/JSNLog/PublicFacing/AspNet4/Configuration/ConfigurationSectionHandler.cs @@ -1,4 +1,6 @@ -using System; +#if NET40 + +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -15,3 +17,6 @@ public object Create(object parent, object configContext, XmlNode section) } } } + +#endif + diff --git a/src/JSNLog/PublicFacing/AspNet5/LogRequestHandling/Middleware/JSNLogMiddleware.cs b/src/JSNLog/PublicFacing/AspNet5/LogRequestHandling/Middleware/JSNLogMiddleware.cs index 8f2cef01..25bed719 100644 --- a/src/JSNLog/PublicFacing/AspNet5/LogRequestHandling/Middleware/JSNLogMiddleware.cs +++ b/src/JSNLog/PublicFacing/AspNet5/LogRequestHandling/Middleware/JSNLogMiddleware.cs @@ -2,15 +2,12 @@ using System; using System.Collections.Generic; -using System.Linq; using System.Text; using System.IO; using System.Threading.Tasks; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; -using System.Text.RegularExpressions; -// Nuget cannot find this package! using Microsoft.AspNet.Http.Extensions; -using JSNLog.AspNet5.Infrastructure; +using JSNLog.Infrastructure.AspNet5; using Microsoft.Extensions.Primitives; using JSNLog.Infrastructure; using JSNLog.LogHandling; diff --git a/src/JSNLog/PublicFacing/Configuration/JavascriptLogging.cs b/src/JSNLog/PublicFacing/Configuration/JavascriptLogging.cs index 186e6360..6e43a002 100644 --- a/src/JSNLog/PublicFacing/Configuration/JavascriptLogging.cs +++ b/src/JSNLog/PublicFacing/Configuration/JavascriptLogging.cs @@ -1,13 +1,12 @@ using System; -using System.Collections.Generic; -using System.Linq; using System.Text; using System.Xml; using JSNLog.Exceptions; using JSNLog.Infrastructure; -using System.Text.RegularExpressions; using JSNLog.LogHandling; +#if NET40 using System.Web; +#endif namespace JSNLog { @@ -79,7 +78,13 @@ internal static void RaiseLoggingEvent(LoggingEventArgs loggingEventArgs) #region JsnlogConfiguration private static JsnlogConfiguration _jsnlogConfiguration = null; + +#if NET40 private static ILoggingAdapter _logger = new CommonLoggingAdapter(); +#else + private static ILoggingAdapter _logger = null; +#endif + internal static JsnlogConfiguration GetJsnlogConfigurationWithoutWebConfig() { diff --git a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/AjaxAppender.cs b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/AjaxAppender.cs index 5c84f824..a1480251 100644 --- a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/AjaxAppender.cs +++ b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/AjaxAppender.cs @@ -12,7 +12,9 @@ namespace JSNLog { public class AjaxAppender : Appender, ICanCreateJsonFields, ICanCreateElement { +#if !DNXCORE50 [XmlAttribute] +#endif public string url { get; set; } public AjaxAppender() diff --git a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/Appender.cs b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/Appender.cs index d3e7d781..d618e2ba 100644 --- a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/Appender.cs +++ b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/Appender.cs @@ -13,19 +13,29 @@ namespace JSNLog { public class Appender : FilterOptions, ICanCreateJsonFields { +#if !DNXCORE50 [XmlAttribute] +#endif public string name { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string sendWithBufferLevel { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string storeInBufferLevel { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public uint bufferSize { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public uint batchSize { get; set; } public Appender() diff --git a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/FilterOptions.cs b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/FilterOptions.cs index 51ce5561..3b84b20e 100644 --- a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/FilterOptions.cs +++ b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/FilterOptions.cs @@ -12,16 +12,24 @@ namespace JSNLog { public class FilterOptions: ICanCreateJsonFields { +#if !DNXCORE50 [XmlAttribute] +#endif public string level { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string ipRegex { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string userAgentRegex { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string disallow { get; set; } // -------------------------------------------------------- diff --git a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/JsnlogConfiguration.cs b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/JsnlogConfiguration.cs index e5f44d77..facb7cfe 100644 --- a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/JsnlogConfiguration.cs +++ b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/JsnlogConfiguration.cs @@ -11,46 +11,72 @@ namespace JSNLog { +#if !DNXCORE50 [XmlRoot("jsnlog")] +#endif public class JsnlogConfiguration : ICanCreateJsonFields { +#if !DNXCORE50 [XmlAttribute] +#endif public bool enabled { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public uint maxMessages { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string defaultAjaxUrl { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string corsAllowedOriginsRegex { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string serverSideLogger { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string serverSideLevel { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string serverSideMessageFormat { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string dateFormat { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string productionLibraryPath { get; set; } // Be sure to make everything Properties. While the XML serializer handles fields ok, // the JSON serializer used in ASP.NET 5 doesn't. +#if !DNXCORE50 [XmlElement("logger")] +#endif public List loggers { get; set; } +#if !DNXCORE50 [XmlElement("ajaxAppender")] +#endif public List ajaxAppenders { get; set; } +#if !DNXCORE50 [XmlElement("consoleAppender")] +#endif public List consoleAppenders { get; set; } public JsnlogConfiguration() diff --git a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/Logger.cs b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/Logger.cs index 68323bbb..a17fa840 100644 --- a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/Logger.cs +++ b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/Logger.cs @@ -13,13 +13,19 @@ namespace JSNLog { public class Logger : FilterOptions, ICanCreateJsonFields, ICanCreateElement { +#if !DNXCORE50 [XmlAttribute] +#endif public string appenders { get; set; } +#if !DNXCORE50 [XmlAttribute] +#endif public string name { get; set; } +#if !DNXCORE50 [XmlElement("onceOnly")] +#endif public List onceOnlies { get; set; } // -------------------------------------------------------- diff --git a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/OnceOnlyOptions.cs b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/OnceOnlyOptions.cs index a6517cc8..1e09471e 100644 --- a/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/OnceOnlyOptions.cs +++ b/src/JSNLog/PublicFacing/Configuration/JsnlogConfiguration/OnceOnlyOptions.cs @@ -10,7 +10,9 @@ namespace JSNLog { public class OnceOnlyOptions { +#if !DNXCORE50 [XmlAttribute] +#endif public string regex { get; set; } } } diff --git a/src/JSNLog/ValueInfos/AppendersValue.cs b/src/JSNLog/ValueInfos/AppendersValue.cs index 892c45b6..39874400 100644 --- a/src/JSNLog/ValueInfos/AppendersValue.cs +++ b/src/JSNLog/ValueInfos/AppendersValue.cs @@ -1,11 +1,6 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; -using System.Text; -using System.Text.RegularExpressions; -using System.Web; using JSNLog.Exceptions; -using JSNLog.Infrastructure; namespace JSNLog.ValueInfos { diff --git a/src/JSNLog/ValueInfos/LevelValue.cs b/src/JSNLog/ValueInfos/LevelValue.cs index d85dcc5d..40b739ac 100644 --- a/src/JSNLog/ValueInfos/LevelValue.cs +++ b/src/JSNLog/ValueInfos/LevelValue.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Web; -using JSNLog.Infrastructure; +using JSNLog.Infrastructure; namespace JSNLog.ValueInfos { diff --git a/src/JSNLog/ValueInfos/StringValue.cs b/src/JSNLog/ValueInfos/StringValue.cs index 77604349..6bd68e92 100644 --- a/src/JSNLog/ValueInfos/StringValue.cs +++ b/src/JSNLog/ValueInfos/StringValue.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Web; +using System.Web; namespace JSNLog.ValueInfos { diff --git a/src/JSNLog/ValueInfos/UrlValue.cs b/src/JSNLog/ValueInfos/UrlValue.cs index bf408668..07d68f87 100644 --- a/src/JSNLog/ValueInfos/UrlValue.cs +++ b/src/JSNLog/ValueInfos/UrlValue.cs @@ -1,8 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Web; using System.Text.RegularExpressions; using JSNLog.Exceptions; using JSNLog.Infrastructure; diff --git a/src/JSNLog/project.json b/src/JSNLog/project.json index 6a7e0cc1..a8e424fb 100644 --- a/src/JSNLog/project.json +++ b/src/JSNLog/project.json @@ -5,11 +5,9 @@ "tags": [ "" ], "projectUrl": "", "licenseUrl": "", - "frameworks": { "dnx451": { "dependencies": { - "Common.Logging": "3.3.1", "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", "Microsoft.Extensions.Logging": "1.0.0-rc1-final", "Microsoft.AspNet.Http.Extensions": "1.0.0-rc1-final", @@ -18,7 +16,6 @@ }, "dnxcore50": { "dependencies": { - "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20", "Microsoft.AspNet.Http.Abstractions": "1.0.0-rc1-final", "Microsoft.Extensions.Logging": "1.0.0-rc1-final", @@ -29,8 +26,17 @@ "net40": { "dependencies": { "Common.Logging": "3.3.1", - "Microsoft.Owin": "2.1.0" + "Microsoft.Bcl.Async": "1.0.168", + "Microsoft.Owin": "2.1.0", + "WebActivatorEx": "2.1.0" + }, + "frameworkAssemblies": { + "System.Web": "4.0.0.0", + "System.XML": "4.0.0.0" } } + }, + "dependencies": { + "Newtonsoft.Json": "8.0.2" } } diff --git a/src/JSNLog/project.lock.json b/src/JSNLog/project.lock.json index 26bfbb31..605ec6fd 100644 --- a/src/JSNLog/project.lock.json +++ b/src/JSNLog/project.lock.json @@ -3,27 +3,6 @@ "version": 2, "targets": { "DNX,Version=v4.5.1": { - "Common.Logging/3.3.1": { - "type": "package", - "dependencies": { - "Common.Logging.Core": "3.3.1" - }, - "compile": { - "lib/net40/Common.Logging.dll": {} - }, - "runtime": { - "lib/net40/Common.Logging.dll": {} - } - }, - "Common.Logging.Core/3.3.1": { - "type": "package", - "compile": { - "lib/net40/Common.Logging.Core.dll": {} - }, - "runtime": { - "lib/net40/Common.Logging.Core.dll": {} - } - }, "Microsoft.AspNet.Antiforgery/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -973,7 +952,7 @@ "lib/net451/Microsoft.Net.Http.Headers.dll": {} } }, - "Newtonsoft.Json/6.0.6": { + "Newtonsoft.Json/8.0.2": { "type": "package", "compile": { "lib/net45/Newtonsoft.Json.dll": {} @@ -2098,13 +2077,13 @@ "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} } }, - "Newtonsoft.Json/6.0.6": { + "Newtonsoft.Json/8.0.2": { "type": "package", "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} } }, "System.Collections/4.0.11-beta-23516": { @@ -2447,13 +2426,10 @@ "lib/dotnet/System.ObjectModel.dll": {} } }, - "System.Private.Uri/4.0.0": { + "System.Private.Uri/4.0.1-beta-23516": { "type": "package", "compile": { "ref/dnxcore50/_._": {} - }, - "runtime": { - "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.1.0-beta-23225": { @@ -2565,13 +2541,13 @@ "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, - "System.Runtime/4.0.20": { + "System.Runtime/4.0.21-beta-23516": { "type": "package", "dependencies": { - "System.Private.Uri": "4.0.0" + "System.Private.Uri": "4.0.1-beta-23516" }, "compile": { - "ref/dotnet/System.Runtime.dll": {} + "ref/dotnet5.4/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} @@ -2897,6 +2873,44 @@ "lib/net40/Common.Logging.Core.dll": {} } }, + "Microsoft.Bcl/1.1.8": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.Build": "1.0.14" + }, + "compile": { + "lib/net40/System.IO.dll": {}, + "lib/net40/System.Runtime.dll": {}, + "lib/net40/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/net40/System.IO.dll": {}, + "lib/net40/System.Runtime.dll": {}, + "lib/net40/System.Threading.Tasks.dll": {} + } + }, + "Microsoft.Bcl.Async/1.0.168": { + "type": "package", + "dependencies": { + "Microsoft.Bcl": "1.1.8" + }, + "frameworkAssemblies": [ + "System.Net" + ], + "compile": { + "lib/net40/Microsoft.Threading.Tasks.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Threading.Tasks.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.dll": {} + } + }, + "Microsoft.Bcl.Build/1.0.14": { + "type": "package" + }, "Microsoft.Owin/2.1.0": { "type": "package", "dependencies": { @@ -2909,38 +2923,47 @@ "lib/net40/Microsoft.Owin.dll": {} } }, - "Owin/1.0.0": { + "Microsoft.Web.Infrastructure/1.0.0": { "type": "package", "compile": { - "lib/net40/Owin.dll": {} + "lib/net40/Microsoft.Web.Infrastructure.dll": {} }, "runtime": { - "lib/net40/Owin.dll": {} + "lib/net40/Microsoft.Web.Infrastructure.dll": {} } - } - }, - "DNX,Version=v4.5.1/win7-x86": { - "Common.Logging/3.3.1": { + }, + "Newtonsoft.Json/8.0.2": { "type": "package", - "dependencies": { - "Common.Logging.Core": "3.3.1" - }, "compile": { - "lib/net40/Common.Logging.dll": {} + "lib/net40/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/net40/Common.Logging.dll": {} + "lib/net40/Newtonsoft.Json.dll": {} } }, - "Common.Logging.Core/3.3.1": { + "Owin/1.0.0": { "type": "package", "compile": { - "lib/net40/Common.Logging.Core.dll": {} + "lib/net40/Owin.dll": {} }, "runtime": { - "lib/net40/Common.Logging.Core.dll": {} + "lib/net40/Owin.dll": {} } }, + "WebActivatorEx/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Web.Infrastructure": "1.0.0" + }, + "compile": { + "lib/net40/WebActivatorEx.dll": {} + }, + "runtime": { + "lib/net40/WebActivatorEx.dll": {} + } + } + }, + "DNX,Version=v4.5.1/win7-x86": { "Microsoft.AspNet.Antiforgery/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -3890,7 +3913,7 @@ "lib/net451/Microsoft.Net.Http.Headers.dll": {} } }, - "Newtonsoft.Json/6.0.6": { + "Newtonsoft.Json/8.0.2": { "type": "package", "compile": { "lib/net45/Newtonsoft.Json.dll": {} @@ -4103,27 +4126,6 @@ } }, "DNX,Version=v4.5.1/win7-x64": { - "Common.Logging/3.3.1": { - "type": "package", - "dependencies": { - "Common.Logging.Core": "3.3.1" - }, - "compile": { - "lib/net40/Common.Logging.dll": {} - }, - "runtime": { - "lib/net40/Common.Logging.dll": {} - } - }, - "Common.Logging.Core/3.3.1": { - "type": "package", - "compile": { - "lib/net40/Common.Logging.Core.dll": {} - }, - "runtime": { - "lib/net40/Common.Logging.Core.dll": {} - } - }, "Microsoft.AspNet.Antiforgery/1.0.0-rc1-final": { "type": "package", "dependencies": { @@ -5073,7 +5075,7 @@ "lib/net451/Microsoft.Net.Http.Headers.dll": {} } }, - "Newtonsoft.Json/6.0.6": { + "Newtonsoft.Json/8.0.2": { "type": "package", "compile": { "lib/net45/Newtonsoft.Json.dll": {} @@ -6198,13 +6200,13 @@ "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} } }, - "Newtonsoft.Json/6.0.6": { + "Newtonsoft.Json/8.0.2": { "type": "package", "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} } }, "runtime.any.System.Linq.Expressions/4.0.11-beta-23516": { @@ -6336,6 +6338,15 @@ "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": { @@ -6840,13 +6851,10 @@ "lib/DNXCore50/System.Private.Networking.dll": {} } }, - "System.Private.Uri/4.0.0": { + "System.Private.Uri/4.0.1-beta-23516": { "type": "package", "compile": { "ref/dnxcore50/_._": {} - }, - "runtime": { - "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.1.0-beta-23225": { @@ -7003,13 +7011,13 @@ "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, - "System.Runtime/4.0.20": { + "System.Runtime/4.0.21-beta-23516": { "type": "package", "dependencies": { - "System.Private.Uri": "4.0.0" + "System.Private.Uri": "4.0.1-beta-23516" }, "compile": { - "ref/dotnet/System.Runtime.dll": {} + "ref/dotnet5.4/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} @@ -8297,13 +8305,13 @@ "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} } }, - "Newtonsoft.Json/6.0.6": { + "Newtonsoft.Json/8.0.2": { "type": "package", "compile": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} }, "runtime": { - "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} } }, "runtime.any.System.Linq.Expressions/4.0.11-beta-23516": { @@ -8435,6 +8443,15 @@ "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": { @@ -8939,13 +8956,10 @@ "lib/DNXCore50/System.Private.Networking.dll": {} } }, - "System.Private.Uri/4.0.0": { + "System.Private.Uri/4.0.1-beta-23516": { "type": "package", "compile": { "ref/dnxcore50/_._": {} - }, - "runtime": { - "lib/DNXCore50/System.Private.Uri.dll": {} } }, "System.Reflection/4.1.0-beta-23225": { @@ -9102,13 +9116,13 @@ "lib/DNXCore50/System.Resources.ResourceManager.dll": {} } }, - "System.Runtime/4.0.20": { + "System.Runtime/4.0.21-beta-23516": { "type": "package", "dependencies": { - "System.Private.Uri": "4.0.0" + "System.Private.Uri": "4.0.1-beta-23516" }, "compile": { - "ref/dotnet/System.Runtime.dll": {} + "ref/dotnet5.4/System.Runtime.dll": {} }, "runtime": { "lib/DNXCore50/System.Runtime.dll": {} @@ -9505,6 +9519,44 @@ "lib/net40/Common.Logging.Core.dll": {} } }, + "Microsoft.Bcl/1.1.8": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.Build": "1.0.14" + }, + "compile": { + "lib/net40/System.IO.dll": {}, + "lib/net40/System.Runtime.dll": {}, + "lib/net40/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/net40/System.IO.dll": {}, + "lib/net40/System.Runtime.dll": {}, + "lib/net40/System.Threading.Tasks.dll": {} + } + }, + "Microsoft.Bcl.Async/1.0.168": { + "type": "package", + "dependencies": { + "Microsoft.Bcl": "1.1.8" + }, + "frameworkAssemblies": [ + "System.Net" + ], + "compile": { + "lib/net40/Microsoft.Threading.Tasks.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Threading.Tasks.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.dll": {} + } + }, + "Microsoft.Bcl.Build/1.0.14": { + "type": "package" + }, "Microsoft.Owin/2.1.0": { "type": "package", "dependencies": { @@ -9517,6 +9569,24 @@ "lib/net40/Microsoft.Owin.dll": {} } }, + "Microsoft.Web.Infrastructure/1.0.0": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Web.Infrastructure.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Web.Infrastructure.dll": {} + } + }, + "Newtonsoft.Json/8.0.2": { + "type": "package", + "compile": { + "lib/net40/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net40/Newtonsoft.Json.dll": {} + } + }, "Owin/1.0.0": { "type": "package", "compile": { @@ -9525,6 +9595,18 @@ "runtime": { "lib/net40/Owin.dll": {} } + }, + "WebActivatorEx/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Web.Infrastructure": "1.0.0" + }, + "compile": { + "lib/net40/WebActivatorEx.dll": {} + }, + "runtime": { + "lib/net40/WebActivatorEx.dll": {} + } } }, ".NETFramework,Version=v4.0/win7-x64": { @@ -9549,6 +9631,44 @@ "lib/net40/Common.Logging.Core.dll": {} } }, + "Microsoft.Bcl/1.1.8": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.Build": "1.0.14" + }, + "compile": { + "lib/net40/System.IO.dll": {}, + "lib/net40/System.Runtime.dll": {}, + "lib/net40/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/net40/System.IO.dll": {}, + "lib/net40/System.Runtime.dll": {}, + "lib/net40/System.Threading.Tasks.dll": {} + } + }, + "Microsoft.Bcl.Async/1.0.168": { + "type": "package", + "dependencies": { + "Microsoft.Bcl": "1.1.8" + }, + "frameworkAssemblies": [ + "System.Net" + ], + "compile": { + "lib/net40/Microsoft.Threading.Tasks.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Threading.Tasks.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll": {}, + "lib/net40/Microsoft.Threading.Tasks.Extensions.dll": {} + } + }, + "Microsoft.Bcl.Build/1.0.14": { + "type": "package" + }, "Microsoft.Owin/2.1.0": { "type": "package", "dependencies": { @@ -9561,6 +9681,24 @@ "lib/net40/Microsoft.Owin.dll": {} } }, + "Microsoft.Web.Infrastructure/1.0.0": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Web.Infrastructure.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Web.Infrastructure.dll": {} + } + }, + "Newtonsoft.Json/8.0.2": { + "type": "package", + "compile": { + "lib/net40/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net40/Newtonsoft.Json.dll": {} + } + }, "Owin/1.0.0": { "type": "package", "compile": { @@ -9569,6 +9707,18 @@ "runtime": { "lib/net40/Owin.dll": {} } + }, + "WebActivatorEx/2.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Web.Infrastructure": "1.0.0" + }, + "compile": { + "lib/net40/WebActivatorEx.dll": {} + }, + "runtime": { + "lib/net40/WebActivatorEx.dll": {} + } } } }, @@ -10009,6 +10159,177 @@ "Microsoft.AspNet.WebUtilities.nuspec" ] }, + "Microsoft.Bcl/1.1.8": { + "type": "package", + "sha512": "gM+PUzd8ONxJpcPJeNppCJPklDhDuPUMVQkxvK4fe0rd9WyqBNPh4+UFx3Uv8zuG4C1Gapu1c25sfotE7TQtig==", + "files": [ + "content/net45/_._", + "content/portable-net45+win8+wp8+wpa81/_._", + "content/portable-net45+win8+wpa81/_._", + "content/portable-net451+win81/_._", + "content/portable-net451+win81+wpa81/_._", + "content/portable-win81+wp81+wpa81/_._", + "content/sl4/_._", + "content/sl5/_._", + "content/win8/_._", + "content/wp8/_._", + "content/wpa81/_._", + "lib/net40/ensureRedirect.xml", + "lib/net40/System.IO.dll", + "lib/net40/System.IO.xml", + "lib/net40/System.Runtime.dll", + "lib/net40/System.Runtime.xml", + "lib/net40/System.Threading.Tasks.dll", + "lib/net40/System.Threading.Tasks.xml", + "lib/net45/_._", + "lib/portable-net40+sl4+win8/ensureRedirect.xml", + "lib/portable-net40+sl4+win8/System.IO.dll", + "lib/portable-net40+sl4+win8/System.IO.xml", + "lib/portable-net40+sl4+win8/System.Runtime.dll", + "lib/portable-net40+sl4+win8/System.Runtime.xml", + "lib/portable-net40+sl4+win8/System.Threading.Tasks.dll", + "lib/portable-net40+sl4+win8/System.Threading.Tasks.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/ensureRedirect.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.IO.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Runtime.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/System.Threading.Tasks.xml", + "lib/portable-net40+sl4+win8+wp8+wpa81/ensureRedirect.xml", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.dll", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.IO.xml", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.dll", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.Runtime.xml", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.dll", + "lib/portable-net40+sl4+win8+wp8+wpa81/System.Threading.Tasks.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/ensureRedirect.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.IO.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.Runtime.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/System.Threading.Tasks.xml", + "lib/portable-net40+win8/ensureRedirect.xml", + "lib/portable-net40+win8/System.IO.dll", + "lib/portable-net40+win8/System.IO.xml", + "lib/portable-net40+win8/System.Runtime.dll", + "lib/portable-net40+win8/System.Runtime.xml", + "lib/portable-net40+win8/System.Threading.Tasks.dll", + "lib/portable-net40+win8/System.Threading.Tasks.xml", + "lib/portable-net40+win8+wp8+wpa81/ensureRedirect.xml", + "lib/portable-net40+win8+wp8+wpa81/System.IO.dll", + "lib/portable-net40+win8+wp8+wpa81/System.IO.xml", + "lib/portable-net40+win8+wp8+wpa81/System.Runtime.dll", + "lib/portable-net40+win8+wp8+wpa81/System.Runtime.xml", + "lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.dll", + "lib/portable-net40+win8+wp8+wpa81/System.Threading.Tasks.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/portable-net45+win8+wpa81/_._", + "lib/portable-net451+win81/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/portable-win81+wp81+wpa81/_._", + "lib/sl4/System.IO.dll", + "lib/sl4/System.IO.xml", + "lib/sl4/System.Runtime.dll", + "lib/sl4/System.Runtime.xml", + "lib/sl4/System.Threading.Tasks.dll", + "lib/sl4/System.Threading.Tasks.xml", + "lib/sl4-windowsphone71/ensureRedirect.xml", + "lib/sl4-windowsphone71/System.IO.dll", + "lib/sl4-windowsphone71/System.IO.xml", + "lib/sl4-windowsphone71/System.Runtime.dll", + "lib/sl4-windowsphone71/System.Runtime.xml", + "lib/sl4-windowsphone71/System.Threading.Tasks.dll", + "lib/sl4-windowsphone71/System.Threading.Tasks.xml", + "lib/sl5/System.IO.dll", + "lib/sl5/System.IO.xml", + "lib/sl5/System.Runtime.dll", + "lib/sl5/System.Runtime.xml", + "lib/sl5/System.Threading.Tasks.dll", + "lib/sl5/System.Threading.Tasks.xml", + "lib/win8/_._", + "lib/wp8/_._", + "lib/wpa81/_._", + "License-Stable.rtf", + "Microsoft.Bcl.1.1.8.nupkg", + "Microsoft.Bcl.1.1.8.nupkg.sha512", + "Microsoft.Bcl.nuspec" + ] + }, + "Microsoft.Bcl.Async/1.0.168": { + "type": "package", + "sha512": "tUNC02eBwDKpGre0BcNIvblLv1q0Q3DnS/vtkRHj2FE1sXwt386HAudztyl5C0U88hllrqHDvtlz8bK0Y8cHDA==", + "files": [ + "lib/net40/Microsoft.Threading.Tasks.dll", + "lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.dll", + "lib/net40/Microsoft.Threading.Tasks.Extensions.Desktop.xml", + "lib/net40/Microsoft.Threading.Tasks.Extensions.dll", + "lib/net40/Microsoft.Threading.Tasks.Extensions.xml", + "lib/net40/Microsoft.Threading.Tasks.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.Extensions.dll", + "lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.Extensions.xml", + "lib/portable-net40+sl4+win8+wp71+wpa81/Microsoft.Threading.Tasks.xml", + "lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.dll", + "lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/Microsoft.Threading.Tasks.xml", + "lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.dll", + "lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wpa81/Microsoft.Threading.Tasks.xml", + "lib/sl4/Microsoft.Threading.Tasks.dll", + "lib/sl4/Microsoft.Threading.Tasks.Extensions.dll", + "lib/sl4/Microsoft.Threading.Tasks.Extensions.Silverlight.dll", + "lib/sl4/Microsoft.Threading.Tasks.Extensions.Silverlight.xml", + "lib/sl4/Microsoft.Threading.Tasks.Extensions.xml", + "lib/sl4/Microsoft.Threading.Tasks.xml", + "lib/sl4-windowsphone71/Microsoft.Threading.Tasks.dll", + "lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.dll", + "lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.dll", + "lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.Phone.xml", + "lib/sl4-windowsphone71/Microsoft.Threading.Tasks.Extensions.xml", + "lib/sl4-windowsphone71/Microsoft.Threading.Tasks.xml", + "lib/win8/Microsoft.Threading.Tasks.dll", + "lib/win8/Microsoft.Threading.Tasks.Extensions.dll", + "lib/win8/Microsoft.Threading.Tasks.Extensions.xml", + "lib/win8/Microsoft.Threading.Tasks.xml", + "lib/wp8/Microsoft.Threading.Tasks.dll", + "lib/wp8/Microsoft.Threading.Tasks.Extensions.dll", + "lib/wp8/Microsoft.Threading.Tasks.Extensions.Phone.dll", + "lib/wp8/Microsoft.Threading.Tasks.Extensions.Phone.xml", + "lib/wp8/Microsoft.Threading.Tasks.Extensions.xml", + "lib/wp8/Microsoft.Threading.Tasks.xml", + "lib/wpa81/Microsoft.Threading.Tasks.dll", + "lib/wpa81/Microsoft.Threading.Tasks.Extensions.dll", + "lib/wpa81/Microsoft.Threading.Tasks.Extensions.xml", + "lib/wpa81/Microsoft.Threading.Tasks.xml", + "License-Stable.rtf", + "Microsoft.Bcl.Async.1.0.168.nupkg", + "Microsoft.Bcl.Async.1.0.168.nupkg.sha512", + "Microsoft.Bcl.Async.nuspec" + ] + }, + "Microsoft.Bcl.Build/1.0.14": { + "type": "package", + "sha512": "cDLKSvNvRa519hplsbSoYqO69TjdDIhfjtKUM0g20/nVROoWsGav9KCI9HtnGjLmdV1+TcUUDhbotcllibjPEA==", + "files": [ + "content/net40/_._", + "content/netcore45/_._", + "content/portable-net40+win8+sl4+wp71+wpa81/_._", + "content/sl4/_._", + "content/sl4-windowsphone71/_._", + "License-Stable.rtf", + "Microsoft.Bcl.Build.1.0.14.nupkg", + "Microsoft.Bcl.Build.1.0.14.nupkg.sha512", + "Microsoft.Bcl.Build.nuspec", + "tools/Install.ps1", + "tools/Microsoft.Bcl.Build.targets", + "tools/Microsoft.Bcl.Build.Tasks.dll", + "tools/Uninstall.ps1" + ] + }, "Microsoft.CodeAnalysis.Analyzers/1.0.0": { "type": "package", "sha512": "E7VdmGw6xO3VHWapC+pNLZmo6yncS53UY3bmb5WZm9wliJBB1A6brgzKA4fcqiLrmJFx71r0M2zEbRDphRLUNg==", @@ -10431,6 +10752,16 @@ "Microsoft.Owin.nuspec" ] }, + "Microsoft.Web.Infrastructure/1.0.0": { + "type": "package", + "sha512": "FNmvLn5m2LTU/Rs2KWVo0SIIh9Ek+U0ojex7xeDaSHw/zgEP77A8vY5cVWgUtBGS8MJfDGNn8rpXJWEIQaPwTg==", + "files": [ + "lib/net40/Microsoft.Web.Infrastructure.dll", + "Microsoft.Web.Infrastructure.1.0.0.nupkg", + "Microsoft.Web.Infrastructure.1.0.0.nupkg.sha512", + "Microsoft.Web.Infrastructure.nuspec" + ] + }, "Microsoft.Win32.Primitives/4.0.0": { "type": "package", "serviceable": true, @@ -10487,9 +10818,9 @@ "ref/net46/Microsoft.Win32.Registry.dll" ] }, - "Newtonsoft.Json/6.0.6": { + "Newtonsoft.Json/8.0.2": { "type": "package", - "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "sha512": "e5yWmEfu68rmtG431zl9N/7PlNKQDIuiDW5MHlEFAZcecakcxrIGnKqrPAtWNILzK2oNanRB5cD150MYhECK3g==", "files": [ "lib/net20/Newtonsoft.Json.dll", "lib/net20/Newtonsoft.Json.xml", @@ -10499,14 +10830,12 @@ "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", + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.8.0.2.nupkg", + "Newtonsoft.Json.8.0.2.nupkg.sha512", "Newtonsoft.Json.nuspec", "tools/install.ps1" ] @@ -10630,6 +10959,20 @@ "runtimes/win7/lib/netcore50/System.Net.Primitives.dll" ] }, + "runtime.win7.System.Private.Uri/4.0.1-beta-23516": { + "type": "package", + "serviceable": true, + "sha512": "HphDhue34J/4+1rIMtInY1FWK1oLEMpxIpxGeNnhIlQf7hv5QDf05aWEC6180qbgkPBCFwyGnwWRBnONApwbBQ==", + "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, @@ -12141,18 +12484,15 @@ "System.Private.Networking.nuspec" ] }, - "System.Private.Uri/4.0.0": { + "System.Private.Uri/4.0.1-beta-23516": { "type": "package", - "serviceable": true, - "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", + "sha512": "MG79ArOc8KhfAkjrimI5GFH4tML7XFo+Z1sEQGLPxrBlwfbITwrrNfYb3YoH6CpAlJHc4pcs/gZrUas/pEkTdg==", "files": [ - "lib/DNXCore50/System.Private.Uri.dll", - "lib/netcore50/System.Private.Uri.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", - "System.Private.Uri.4.0.0.nupkg", - "System.Private.Uri.4.0.0.nupkg.sha512", + "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" ] }, @@ -12664,37 +13004,76 @@ "System.Runtime.nuspec" ] }, - "System.Runtime/4.0.20": { + "System.Runtime/4.0.21-beta-23516": { "type": "package", "serviceable": true, - "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", + "sha512": "R174ctQjJnCIVxA2Yzp1v68wfLfPSROZWrbaSBcnEzHAQbOjprBQi37aWdr5y05Pq2J/O7h6SjTsYhVOLdiRYQ==", "files": [ "lib/DNXCore50/System.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", - "lib/net46/_._", + "lib/net45/_._", "lib/netcore50/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", - "ref/dotnet/de/System.Runtime.xml", - "ref/dotnet/es/System.Runtime.xml", - "ref/dotnet/fr/System.Runtime.xml", - "ref/dotnet/it/System.Runtime.xml", - "ref/dotnet/ja/System.Runtime.xml", - "ref/dotnet/ko/System.Runtime.xml", - "ref/dotnet/ru/System.Runtime.xml", - "ref/dotnet/System.Runtime.dll", - "ref/dotnet/System.Runtime.xml", - "ref/dotnet/zh-hans/System.Runtime.xml", - "ref/dotnet/zh-hant/System.Runtime.xml", + "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/net46/_._", + "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.20.nupkg", - "System.Runtime.4.0.20.nupkg.sha512", + "System.Runtime.4.0.21-beta-23516.nupkg", + "System.Runtime.4.0.21-beta-23516.nupkg.sha512", "System.Runtime.nuspec" ] }, @@ -13855,19 +14234,29 @@ "System.Xml.XDocument.4.0.11-beta-23516.nupkg.sha512", "System.Xml.XDocument.nuspec" ] + }, + "WebActivatorEx/2.1.0": { + "type": "package", + "sha512": "0HJ6DpxcTzSGIgcN6Q0jKAwLX1bWKnbeDOvT7vFXB/e4MIrwWc+1XwzihQp0Sr91EUK2N7j5cjZ1cIvWCraeJg==", + "files": [ + "lib/net40/WebActivatorEx.dll", + "WebActivatorEx.2.1.0.nupkg", + "WebActivatorEx.2.1.0.nupkg.sha512", + "WebActivatorEx.nuspec" + ] } }, "projectFileDependencyGroups": { - "": [], + "": [ + "Newtonsoft.Json >= 8.0.2" + ], "DNX,Version=v4.5.1": [ - "Common.Logging >= 3.3.1", "Microsoft.AspNet.Http.Abstractions >= 1.0.0-rc1-final", "Microsoft.Extensions.Logging >= 1.0.0-rc1-final", "Microsoft.AspNet.Http.Extensions >= 1.0.0-rc1-final", "Microsoft.AspNet.Mvc.TagHelpers >= 6.0.0-rc1-final" ], "DNXCore,Version=v5.0": [ - "System.Runtime >= 4.0.20", "System.Runtime.InteropServices >= 4.0.20", "Microsoft.AspNet.Http.Abstractions >= 1.0.0-rc1-final", "Microsoft.Extensions.Logging >= 1.0.0-rc1-final", @@ -13876,7 +14265,11 @@ ], ".NETFramework,Version=v4.0": [ "Common.Logging >= 3.3.1", - "Microsoft.Owin >= 2.1.0" + "Microsoft.Bcl.Async >= 1.0.168", + "Microsoft.Owin >= 2.1.0", + "WebActivatorEx >= 2.1.0", + "fx/System.Web >= 4.0.0", + "fx/System.XML >= 4.0.0" ] } } \ No newline at end of file