diff --git a/README.md b/README.md
index fffe8bc5a..e0b65612c 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,17 @@
MyTested.AspNetCore.Mvc - Fluent testing
framework for ASP.NET Core MVC
====================================
-MyTested.AspNetCore.Mvc is a unit testing library providing easy fluent interface to test the [ASP.NET Core MVC](https://github.com/aspnet/Mvc) framework. It is testing framework agnostic, so you can combine it with a test runner of your choice (e.g. xUnit, NUnit, etc.).
+MyTested.AspNetCore.Mvc is a unit testing library providing an easy fluent interface to test the [ASP.NET Core MVC](https://github.com/aspnet/Mvc) framework. It is testing framework agnostic so that you can combine it with a test runner of your choice (e.g. xUnit, NUnit, etc.).
-[![Build status](https://ci.appveyor.com/api/projects/status/3xlag3a7f87bg4on?svg=true)](https://ci.appveyor.com/project/ivaylokenov/mytested-aspnetcore-mvc) [![NuGet Version](http://img.shields.io/nuget/v/MyTested.AspNetCore.Mvc.svg?style=flat)](https://www.nuget.org/packages/MyTested.AspNetCore.Mvc/)
+[![Build status](https://ci.appveyor.com/api/projects/status/3xlag3a7f87bg4on?svg=true)](https://ci.appveyor.com/project/ivaylokenov/mytested-aspnetcore-mvc) [![NuGet Version](http://img.shields.io/nuget/v/MyTested.AspNetCore.Mvc.svg?style=flat)](https://www.nuget.org/packages/MyTested.AspNetCore.Mvc/) [![NuGet Badge](https://buildstats.info/nuget/MyTested.AspNetCore.Mvc)](https://www.nuget.org/packages/MyTested.AspNetCore.Mvc/)
## Getting started
-It is strongly advised to start with the [tutorial](http://docs.mytestedasp.net/tutorial/intro.html) in order to get familiar with MyTested.AspNetCore.Mvc. Additionally, you may see the [testing guide](http://docs.mytestedasp.net/guide/intro.html) or the [API reference](http://docs.mytestedasp.net/api/index.html) for full list of available features. MyTested.AspNetCore.Mvc is 100% covered by [more than 1800 unit tests](https://github.com/ivaylokenov/MyTested.AspNetCore.Mvc/tree/master/test/) and should work correctly. Almost all items in the [issues page](https://github.com/ivaylokenov/MyTested.AspNetCore.Mvc/issues) are expected future features and enhancements.
+It is strongly advised to start with the [tutorial](http://docs.mytestedasp.net/tutorial/intro.html) in order to get familiar with MyTested.AspNetCore.Mvc. Additionally, you may see the [testing guide](http://docs.mytestedasp.net/guide/intro.html) or the [API reference](http://docs.mytestedasp.net/api/index.html) for a full list of available features. MyTested.AspNetCore.Mvc is 100% covered by [more than 1800 unit tests](https://github.com/ivaylokenov/MyTested.AspNetCore.Mvc/tree/master/test/) and should work correctly. Almost all items in the [issues page](https://github.com/ivaylokenov/MyTested.AspNetCore.Mvc/issues) are expected future features and enhancements.
## Installation
-You can install this library using NuGet into your test project (or reference it directly in your `project.json` file). Currently MyTested.AspNetCore.Mvc works with ASP.NET Core MVC 1.0.1.
+You can install this library using NuGet into your test project (or reference it directly in your `project.json` file). Currently MyTested.AspNetCore.Mvc is fully compatible with ASP.NET Core MVC 1.1.0 and all older versions available on the official NuGet feed.
Install-Package MyTested.AspNetCore.Mvc.Universe
@@ -55,7 +55,7 @@ Make sure to check out the [tutorial](http://docs.mytestedasp.net/tutorial/intro
You can also check out the [provided samples](https://github.com/ivaylokenov/MyTested.AspNetCore.Mvc/tree/master/samples) for real-life ASP.NET Core MVC application testing.
-The easiest way to start with MyTested.AspNetCore.Mvc is to create a `TestStartup` class at the root of the test project in order to register the dependency injection services which will be used by all test cases in the assembly. A fast solution is to inherit from the web project's `Startup` class and replace some of the services with mocked ones by using the provided extension methods.
+The easiest way to start with MyTested.AspNetCore.Mvc is to create a `TestStartup` class at the root of the test project in order to register the dependency injection services which will be used by all test cases in the assembly. A quick solution is to inherit from the web project's `Startup` class and replace some of the services with mocked ones by using the provided extension methods.
```c#
namespace MyApp.Tests
@@ -101,7 +101,7 @@ namespace MyApp.Tests.Controllers
}
```
-Basically, MyTested.AspNetCore.Mvc throws an unhandled exception with a friendly error message if the assertion does not pass and the test fails. The example uses [xUnit](http://xunit.github.io/) but you can use any other framework you like. See the [samples](https://github.com/ivaylokenov/MyTested.AspNetCore.Mvc/tree/master/samples) for other types of test runners and `Startup` class configurations.
+Basically, MyTested.AspNetCore.Mvc throws an unhandled exception with a friendly error message if the assertion does not pass and the test fails. The example uses [xUnit](http://xunit.github.io/), but you can use any other framework you like. See the [samples](https://github.com/ivaylokenov/MyTested.AspNetCore.Mvc/tree/master/samples) for other types of test runners and `Startup` class configurations.
## Examples
@@ -194,7 +194,7 @@ MyMvc
// tests whether model state error exists by using lambda expression
// and with specific tests for the error messages
-// and tests whether the action return view with the same request model
+// and tests whether the action returns view with the same request model
MyMvc
.Controller()
.Calling(c => c.MyAction(requestWithErrors))
@@ -209,7 +209,7 @@ MyMvc
.View(requestWithErrors);
// tests whether the action throws
-// with exception of certain type and with certain message
+// with an exception of particular type and with particular message
MyMvc
.Controller()
.Calling(c => c.ActionWithException())
@@ -238,6 +238,12 @@ MyMvc
.WithModelOfType();
```
+## Versioning
+
+My Tested ASP.NET Core MVC follows the ASP.NET Core MVC versions with which the testing framework is fully compatible. Specifically, the *major* and the *minor* versions will be incremented only when the MVC framework has a new official release. For example, version 1.0.0 of the testing framework will be fully compatible with ASP.NET Core MVC 1.0.0, version 1.1.0 will be fully compatible with ASP.NET Core MVC 1.1.0, version 1.3.15 will be fully compatible with ASP.NET Core MVC 1.3.0, and so on.
+
+The public interface of My Tested ASP.NET Core MVC will not have any breaking changes when the version increases (unless entirely necessary).
+
## License
Code by Ivaylo Kenov. Copyright 2015-2016 Ivaylo Kenov ([http://mytestedasp.net](http://mytestedasp.net))
@@ -246,7 +252,7 @@ MyTested.AspNetCore.Mvc.Lite (the **FREE** and **UNLIMITED** version of the test
The source code of MyTested.AspNetCore.Mvc and its extensions (the full version of the testing library) is available under GNU Affero General Public License/FOSS License Exception.
-Without a license code the full version of the library allows up to 100 assertions (around 25 test cases) per test project.
+Without a license code, the full version of the library allows up to 100 assertions (around 25 test cases) per test project.
**Full-featured license codes can be requested for free by individuals, open-source projects, startups and educational institutions**. See [https://mytestedasp.net/Core/Mvc#free-usage-modal](https://mytestedasp.net/Core/Mvc#free-usage-modal) for more information.
diff --git a/global.json b/global.json
index 4f3bc28de..fbd9512fe 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"projects": [ "src", "test", "samples" ],
"sdk": {
- "version": "1.0.0-preview2-003121"
+ "version": "1.0.0-preview2-1-003177"
}
}
diff --git a/samples/ApplicationParts/ApplicationParts.Controllers/project.json b/samples/ApplicationParts/ApplicationParts.Controllers/project.json
index 8aeffac84..37febb717 100644
--- a/samples/ApplicationParts/ApplicationParts.Controllers/project.json
+++ b/samples/ApplicationParts/ApplicationParts.Controllers/project.json
@@ -1,10 +1,10 @@
{
"dependencies": {
- "NETStandard.Library": "1.6.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "ApplicationParts.Models": "*",
- "ApplicationParts.Services": "*"
+ "NETStandard.Library": "1.6.1",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "ApplicationParts.Models": "*",
+ "ApplicationParts.Services": "*"
},
"frameworks": {
diff --git a/samples/ApplicationParts/ApplicationParts.Controllers/project.lock.json b/samples/ApplicationParts/ApplicationParts.Controllers/project.lock.json
index f4609ed51..7c56869e9 100644
--- a/samples/ApplicationParts/ApplicationParts.Controllers/project.lock.json
+++ b/samples/ApplicationParts/ApplicationParts.Controllers/project.lock.json
@@ -3,13 +3,15 @@
"version": 2,
"targets": {
".NETFramework,Version=v4.5.1": {
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -18,15 +20,16 @@
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Net.Http"
@@ -38,12 +41,13 @@
"lib/net451/Microsoft.AspNetCore.Authentication.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
@@ -52,11 +56,12 @@
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
@@ -65,13 +70,14 @@
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
@@ -80,8 +86,11 @@
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
},
@@ -89,10 +98,11 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
@@ -101,15 +111,16 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Security",
@@ -123,8 +134,11 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
},
@@ -132,10 +146,10 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -144,15 +158,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -161,11 +176,12 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -174,12 +190,11 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -188,15 +203,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
@@ -205,11 +221,13 @@
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -218,13 +236,14 @@
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -233,10 +252,11 @@
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -245,12 +265,13 @@
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
+ "Microsoft.AspNetCore.Identity/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Identity.dll": {}
@@ -259,11 +280,12 @@
"lib/net451/Microsoft.AspNetCore.Identity.dll": {}
}
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Identity": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0"
+ "Microsoft.AspNetCore.Identity": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
@@ -272,36 +294,27 @@
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "9.0.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
@@ -310,19 +323,20 @@
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
@@ -331,11 +345,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -344,10 +359,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -356,20 +372,22 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -378,11 +396,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -391,11 +410,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.ComponentModel.DataAnnotations"
@@ -407,11 +427,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -420,13 +441,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -435,13 +457,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -450,12 +473,13 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -464,13 +488,15 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -479,18 +505,19 @@
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0"
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -499,8 +526,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
},
@@ -508,11 +538,12 @@
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Xml",
@@ -525,14 +556,27 @@
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "1.1.0"
+ },
+ "compile": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
@@ -541,10 +585,11 @@
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -553,12 +598,14 @@
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -599,7 +646,7 @@
"lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"Microsoft.CSharp"
@@ -611,23 +658,24 @@
"lib/net45/_._": {}
}
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
"type": "package",
"compile": {
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
}
},
- "Microsoft.EntityFrameworkCore/1.0.0": {
+ "Microsoft.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Remotion.Linq": "2.1.1",
- "System.Collections.Immutable": "1.2.0",
+ "System.Collections.Immutable": "1.3.0",
"System.Interactive.Async": "3.0.0"
},
"frameworkAssemblies": [
@@ -640,11 +688,12 @@
"lib/net451/Microsoft.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.0": {
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"frameworkAssemblies": [
"System.Data",
@@ -657,13 +706,11 @@
"lib/net451/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -672,12 +719,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -686,11 +734,11 @@
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -699,15 +747,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -716,16 +760,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -734,10 +773,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -747,12 +786,11 @@
"lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -761,10 +799,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -773,11 +812,12 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -786,21 +826,22 @@
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -809,13 +850,14 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Localization.dll": {}
@@ -824,12 +866,11 @@
"lib/net451/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -838,12 +879,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -852,18 +893,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -872,8 +905,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
},
@@ -881,20 +917,13 @@
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -903,8 +932,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
@@ -912,11 +944,11 @@
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -925,12 +957,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -939,17 +972,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -958,7 +987,7 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -967,40 +996,40 @@
"lib/netstandard1.0/_._": {}
}
},
- "NETStandard.Library/1.6.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/9.0.1": {
@@ -1034,7 +1063,7 @@
"lib/net45/Remotion.Linq.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -1043,7 +1072,7 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -1056,7 +1085,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1068,7 +1097,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
@@ -1077,7 +1106,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1089,36 +1118,7 @@
"lib/net45/_._": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.ComponentModel.Primitives.dll": {}
- },
- "runtime": {
- "lib/net45/System.ComponentModel.Primitives.dll": {}
- }
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.ComponentModel.Primitives": "4.1.0"
- },
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.ComponentModel.TypeConverter.dll": {}
- },
- "runtime": {
- "lib/net45/System.ComponentModel.TypeConverter.dll": {}
- }
- },
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1127,7 +1127,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1139,7 +1139,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
@@ -1148,7 +1148,7 @@
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1160,7 +1160,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1169,7 +1169,7 @@
"lib/net45/_._": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1191,7 +1191,7 @@
"lib/net45/System.Interactive.Async.dll": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1203,7 +1203,7 @@
"lib/net45/_._": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.IO.Compression"
@@ -1215,7 +1215,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -1227,7 +1227,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -1251,7 +1251,7 @@
"lib/net45/_._": {}
}
},
- "System.Net.Http/4.1.0": {
+ "System.Net.Http/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Net.Http"
@@ -1263,7 +1263,7 @@
"lib/net45/_._": {}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1275,7 +1275,7 @@
"lib/net45/_._": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1287,7 +1287,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1296,7 +1296,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1317,7 +1317,7 @@
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1326,7 +1326,7 @@
"lib/net45/_._": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1335,7 +1335,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -1349,7 +1349,16 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1361,7 +1370,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -1374,7 +1383,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
@@ -1393,7 +1402,7 @@
}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Numerics"
@@ -1405,19 +1414,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Runtime.Serialization"
- ],
- "compile": {
- "ref/net45/_._": {}
- },
- "runtime": {
- "lib/net45/_._": {}
- }
- },
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1426,7 +1423,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1435,7 +1432,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -1444,7 +1441,7 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1456,7 +1453,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -1469,7 +1466,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -1481,7 +1478,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"compile": {
"ref/net451/_._": {}
@@ -1490,7 +1487,7 @@
"lib/net451/_._": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Xml"
@@ -1502,7 +1499,7 @@
"lib/net45/_._": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Xml.Linq"
@@ -1518,9 +1515,9 @@
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "NETStandard.Library": "1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"net451/ApplicationParts.Models.dll": {}
@@ -1533,7 +1530,7 @@
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "NETStandard.Library": "1.6.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"net451/ApplicationParts.Services.dll": {}
@@ -1544,13 +1541,15 @@
}
},
".NETStandard,Version=v1.6": {
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -1559,16 +1558,16 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
- "System.Net.Http": "4.1.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.dll": {}
@@ -1577,12 +1576,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
@@ -1591,12 +1591,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Claims": "4.0.1"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
@@ -1605,13 +1606,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
@@ -1620,15 +1622,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
@@ -1637,13 +1634,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
@@ -1652,22 +1647,19 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
@@ -1676,13 +1668,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
@@ -1691,10 +1681,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -1703,15 +1693,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -1720,11 +1711,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -1733,12 +1725,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -1747,16 +1738,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
@@ -1765,15 +1756,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Globalization.Extensions": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -1782,14 +1773,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.IO.FileSystem": "4.0.1"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -1798,19 +1789,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebSockets": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0",
+ "System.Net.WebSockets": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -1819,13 +1806,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
+ "Microsoft.AspNetCore.Identity/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.dll": {}
@@ -1834,12 +1821,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.dll": {}
}
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Identity": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.AspNetCore.Identity": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
@@ -1848,36 +1836,29 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
@@ -1886,19 +1867,20 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
@@ -1907,15 +1889,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -1924,10 +1905,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -1936,21 +1918,22 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -1959,11 +1942,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -1972,12 +1956,13 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0",
- "System.ComponentModel.Annotations": "4.1.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.Annotations": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
@@ -1986,11 +1971,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -1999,13 +1985,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -2014,15 +2001,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -2031,16 +2018,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -2049,13 +2034,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -2064,19 +2051,20 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Buffers": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -2085,16 +2073,11 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Threading": "4.0.11",
- "System.Threading.Thread": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
@@ -2103,18 +2086,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
@@ -2123,16 +2101,28 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
@@ -2141,13 +2131,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -2156,15 +2144,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -2238,25 +2225,25 @@
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.0/Microsoft.CSharp.dll": {}
@@ -2265,7 +2252,7 @@
"lib/netstandard1.3/Microsoft.CSharp.dll": {}
}
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
"System.AppContext": "4.1.0",
@@ -2278,27 +2265,24 @@
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
},
"compile": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
}
},
- "Microsoft.EntityFrameworkCore/1.0.0": {
+ "Microsoft.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Remotion.Linq": "2.1.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.Collections.Immutable": "1.2.0",
- "System.ComponentModel.Annotations": "4.1.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.ComponentModel.Annotations": "4.3.0",
"System.Interactive.Async": "3.0.0",
- "System.Linq.Queryable": "4.0.1",
- "System.ObjectModel": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0"
+ "System.Linq.Queryable": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
@@ -2307,14 +2291,14 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.0": {
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.EntityFrameworkCore": "1.0.0",
- "System.Data.Common": "4.1.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Data.Common": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
@@ -2323,13 +2307,11 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -2338,14 +2320,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Linq": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -2354,11 +2335,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -2367,15 +2348,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -2384,16 +2361,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -2402,10 +2374,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
@@ -2418,12 +2390,11 @@
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -2432,10 +2403,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -2444,16 +2416,13 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.IO.FileSystem.Watcher": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -2462,14 +2431,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
@@ -2478,12 +2443,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -2492,15 +2455,15 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Resources.Reader": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Resources.Reader": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
@@ -2509,12 +2472,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -2523,12 +2485,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -2537,18 +2499,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -2557,13 +2511,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
@@ -2572,20 +2523,13 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -2594,15 +2538,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.AppContext": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
@@ -2611,11 +2551,11 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -2624,12 +2564,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -2638,17 +2579,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -2657,7 +2594,7 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2666,7 +2603,7 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.NETCore.Targets/1.0.1": {
+ "Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2675,28 +2612,28 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.Win32.Primitives/4.0.1": {
+ "Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
- "Microsoft.Win32.Registry/4.0.0": {
+ "Microsoft.Win32.Registry/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
@@ -2712,53 +2649,53 @@
}
}
},
- "NETStandard.Library/1.6.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Console": "4.0.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.Compression.ZipFile": "4.0.1",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/9.0.1": {
@@ -2816,11 +2753,38 @@
"lib/netstandard1.0/Remotion.Linq.dll": {}
}
},
- "runtime.native.System/4.0.0": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "debian.8-x64"
+ }
+ }
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.23-x64"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.24-x64"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2829,11 +2793,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.IO.Compression/4.1.0": {
+ "runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2842,11 +2806,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Http/4.0.1": {
+ "runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2855,11 +2819,10 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2868,10 +2831,103 @@
"lib/netstandard1.0/_._": {}
}
},
- "System.AppContext/4.1.0": {
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.13.2-x64"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.42.1-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "rhel.7-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.14.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.10-x64"
+ }
+ }
+ },
+ "System.AppContext/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.AppContext.dll": {}
@@ -2880,14 +2936,14 @@
"lib/netstandard1.6/System.AppContext.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -2896,30 +2952,30 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.dll": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -2928,17 +2984,17 @@
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
@@ -2947,15 +3003,15 @@
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
}
},
- "System.Collections.NonGeneric/4.0.1": {
+ "System.Collections.NonGeneric/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -2964,16 +3020,16 @@
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
- "System.Collections.Specialized/4.0.1": {
+ "System.Collections.Specialized/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -2982,10 +3038,10 @@
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.dll": {}
@@ -2994,20 +3050,20 @@
"lib/netstandard1.3/System.ComponentModel.dll": {}
}
},
- "System.ComponentModel.Annotations/4.1.0": {
+ "System.ComponentModel.Annotations/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
@@ -3016,12 +3072,12 @@
"lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
@@ -3030,24 +3086,24 @@
"lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
@@ -3056,30 +3112,30 @@
"lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Console/4.0.0": {
+ "System.Console/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Console.dll": {}
}
},
- "System.Data.Common/4.1.0": {
+ "System.Data.Common/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
@@ -3088,10 +3144,10 @@
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
@@ -3100,25 +3156,25 @@
"lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
@@ -3171,46 +3227,45 @@
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
}
},
- "System.Dynamic.Runtime/4.0.11": {
+ "System.Dynamic.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
@@ -3219,38 +3274,38 @@
"lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.dll": {}
}
},
- "System.Globalization.Calendars/4.0.1": {
+ "System.Globalization.Calendars/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
- "System.Globalization.Extensions/4.0.1": {
+ "System.Globalization.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
@@ -3285,36 +3340,37 @@
"lib/netstandard1.0/System.Interactive.Async.dll": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.IO.dll": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.IO.Compression": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.dll": {}
@@ -3330,18 +3386,18 @@
}
}
},
- "System.IO.Compression.ZipFile/4.0.1": {
+ "System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -3350,26 +3406,26 @@
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
- "System.IO.FileSystem/4.0.1": {
+ "System.IO.FileSystem/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1": {
+ "System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -3378,25 +3434,25 @@
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0": {
+ "System.IO.FileSystem.Watcher/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
@@ -3416,14 +3472,14 @@
}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.dll": {}
@@ -3432,26 +3488,26 @@
"lib/netstandard1.6/System.Linq.dll": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -3460,17 +3516,17 @@
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
}
},
- "System.Linq.Queryable/4.0.1": {
+ "System.Linq.Queryable/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Linq.Queryable.dll": {}
@@ -3479,35 +3535,35 @@
"lib/netstandard1.3/System.Linq.Queryable.dll": {}
}
},
- "System.Net.Http/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Http.dll": {}
@@ -3523,39 +3579,39 @@
}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
- "System.Net.Sockets/4.1.0": {
+ "System.Net.Sockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
- "System.Net.WebSockets/4.0.0": {
+ "System.Net.WebSockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
@@ -3564,14 +3620,14 @@
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.ObjectModel.dll": {}
@@ -3580,27 +3636,27 @@
"lib/netstandard1.3/System.ObjectModel.dll": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.dll": {}
}
},
- "System.Reflection.Emit/4.0.1": {
+ "System.Reflection.Emit/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
@@ -3609,12 +3665,12 @@
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -3623,13 +3679,13 @@
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
+ "System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -3638,13 +3694,13 @@
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Extensions.dll": {}
@@ -3676,22 +3732,22 @@
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Primitives.dll": {}
}
},
- "System.Reflection.TypeExtensions/4.1.0": {
+ "System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -3700,14 +3756,14 @@
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
}
},
- "System.Resources.Reader/4.0.0": {
+ "System.Resources.Reader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Resources.Reader.dll": {}
@@ -3716,79 +3772,94 @@
"lib/netstandard1.0/System.Resources.Reader.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.dll": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
- "System.Runtime.Handles/4.0.1": {
+ "System.Runtime.Handles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
@@ -3800,12 +3871,12 @@
}
}
},
- "System.Runtime.Loader/4.0.0": {
+ "System.Runtime.Loader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -3814,13 +3885,13 @@
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.Numerics.dll": {}
@@ -3829,11 +3900,11 @@
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
+ "System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
@@ -3842,16 +3913,16 @@
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "System.Security.Claims/4.0.1": {
+ "System.Security.Claims/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
@@ -3860,27 +3931,32 @@
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
+ "System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "unix"
@@ -3891,20 +3967,20 @@
}
}
},
- "System.Security.Cryptography.Cng/4.2.0": {
+ "System.Security.Cryptography.Cng/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -3920,22 +3996,22 @@
}
}
},
- "System.Security.Cryptography.Csp/4.0.0": {
+ "System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -3951,21 +4027,21 @@
}
}
},
- "System.Security.Cryptography.Encoding/4.0.0": {
+ "System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
@@ -3981,22 +4057,22 @@
}
}
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -4009,18 +4085,18 @@
"assetType": "runtime",
"rid": "unix"
}
- }
- },
- "System.Security.Cryptography.Primitives/4.0.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
@@ -4029,34 +4105,34 @@
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Cng": "4.2.0",
- "System.Security.Cryptography.Csp": "4.0.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
@@ -4072,10 +4148,10 @@
}
}
},
- "System.Security.Principal/4.0.1": {
+ "System.Security.Principal/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Security.Principal.dll": {}
@@ -4084,23 +4160,23 @@
"lib/netstandard1.0/System.Security.Principal.dll": {}
}
},
- "System.Security.Principal.Windows/4.0.0": {
+ "System.Security.Principal.Windows/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
@@ -4116,12 +4192,12 @@
}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.dll": {}
@@ -4157,28 +4233,28 @@
}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -4187,15 +4263,15 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
@@ -4204,11 +4280,11 @@
"lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.dll": {}
@@ -4217,13 +4293,13 @@
"lib/netstandard1.3/System.Threading.dll": {}
}
},
- "System.Threading.Overlapped/4.0.1": {
+ "System.Threading.Overlapped/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -4239,23 +4315,23 @@
}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Tasks.dll": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -4283,10 +4359,10 @@
"lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
}
},
- "System.Threading.Thread/4.0.0": {
+ "System.Threading.Thread/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Thread.dll": {}
@@ -4295,35 +4371,35 @@
"lib/netstandard1.3/System.Threading.Thread.dll": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -4332,21 +4408,21 @@
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -4420,9 +4496,9 @@
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "NETStandard.Library": "1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"netstandard1.6/ApplicationParts.Models.dll": {}
@@ -4435,7 +4511,7 @@
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "NETStandard.Library": "1.6.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"netstandard1.6/ApplicationParts.Services.dll": {}
@@ -4447,12 +4523,12 @@
}
},
"libraries": {
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
- "sha512": "MMevi8HnI5GxtNOS9ZqZLuNafltbngXsOrNqyykFveMWFN5a3AfAB7I0qU77tBS9B/N3boRQuyT9AR0BsCQbaw==",
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
+ "sha512": "6HM8/rsSGAQybSZ9sNP2f0Xqh507OJu3kvqRksXeHUXV72yuwFpnauGkfIMSt+gwPSvyk8qGqZB2m4sKCUomhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Antiforgery/1.0.1",
+ "path": "Microsoft.AspNetCore.Antiforgery/1.1.0",
"files": [
- "Microsoft.AspNetCore.Antiforgery.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Antiforgery.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Antiforgery.nuspec",
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
"lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
@@ -4460,12 +4536,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
]
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
- "sha512": "3af/pZSoaIkZPjGPTlpvIXKDA4NCN6O7++iSO4N2rnKjC5OFHnCX5CLzRxO6721kqovIssRPo84q1HvT4IL6GQ==",
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
+ "sha512": "zapEpMe6NM7S2pNYtR1OMQSHLrDPjRASIt7lktBTt6w6+0ocSxwiIoNyRiBys1VbhGJQnE9jNWjj5VpMJbnB9A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.xml",
@@ -4473,12 +4549,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.xml"
]
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
- "sha512": "zWhEmMwAqLnQIn3eWGlfioBkKngLB/cEqhqw+jAPPrelH8nNNCnHKIoC6ZQf5oSPmpTX9vZU7XEOrpXHFxSQGw==",
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
+ "sha512": "0u+Aj0a8PmqUcU0A3ugWH1lE/8jBiww5zjCHTw5RZCTRc6/0M/AVxENDUXcBJXxsVAIkTUXi6iKY8zhFmvLWcw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.Cookies/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.Cookies/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.Cookies.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.Cookies.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.Cookies.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.xml",
@@ -4486,12 +4562,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.xml"
]
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
- "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==",
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
+ "sha512": "dqveE6pqsnzkab2vw+aFExFYeCikF/T+GKZW9ki8dwJuN7M2+jJcgWtYAv83q7NjBARVh2xH8xf0ahzeuXL/WQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authorization/1.0.0",
+ "path": "Microsoft.AspNetCore.Authorization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authorization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authorization.nuspec",
"lib/net451/Microsoft.AspNetCore.Authorization.dll",
"lib/net451/Microsoft.AspNetCore.Authorization.xml",
@@ -4499,12 +4575,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
]
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
- "sha512": "fC8lWOU3+ltkbgQyD1P7eRQ66fGfZkPNU2UkwOI8tyF5FUsd8nRTfzvsO4mSyQfgmgfk2Hc8TGzx/okevZwXkg==",
+ "Microsoft.AspNetCore.Cors/1.1.0": {
+ "sha512": "GtBPVpgjHIO8R+0xXyh9BHTYq4+XKpwfuy9Uo2Iza4mYzfQI06CsJh5p+qkjIxQzroIXN5XNGNnVS9dURR0zBA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cors/1.0.0",
+ "path": "Microsoft.AspNetCore.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cors.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Cors.xml",
@@ -4512,12 +4588,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
- "sha512": "0btvxwOqYNpKTUQrD7LA3p6Wi0vrhfWGBVqIKPS1KtEdkCv3QoVgFO4eJYuClGDS9NXhqk7TWh46/8x8wtZHaw==",
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
+ "sha512": "Oy0pgxQkusvQwIrwbHvGVZhwk59qRVKxcer6HsWw0jCEq2LoQ7mj7x7DovE5ub8UvffLYWx77NMF5uwPtkl8KA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.Internal/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.Internal.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.Internal.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.Internal.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
@@ -4525,12 +4601,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
- "sha512": "OUBTk5RS7b3+Q9Z7F1jAL9JzdWlkITNpUw8EO5Yu1sP4Rq2jaidXKLiEw7oKFbD1Wmcee2s+U/UyHQfy/og7Sw==",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
+ "sha512": "cVlVvsH4/9G6AjrlXVO6unCzuFHnDCGRhPJNufOCclxpwImZUdhi+EIh09gSaCJ55gme2/Vn0ycig0cF9gKcbg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.KeyDerivation.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.KeyDerivation.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
@@ -4538,12 +4614,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml"
]
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
- "sha512": "gt4URT+8ljPk0ePspLqOGPJBm+s6iMvsZqweplhf7wiZSjFiG1uYBNpQ/0dFY7wSx3NMRjekyXzCjvkGAV570g==",
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
+ "sha512": "wu8pk94CExaLvwwDSnXkTtsdL8mRxbLH8uCKbbPqbtIstSM6bOw/454OvOYKf61BB+It//ItJJYdZTy2j8Kelw==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.xml",
@@ -4551,12 +4627,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
]
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
- "sha512": "h5ycDgkqmRdManmYMQVJgzNI7YtVp2X2/os1cKmdfrpfq+m9L8bMKhbd7PCksoLci+aYTOSn45khPl+hpPb9ug==",
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
+ "sha512": "WW6qKPh9A5lNh/bFlXIMttlbLmm2K0O3kyZuFIlL4ShOMyhrJeCHoWPWQ+S5eUBdcuOnd9sPwhlmI5Nvb3NjMA==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
@@ -4564,23 +4640,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
- "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
+ "sha512": "OTLXdoqnhxGzjBewpKiil8C8RzaLMCiWjGDIkr/5kdTNhD0LGT1Dobqprqbg9nKpS99ykJisOguFDTtxpoeSFg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
- "sha512": "8r6qOl1jYyC523ZKM1QNl+6ijIoYWELWm0tpEWqtTIOg9DytHJWshB7usgqiuRmfHXM0EUziR6ouFY7iP7Tuzw==",
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
+ "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
@@ -4588,12 +4664,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
- "sha512": "sHZyhQEoW15T9E36rfdm5Ux6a6RZB0KNM79ccf2IplWASqmlRGhX4ydU3dzQRLhkHpLx16fnWOL0KScsO6BevQ==",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
+ "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
@@ -4601,23 +4677,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
- "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==",
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
+ "sha512": "+zN+RCEAJwzeFfsGIRkNn7NQ0/hrLEKHeKQNegqMRTr42JhuJZfPE+Negz7W/WkgFB3ZQQd9QTth9I3BDlsHzQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Html.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Html.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Html.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http/1.0.0": {
- "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==",
+ "Microsoft.AspNetCore.Http/1.1.0": {
+ "sha512": "N5ejgXmkUH/CQA+lz18HQb9cDZdA365Tm128yYyP34N46uiR9NswEDravug2DXrRiTo+2hOwPT1Tvby3Cdf6lQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http/1.0.0",
+ "path": "Microsoft.AspNetCore.Http/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.dll",
"lib/net451/Microsoft.AspNetCore.Http.xml",
@@ -4625,12 +4701,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
]
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
- "sha512": "OJHlqdJOWKKBfsiVdX4Z4KCNuqvBIu6+1MVKuejRDyHnGyMkNHNoP/dtVzhPqvJXaJg9N4HlD0XNc6GDCFVffg==",
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
+ "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
@@ -4638,12 +4714,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
- "sha512": "GlvCPRpnw2jjHLdbGf/C28NQZLMeX1mugv5BS1a3FCQOJYyuwQZil4JwblR0frLyVrUVoJQ7UXRNZIzEVlO5XA==",
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
+ "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Extensions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Extensions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Extensions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
@@ -4651,12 +4727,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
]
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
- "sha512": "6x7zgfbTo1gL9xMEb7EMO2ES/48bqwnWyfH09z+ubWhnzxdhHls8rtqstPylu5FPD9nid6Vo2pgDm5vufRAy5Q==",
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
+ "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Features/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Features.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Features.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Features.dll",
"lib/net451/Microsoft.AspNetCore.Http.Features.xml",
@@ -4664,12 +4740,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
]
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
- "sha512": "qQXsxDocbx3xMPBVBZ2Es6vw5QalV+z9mGXUPbn/XRbjY1viwQjVToE7BrCanqr7q97ds0ciI2AgQhvny0kkqw==",
+ "Microsoft.AspNetCore.Identity/1.1.0": {
+ "sha512": "M2W5Y0Nd1GLY0M4TYph6zptPp7dhdrMALx1CP4g8iCU5G148j2rRTwMd3o5699+8M8Brtx5cOGiSThadVFKMuQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Identity/1.0.0",
+ "path": "Microsoft.AspNetCore.Identity/1.1.0",
"files": [
- "Microsoft.AspNetCore.Identity.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Identity.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Identity.nuspec",
"lib/net451/Microsoft.AspNetCore.Identity.dll",
"lib/net451/Microsoft.AspNetCore.Identity.xml",
@@ -4677,12 +4753,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.xml"
]
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
- "sha512": "+TX5cTpqRqqjWRHM0BHM02pLv0a5jo+Ai73aLQKKqZOZT/GJgvIyTM1sLeY2ybbfNaEzps8AMFb0r3KzRY11yA==",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
+ "sha512": "ZFZmB6PxNw2dnER96m6iTVLaG5SWH/95reGVgGzwwATxRMzIEMmFdRWNCgSpKUdHsPEyDg9Xd9FLRHFiQsG9jw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0",
+ "path": "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
@@ -4690,23 +4766,25 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml"
]
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
- "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==",
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
+ "sha512": "/mADp5Q1I3oeptoCF8mmAFDMGvlDCLSBatsKCXxk5vQYZUyzOLxoiHgW5QowgIdwnd3AHPmFDib5vm8U2B6q7g==",
"type": "package",
- "path": "Microsoft.AspNetCore.JsonPatch/1.0.0",
+ "path": "Microsoft.AspNetCore.JsonPatch/1.1.0",
"files": [
- "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.JsonPatch.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.JsonPatch.nuspec",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml"
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.xml"
]
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
- "sha512": "DF/maMd9f6ZPoTlU8n6/AGm3fpZNPiiip34bPrBQuloX2a5O0KwyV72qKhJhJNqmVVnDnTu8XYT16ysoFXRxQA==",
+ "Microsoft.AspNetCore.Localization/1.1.0": {
+ "sha512": "Px52xLst9/G4dyGt3fSTIZU3aZoz0IOVoInW/M1WRCOM5DzCkLzPYXOHMpQkc8ZVx7YZmHnB8p9IrvNNyjPO6A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Localization/1.0.0",
+ "path": "Microsoft.AspNetCore.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Localization.xml",
@@ -4714,12 +4792,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
- "sha512": "Perrv2s4hzMbYR/kanzUqcfzxXLo6CThoilhMg7UQXeXEvOtpbDKx0HGimN/pt6Dy2wt3WOQAjAiM1Z8KoRgaA==",
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
+ "sha512": "TDcIjBQRfYAkbcvlU+lMHC0RpuTTSzULEdA0+HvoGgHz6y0Q4wo8CEAWpaRjvt3y3mneuq56d6CReMleFDDd5Q==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.xml",
@@ -4727,12 +4805,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
- "sha512": "Xa9XOA/NEIGSUSyAtc0rQrTRJKcxN8rzvBy0QJn2tRAXVeXc0Lbx4/1ia9kxyn3ygbjhF6bO90ZnC3Z3a2cq5g==",
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
+ "sha512": "r0OA3N1Onua8AcTtFYpK03K3WdwJBL3iFW4XzfMA49ZmAKGf1ARAlrt6Q8WCdBI7nFDJCc1/bdMJ0ozWaq9rhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Abstractions.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
@@ -4740,12 +4818,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
- "sha512": "ntjDDV+g6eveL67fsvGIY7BqZmaR2XYlZpsrXxzjSWKSYBzDfWaUJna5dsPty0hOwz7DCMNbWYrpD+XEr+H0jA==",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
+ "sha512": "cS2ZVqnh9Db3JU5zgw0SRKSYJ/0aYfLDeYRpgJGwjwMsMNa9pw4JK1H3NLkhs7zRAtoet6asXMEZwqFtO/STbw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ApiExplorer.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ApiExplorer.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
@@ -4753,12 +4831,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
- "sha512": "TfUFH0HYbL3DCGkWE24gUDnHoa3pCr4b6xbUiQTnqIbIXdL79qW8mTtfD+RHmAN5bsf1J1fndJJ84/jKri+kiw==",
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
+ "sha512": "6Gxoe6MJPbc9yVx7IEkDlzfNRzQ+JSvlVmFvugoNbpWAefU2F8d76aj7oiGewucXVI8c7oZ1Q0+rx7059j7/fA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Core/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Core/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Core.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Core.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Core.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
@@ -4766,12 +4844,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
- "sha512": "s3Pabc4x5K1xtCpNv/oVAuFyj2Lq+z+qYkmrRqbnqVt+8V39FoW3znPjbVCNu5CjrYSQL2fm3irJ3pM7WLsI/g==",
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
+ "sha512": "0E+RHtEsYwzkbXvLVC81Vu8Mtp24BC9RMuN8RGjeWzwRHDeZaY9erGtoei/2GiFj+3DpqvCzFsRhKp/yVCzrOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Cors/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Cors.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.xml",
@@ -4779,12 +4857,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.xml"
]
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
- "sha512": "y3QkHvOI+vopfhncU9NpUH2MvtZ2Z0EfnApb92jqbmfWL1wd5Np3SHrFSXgI4zVLlM38dMa/QU2SYM3e4T7fFQ==",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
+ "sha512": "kV7IfXeoehKpX0zPrjZ/B1RKnHSKQfmOnXKxupGXuNY64Ly2JgJh+XAxPLQtYy2jUIwRG3PWNhVkWZIazq82wg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
@@ -4792,12 +4870,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
- "sha512": "wM12hSUlF0Eqed44psOYT4fY/RRjMx049A4bBUfqiGr1UFU54zTR8djRLW0dIp1w7Xv5WQ/bgG9jyqiaRbv6jg==",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
+ "sha512": "NHPfvDnqA21/2pa5Uxe7vfO2sZ1sTafSR/L1pGhQxjTUnVQ2k0X3M3wFKPpM9UH9co9Bx3KjV0AcurbfEaCQvA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
@@ -4805,12 +4883,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
- "sha512": "s6Q7l9UtJ/sYxvsbjXuA+5RdKQ70OSLQSLs+UAWrwMtHm9XKTr51gmcG1t1gkWN5f39WSkzJs2brB9fJkFcgvw==",
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
+ "sha512": "XDLAPLW5hdkO8h6Ki4Du/Dw5NUfIsiDDoyaHkzDL5gX5TxOot0bdw/QClIQ65SJqpjuvIZxZXrJV/MFDKwjZ2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Localization/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Localization.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.xml",
@@ -4818,12 +4896,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
- "sha512": "Rc1dkP5LZcuxicrmUTFMfrRF8+id9iVSOA3/DjhO036b7g7BBvknLHKtbbsQ59COB9D8fr9MwKF2Eb99TSCJvg==",
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
+ "sha512": "GKfZhs4I14auXrlOcUHyHVx1zOLt3MeVw2KcABFD8Y8jyVOELj/mnIucREBG73Us4HcT127qenBFkdkz6F/SOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.xml",
@@ -4831,12 +4909,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
- "sha512": "7A9D7ufew8iYmhK/3w05ZdTGGOi9oNzAqy0BJNNF2rm2n9uImquzPmmoCWXFnar7QawVzhXE+ZMSXRUH9n6Glg==",
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
+ "sha512": "9Qi+KEVkmGfXXjfsciKRVJU/EOVm2AYMZuaDiFCJslEll/OTzXnTlKerj4jFbxB3PB1VRqwPL/HIawRGUouruA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.Host.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.Host.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.Host.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.xml",
@@ -4844,12 +4922,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.xml"
]
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
- "sha512": "QadZAsqoIc2D5zceTdLtNnyJALkdhoTIiqvlDlO0SgyPBisyUe4gDEiygwSnLzm8NZ+kKSFhNuX+t+b1O2uIVw==",
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
+ "sha512": "qQz5KEv097INfR7T9Q9kiEi2MY3jdGthU9XW5N6UFrHgFGjMZwra/oCyu/9DsTueW+4zk0cCo5SCneXwHR9uRA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.TagHelpers.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.TagHelpers.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.TagHelpers.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
@@ -4857,12 +4935,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
- "sha512": "1zGeF76JEqvocxdM+H5n/vJunUUVNzKK4LmgnaFdrrCDTrI6MVdok+8TBBUbeI+uNk3ssrLnP3EcHIdvxl66gw==",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
+ "sha512": "Odd9+gRi4DCH3RalGZEdS0xLRcUh8LV9UTCnOVjGwotI1i6Fk2VSxtkAxrVRMd44BL0WfRqJFiTkCixxA2zFig==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
@@ -4870,12 +4948,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
]
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
- "sha512": "+vhlFn8n45hj1M91HYVm2ryLMZ+ZYR/OUdBVE8aUzkvkTVF+3UnNxSY3hAEugcgcbf9/XQTE+DDxEgN4LdYEjg==",
+ "Microsoft.AspNetCore.Razor/1.1.0": {
+ "sha512": "hChh+W6UG0C8aink3KWuX7flFuAiTPrCBfh68fbRJ1sLPk0ELmj6c3zm+VgNXaHEh2OpT/O0eN5XpS1rQ/FcbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Razor.xml",
@@ -4883,12 +4961,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.xml"
]
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
- "sha512": "hsq6xJeqDDb78akZuy79QE3kaCxcigD3vccbIaNrrz7JSXOzayfteF06ToK+J1SXSDRtrBj3XZZfrjiqIY/vCw==",
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
+ "sha512": "hQW8+DRFHCHmTzviW54umnBfX1vc9bv/390r62k85LQsUd5Lo59QQ+IyD5fe6o9g/h946IF8Yl25wd6dEk7YqA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor.Runtime/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor.Runtime/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.Runtime.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.Runtime.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.Runtime.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.xml",
@@ -4896,12 +4974,25 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.xml"
]
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
- "sha512": "NvFvRtYHXWjBbXz5/7F7JDNcdhrE+tG1/Q9R6LmMxFgu8tkl1bqtFZQbMy17FYFkmm8Fn/T81blRGE2nxCbDRA==",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "sha512": "Mdj0FP6fP44sYaSRmhUBEpOXnN3kykpd0/8e48iEoSybId5x5XreIeDEEhTYF+r/QA7H8Y33fjVR1cP996OgDA==",
+ "type": "package",
+ "path": "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0",
+ "files": [
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.1.1.0.nupkg.sha512",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.nuspec",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml"
+ ]
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "sha512": "wrD6DOWc4/euIujz7trLrF3zGVMxOGKRPzYl4e2NFOE/uXz95EnNBHkNuN0Xcgx3xVcb08TMxkoFNT3A+WC0XA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing/1.0.0",
+ "path": "Microsoft.AspNetCore.Routing/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.dll",
"lib/net451/Microsoft.AspNetCore.Routing.xml",
@@ -4909,12 +5000,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
]
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
- "sha512": "Ne5CFiD1xCGSHrGICw7PsVnj7gijfkMfsw52AO6ingcUhE01dc87cJPpfGLnY22MIvqn11ECLbNZYmzFp/Rs+A==",
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
+ "sha512": "/kaFZW4AjHPOIMnqXHGl/KdHxUGOVm9z/U0t3JtKmK5OFnsfuLsUIH2QN2PtXNeOm1eh5Ux2XEyg6YRBgXfPgA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Routing.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
@@ -4922,12 +5013,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
- "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==",
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
+ "sha512": "9w3aHPRUAx+1xOTcsZF6AJCS42viNqWeTcgIE1dmlK/G3NCFkes+MVxwvKt9U9pFIomxqRnD+MGRoBeruEKPbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.WebUtilities/1.0.0",
+ "path": "Microsoft.AspNetCore.WebUtilities/1.1.0",
"files": [
- "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.WebUtilities.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.WebUtilities.nuspec",
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
"lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
@@ -4936,7 +5027,7 @@
]
},
"Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
+ "sha512": "jICz4qN7C8Hq8d5UF0LzqeOTqJMuy21cRDCW8N8K3yiojIhQQ+hAwlcUp7yh4gJOcqh7iEWg/5jlZmXbefO00Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
"files": [
@@ -4952,7 +5043,7 @@
]
},
"Microsoft.CodeAnalysis.Common/1.3.0": {
- "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==",
+ "sha512": "hVgAQZDvOO8LpuhAO557wlqwivTSTstAIIknHTK8y62utH9PgdwEey0TDzJRanReEMTFR3bzdvoFXOe2/X6BGw==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Common/1.3.0",
"files": [
@@ -4968,7 +5059,7 @@
]
},
"Microsoft.CodeAnalysis.CSharp/1.3.0": {
- "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==",
+ "sha512": "8fqBJ4I+IH71mTs+F2w9U/UpJz2pbuO+9XicOxN1pUWU6UZlPgRMwS8e+rcnJp5sgz7tXrB2JoCoP3JuKTHBvg==",
"type": "package",
"path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
"files": [
@@ -4983,12 +5074,12 @@
"lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml"
]
},
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "Microsoft.CSharp/4.3.0": {
+ "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"type": "package",
- "path": "Microsoft.CSharp/4.0.1",
+ "path": "Microsoft.CSharp/4.3.0",
"files": [
- "Microsoft.CSharp.4.0.1.nupkg.sha512",
+ "Microsoft.CSharp.4.3.0.nupkg.sha512",
"Microsoft.CSharp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5040,23 +5131,23 @@
"ref/xamarinwatchos10/_._"
]
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
- "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==",
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "sha512": "Bl6KYfbFSIW3QIRHAp931iR5h01qHjKghdpAtncwbzNUs0+IUZ+XfwkIU0sQsR33ufGvi3u4dZMIYYFysjpHAA==",
"type": "package",
- "path": "Microsoft.DotNet.InternalAbstractions/1.0.0",
+ "path": "Microsoft.DotNet.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.DotNet.InternalAbstractions.1.0.0.nupkg.sha512",
- "Microsoft.DotNet.InternalAbstractions.nuspec",
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll",
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
+ "Microsoft.DotNet.PlatformAbstractions.1.1.0.nupkg.sha512",
+ "Microsoft.DotNet.PlatformAbstractions.nuspec",
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll",
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll"
]
},
- "Microsoft.EntityFrameworkCore/1.0.0": {
- "sha512": "Vqg/v0cXRQZQH0gY3VHHqt0Bt5WZEkDReVpI1sNYKHVbVtnMYFKPp5SiNygosUJYrJk1rSGb8UVkplDNNUkEgg==",
+ "Microsoft.EntityFrameworkCore/1.1.0": {
+ "sha512": "S00vr6pLeoCMbm1PsXNZIceCAA/TUX83W3f2PcLFLGrx2QnGo5aqhtYjHvBhOVKJXZmt52EKEdORoTZVZ/swww==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore/1.0.0",
+ "path": "Microsoft.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.1.0.0.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.dll",
"lib/net451/Microsoft.EntityFrameworkCore.xml",
@@ -5064,12 +5155,12 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml"
]
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.0": {
- "sha512": "LGBab+7o0eq4C3YtvkAxK8W7Ia57eO0Ue0viQgt0STptQ2bUpLzV7q5LfbNl475rt6yTWa/vDQlYVaI64fwqdw==",
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
+ "sha512": "5LkSh1GHK/ZbI/2N6YxyofFKaAVe5/RBN38G6UQzOQVgfJxzucpJVyZt1mGHBkJ4yTlr4WQS9Wr3Ppa5X0opbw==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.Relational/1.0.0",
+ "path": "Microsoft.EntityFrameworkCore.Relational/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.Relational.1.0.0.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.Relational.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.Relational.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.dll",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.xml",
@@ -5077,23 +5168,23 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml"
]
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
- "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==",
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
+ "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
]
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
- "sha512": "6+7zTufCnZ+tfrUo7RbIRR3LB0BxwOwxfXuo0IbLyIvgoToGpWuz5wYEDfCYNOvpig9tY8FA0I1uRHYmITMXMQ==",
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
+ "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Memory/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Memory.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Memory.nuspec",
"lib/net451/Microsoft.Extensions.Caching.Memory.dll",
"lib/net451/Microsoft.Extensions.Caching.Memory.xml",
@@ -5101,78 +5192,79 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml"
]
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
- "sha512": "nJ+Et/rnDMDmGhxvFAKdN3va7y+YDPICv1nUEP8I4IKgOkWwr/dCZHMqxVhJFrkbW9ux8Kd7erC4mvxfZh0WnA==",
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
+ "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
]
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
- "sha512": "zdtkiZNV6LB8xtpmfyUjP/9N9ZCL/ydQ+0bfjun38fbrk+MDEm9M2yeLzRdq+OIt5xExw/KU04wFaVwJ1bhQPg==",
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
+ "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
]
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
- "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==",
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
+ "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
]
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==",
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
+ "sha512": "TG7dJ8GY1Myz9lZ8DJL4i6D05ncJQBi5CjBMXMdJ4edKxaW+vP2DndDd1jJabdMdmVRdGrvybzqkB+A6Df7eDw==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyModel/1.0.0",
+ "path": "Microsoft.Extensions.DependencyModel/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyModel.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyModel.nuspec",
"lib/net451/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
]
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
- "sha512": "4jsqTxG3py/hYSsOtZMkNJ2/CQqPdpwyK7bDUkrwHgqowCFSmx/C+R4IzQ+2AK2Up1fVcu+ldC0gktwidL828A==",
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
+ "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
]
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
- "sha512": "4nbDQfagNr1eILXSFZbTNuAKuZ6SsOyK6ySTMryo67ECi8+EcZBQ12E0aXcxX/aT3v+3pbWSt71NXlEm8tKIxw==",
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
+ "sha512": "S6vQ4HcjYKAmPqyuGNDQ1ILBaTx7SnDvfg/Dby+s55dXNI2WA/blkeIufbDm0MukALsukWya9mdbe7upWj8U5g==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Composite/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Composite/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Composite.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Composite.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Composite.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.xml"
]
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
- "sha512": "Ej5hGWtK3xM9YU+B2O8EdlMcJf5utbDQs9ecnfvwhENQeeNU7iI2jjnRB2d7V6o9SQZmNHPzdPvaNb3PlSMz+Q==",
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
+ "sha512": "ckyGwMGd4v1nE70wZ7ytax+Ef9WHQ6IcE4apLYG4um6Dfcw/Y6QJY0Fcv3Ck9WK/Uj0YMxHnNCZH6MBp6boeEw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Physical/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Physical/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Physical.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Physical.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Physical.nuspec",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.xml",
@@ -5180,36 +5272,36 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml"
]
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
- "sha512": "scXp1Y+hmhQKLe57Z7cSjsAEFtE4zSHHydkg1SpvG56nWwWQVpVcRAbRZsv1qIBR5/vNB4LA9xiOKnvKO/Halg==",
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
+ "sha512": "/NKs5LrUCUARfFbGik/ML5L2YnN33XTf+TUyghjhCzl9HlvLA4l6s3bW+xsbCU0GEmI/MottEEhiDa1dLJJh4A==",
"type": "package",
- "path": "Microsoft.Extensions.FileSystemGlobbing/1.0.0",
+ "path": "Microsoft.Extensions.FileSystemGlobbing/1.1.0",
"files": [
- "Microsoft.Extensions.FileSystemGlobbing.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileSystemGlobbing.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileSystemGlobbing.nuspec",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.xml",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml"
]
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
- "sha512": "nxGoN8o+4clQk103krYRqS5FVVCZc3Tlc09AYj4W8gZ9Q5Jxa2BLW7ss+ogKU/hvNSg2NkJyQTfi9SegGU6ssQ==",
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
+ "sha512": "KAuadrKH0hLZGXfLO/+L6bv4vIeOYpQTjglR5Tu4hm9TJ8sVcPf11qIoU+BXSwalXiaJuazSI9fxbyoIVBsX4A==",
"type": "package",
- "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0",
+ "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0",
"files": [
- "Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Globalization.CultureInfoCache.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Globalization.CultureInfoCache.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml"
]
},
- "Microsoft.Extensions.Localization/1.0.0": {
- "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==",
+ "Microsoft.Extensions.Localization/1.1.0": {
+ "sha512": "1DWqIC1k383XaQ3h+WxyKYmerLHDYH7TY7mDcglylG3Wq+zlX3/UUhUEKO0Ft8RKCLxLh/LhIa9NBvM3cYzLIg==",
"type": "package",
- "path": "Microsoft.Extensions.Localization/1.0.0",
+ "path": "Microsoft.Extensions.Localization/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.nuspec",
"lib/net451/Microsoft.Extensions.Localization.dll",
"lib/net451/Microsoft.Extensions.Localization.xml",
@@ -5217,45 +5309,45 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
]
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
- "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==",
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
+ "sha512": "8KkP9veQupIfAEQFLLQFTo75s2fVKOM9SWeHhdSSUD35uD8DX1zOXAUsuaXwQY8cyt6mSUR5zuUEkgbZXnUKCA==",
"type": "package",
- "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Localization.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging/1.0.0": {
- "sha512": "0mDuASVrd/nMeBYIJSK+9lT3TSmWxUXP/ipVB1pF1ApMN5fqGCckPTNwmOfT4Z9wPkXGnhbwFTGrxZvbzTWxOg==",
+ "Microsoft.Extensions.Logging/1.1.0": {
+ "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
"type": "package",
- "path": "Microsoft.Extensions.Logging/1.0.0",
+ "path": "Microsoft.Extensions.Logging/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
]
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
- "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==",
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
+ "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Abstractions.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
]
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
- "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==",
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
+ "sha512": "8tg7DpFubtj98Lf+N+zpu5VXe9EHCPrqcukpsjC9BSfcnC0Oq8CUZKYUsLScS2pnqEkSNHwuHoWRtJ6xhMO/xg==",
"type": "package",
- "path": "Microsoft.Extensions.ObjectPool/1.0.0",
+ "path": "Microsoft.Extensions.ObjectPool/1.1.0",
"files": [
- "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.ObjectPool.1.1.0.nupkg.sha512",
"Microsoft.Extensions.ObjectPool.nuspec",
"lib/net451/Microsoft.Extensions.ObjectPool.dll",
"lib/net451/Microsoft.Extensions.ObjectPool.xml",
@@ -5263,23 +5355,23 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
]
},
- "Microsoft.Extensions.Options/1.0.0": {
- "sha512": "SdP3yPKF++JTkoa91pBDiE70uQkR/gdXWzOnMPbSj+eOqY1vgY+b8RVl+gh7TrJ2wlCK2QqnQtvCQlPPZRK36w==",
+ "Microsoft.Extensions.Options/1.1.0": {
+ "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
"type": "package",
- "path": "Microsoft.Extensions.Options/1.0.0",
+ "path": "Microsoft.Extensions.Options/1.1.0",
"files": [
- "Microsoft.Extensions.Options.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Options.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Options.dll",
"lib/netstandard1.0/Microsoft.Extensions.Options.xml"
]
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
- "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==",
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
+ "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
"type": "package",
- "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0",
+ "path": "Microsoft.Extensions.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.PlatformAbstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.PlatformAbstractions.nuspec",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
@@ -5287,45 +5379,45 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
]
},
- "Microsoft.Extensions.Primitives/1.0.0": {
- "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==",
+ "Microsoft.Extensions.Primitives/1.1.0": {
+ "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
"type": "package",
- "path": "Microsoft.Extensions.Primitives/1.0.0",
+ "path": "Microsoft.Extensions.Primitives/1.1.0",
"files": [
- "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Primitives.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
]
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
- "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==",
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
+ "sha512": "YnUfcLe/FYL3Mft5HPv7dSSKfZZCZwLG2GQfv3vuxdY4AbWOYLqq/3wIPCNIrgMXvzralWdkESNsb9iw5gKdpg==",
"type": "package",
- "path": "Microsoft.Extensions.WebEncoders/1.0.0",
+ "path": "Microsoft.Extensions.WebEncoders/1.1.0",
"files": [
- "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.WebEncoders.1.1.0.nupkg.sha512",
"Microsoft.Extensions.WebEncoders.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
]
},
- "Microsoft.Net.Http.Headers/1.0.0": {
- "sha512": "1lr92itF1fKR2oEQ6gk1IUsuCgp7UMlf/b1sjlAyuDeUnttj39ra59GQHYpomglJX1UVNpi1/cSBbEsXoNeIhw==",
+ "Microsoft.Net.Http.Headers/1.1.0": {
+ "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
"type": "package",
- "path": "Microsoft.Net.Http.Headers/1.0.0",
+ "path": "Microsoft.Net.Http.Headers/1.1.0",
"files": [
- "Microsoft.Net.Http.Headers.1.0.0.nupkg.sha512",
+ "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
"Microsoft.Net.Http.Headers.nuspec",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
]
},
- "Microsoft.NETCore.Platforms/1.0.1": {
- "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==",
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"type": "package",
- "path": "Microsoft.NETCore.Platforms/1.0.1",
+ "path": "Microsoft.NETCore.Platforms/1.1.0",
"files": [
- "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Platforms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5333,12 +5425,12 @@
"runtime.json"
]
},
- "Microsoft.NETCore.Targets/1.0.1": {
- "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"type": "package",
- "path": "Microsoft.NETCore.Targets/1.0.1",
+ "path": "Microsoft.NETCore.Targets/1.1.0",
"files": [
- "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Targets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5346,12 +5438,12 @@
"runtime.json"
]
},
- "Microsoft.Win32.Primitives/4.0.1": {
- "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"type": "package",
- "path": "Microsoft.Win32.Primitives/4.0.1",
+ "path": "Microsoft.Win32.Primitives/4.3.0",
"files": [
- "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
+ "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
"Microsoft.Win32.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5382,12 +5474,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "Microsoft.Win32.Registry/4.0.0": {
- "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
+ "Microsoft.Win32.Registry/4.3.0": {
+ "sha512": "Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==",
"type": "package",
- "path": "Microsoft.Win32.Registry/4.0.0",
+ "path": "Microsoft.Win32.Registry/4.3.0",
"files": [
- "Microsoft.Win32.Registry.4.0.0.nupkg.sha512",
+ "Microsoft.Win32.Registry.4.3.0.nupkg.sha512",
"Microsoft.Win32.Registry.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5410,12 +5502,12 @@
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
]
},
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
+ "NETStandard.Library/1.6.1": {
+ "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"type": "package",
- "path": "NETStandard.Library/1.6.0",
+ "path": "NETStandard.Library/1.6.1",
"files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
+ "NETStandard.Library.1.6.1.nupkg.sha512",
"NETStandard.Library.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
@@ -5464,60 +5556,204 @@
"lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml"
]
},
- "runtime.native.System/4.0.0": {
- "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "type": "package",
+ "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
"type": "package",
- "path": "runtime.native.System/4.0.0",
+ "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "type": "package",
+ "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "type": "package",
+ "path": "runtime.native.System/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.4.0.0.nupkg.sha512",
+ "runtime.native.System.4.3.0.nupkg.sha512",
"runtime.native.System.nuspec"
]
},
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
+ "path": "runtime.native.System.IO.Compression/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512",
+ "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
"runtime.native.System.IO.Compression.nuspec"
]
},
- "runtime.native.System.Net.Http/4.0.1": {
- "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
+ "runtime.native.System.Net.Http/4.3.0": {
+ "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"type": "package",
- "path": "runtime.native.System.Net.Http/4.0.1",
+ "path": "runtime.native.System.Net.Http/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Http.nuspec"
]
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "type": "package",
+ "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.Apple.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
"type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
+ "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.nuspec"
+ "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
+ ]
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "type": "package",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "type": "package",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
+ ]
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "type": "package",
+ "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "type": "package",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
+ "System.AppContext/4.3.0": {
+ "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
"type": "package",
- "path": "System.AppContext/4.1.0",
+ "path": "System.AppContext/4.3.0",
"files": [
- "System.AppContext.4.1.0.nupkg.sha512",
+ "System.AppContext.4.3.0.nupkg.sha512",
"System.AppContext.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5565,12 +5801,12 @@
"runtimes/aot/lib/netcore50/System.AppContext.dll"
]
},
- "System.Buffers/4.0.0": {
- "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==",
+ "System.Buffers/4.3.0": {
+ "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
"type": "package",
- "path": "System.Buffers/4.0.0",
+ "path": "System.Buffers/4.3.0",
"files": [
- "System.Buffers.4.0.0.nupkg.sha512",
+ "System.Buffers.4.3.0.nupkg.sha512",
"System.Buffers.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5578,12 +5814,12 @@
"lib/netstandard1.1/System.Buffers.dll"
]
},
- "System.Collections/4.0.11": {
- "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"type": "package",
- "path": "System.Collections/4.0.11",
+ "path": "System.Collections/4.3.0",
"files": [
- "System.Collections.4.0.11.nupkg.sha512",
+ "System.Collections.4.3.0.nupkg.sha512",
"System.Collections.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5644,12 +5880,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Concurrent/4.0.12": {
- "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"type": "package",
- "path": "System.Collections.Concurrent/4.0.12",
+ "path": "System.Collections.Concurrent/4.3.0",
"files": [
- "System.Collections.Concurrent.4.0.12.nupkg.sha512",
+ "System.Collections.Concurrent.4.3.0.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5710,12 +5946,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Immutable/1.2.0": {
- "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
+ "System.Collections.Immutable/1.3.0": {
+ "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
"type": "package",
- "path": "System.Collections.Immutable/1.2.0",
+ "path": "System.Collections.Immutable/1.3.0",
"files": [
- "System.Collections.Immutable.1.2.0.nupkg.sha512",
+ "System.Collections.Immutable.1.3.0.nupkg.sha512",
"System.Collections.Immutable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5725,12 +5961,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
]
},
- "System.Collections.NonGeneric/4.0.1": {
- "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"type": "package",
- "path": "System.Collections.NonGeneric/4.0.1",
+ "path": "System.Collections.NonGeneric/4.3.0",
"files": [
- "System.Collections.NonGeneric.4.0.1.nupkg.sha512",
+ "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
"System.Collections.NonGeneric.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5762,12 +5998,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Specialized/4.0.1": {
- "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
+ "System.Collections.Specialized/4.3.0": {
+ "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"type": "package",
- "path": "System.Collections.Specialized/4.0.1",
+ "path": "System.Collections.Specialized/4.3.0",
"files": [
- "System.Collections.Specialized.4.0.1.nupkg.sha512",
+ "System.Collections.Specialized.4.3.0.nupkg.sha512",
"System.Collections.Specialized.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5799,12 +6035,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel/4.0.1": {
- "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
+ "System.ComponentModel/4.3.0": {
+ "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"type": "package",
- "path": "System.ComponentModel/4.0.1",
+ "path": "System.ComponentModel/4.3.0",
"files": [
- "System.ComponentModel.4.0.1.nupkg.sha512",
+ "System.ComponentModel.4.3.0.nupkg.sha512",
"System.ComponentModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5856,12 +6092,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Annotations/4.1.0": {
- "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==",
+ "System.ComponentModel.Annotations/4.3.0": {
+ "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
"type": "package",
- "path": "System.ComponentModel.Annotations/4.1.0",
+ "path": "System.ComponentModel.Annotations/4.3.0",
"files": [
- "System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
"System.ComponentModel.Annotations.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5933,12 +6169,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Primitives/4.1.0": {
- "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
+ "System.ComponentModel.Primitives/4.3.0": {
+ "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"type": "package",
- "path": "System.ComponentModel.Primitives/4.1.0",
+ "path": "System.ComponentModel.Primitives/4.3.0",
"files": [
- "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Primitives.4.3.0.nupkg.sha512",
"System.ComponentModel.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5970,12 +6206,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.TypeConverter/4.1.0": {
- "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"type": "package",
- "path": "System.ComponentModel.TypeConverter/4.1.0",
+ "path": "System.ComponentModel.TypeConverter/4.3.0",
"files": [
- "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
+ "System.ComponentModel.TypeConverter.4.3.0.nupkg.sha512",
"System.ComponentModel.TypeConverter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6021,12 +6257,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"type": "package",
- "path": "System.Console/4.0.0",
+ "path": "System.Console/4.3.0",
"files": [
- "System.Console.4.0.0.nupkg.sha512",
+ "System.Console.4.3.0.nupkg.sha512",
"System.Console.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6057,12 +6293,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Data.Common/4.1.0": {
- "sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==",
+ "System.Data.Common/4.3.0": {
+ "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
"type": "package",
- "path": "System.Data.Common/4.1.0",
+ "path": "System.Data.Common/4.3.0",
"files": [
- "System.Data.Common.4.1.0.nupkg.sha512",
+ "System.Data.Common.4.3.0.nupkg.sha512",
"System.Data.Common.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6106,12 +6342,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Contracts/4.0.1": {
- "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
+ "System.Diagnostics.Contracts/4.3.0": {
+ "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
"type": "package",
- "path": "System.Diagnostics.Contracts/4.0.1",
+ "path": "System.Diagnostics.Contracts/4.3.0",
"files": [
- "System.Diagnostics.Contracts.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
"System.Diagnostics.Contracts.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6164,12 +6400,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
]
},
- "System.Diagnostics.Debug/4.0.11": {
- "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
- "path": "System.Diagnostics.Debug/4.0.11",
+ "path": "System.Diagnostics.Debug/4.3.0",
"files": [
- "System.Diagnostics.Debug.4.0.11.nupkg.sha512",
+ "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6230,12 +6466,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
- "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
"type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.0.0",
+ "path": "System.Diagnostics.DiagnosticSource/4.3.0",
"files": [
- "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512",
+ "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
"System.Diagnostics.DiagnosticSource.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6250,7 +6486,7 @@
]
},
"System.Diagnostics.FileVersionInfo/4.0.0": {
- "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==",
+ "sha512": "VtXkqPMWpaXDFEvbuhroVemeTaaU/j6C3yu6rd+JFLg5AvHAZJb8hUpxwJCM7OFrUpeKmv3A7ZTME8hFYWL6pA==",
"type": "package",
"path": "System.Diagnostics.FileVersionInfo/4.0.0",
"files": [
@@ -6290,7 +6526,7 @@
]
},
"System.Diagnostics.StackTrace/4.0.1": {
- "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==",
+ "sha512": "11ByTAm0qYOgAA0WEyA7vA58Va+WAPYy6Rr+J+gx3PGkUXhRHOFN1UGn+Q+wrPDwscMaNZPiOhFwc8s6UmO/tA==",
"type": "package",
"path": "System.Diagnostics.StackTrace/4.0.1",
"files": [
@@ -6327,12 +6563,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
]
},
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "System.Diagnostics.Tools/4.3.0": {
+ "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
+ "path": "System.Diagnostics.Tools/4.3.0",
"files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6382,12 +6618,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Tracing/4.1.0": {
- "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"type": "package",
- "path": "System.Diagnostics.Tracing/4.1.0",
+ "path": "System.Diagnostics.Tracing/4.3.0",
"files": [
- "System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6470,12 +6706,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Dynamic.Runtime/4.0.11": {
- "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "System.Dynamic.Runtime/4.3.0": {
+ "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"type": "package",
- "path": "System.Dynamic.Runtime/4.0.11",
+ "path": "System.Dynamic.Runtime/4.3.0",
"files": [
- "System.Dynamic.Runtime.4.0.11.nupkg.sha512",
+ "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
"System.Dynamic.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6539,12 +6775,12 @@
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
]
},
- "System.Globalization/4.0.11": {
- "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"type": "package",
- "path": "System.Globalization/4.0.11",
+ "path": "System.Globalization/4.3.0",
"files": [
- "System.Globalization.4.0.11.nupkg.sha512",
+ "System.Globalization.4.3.0.nupkg.sha512",
"System.Globalization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6605,12 +6841,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Calendars/4.0.1": {
- "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
+ "System.Globalization.Calendars/4.3.0": {
+ "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"type": "package",
- "path": "System.Globalization.Calendars/4.0.1",
+ "path": "System.Globalization.Calendars/4.3.0",
"files": [
- "System.Globalization.Calendars.4.0.1.nupkg.sha512",
+ "System.Globalization.Calendars.4.3.0.nupkg.sha512",
"System.Globalization.Calendars.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6641,12 +6877,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Extensions/4.0.1": {
- "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"type": "package",
- "path": "System.Globalization.Extensions/4.0.1",
+ "path": "System.Globalization.Extensions/4.3.0",
"files": [
- "System.Globalization.Extensions.4.0.1.nupkg.sha512",
+ "System.Globalization.Extensions.4.3.0.nupkg.sha512",
"System.Globalization.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6693,12 +6929,12 @@
"lib/netstandard1.0/System.Interactive.Async.xml"
]
},
- "System.IO/4.1.0": {
- "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"type": "package",
- "path": "System.IO/4.1.0",
+ "path": "System.IO/4.3.0",
"files": [
- "System.IO.4.1.0.nupkg.sha512",
+ "System.IO.4.3.0.nupkg.sha512",
"System.IO.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6772,12 +7008,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
+ "System.IO.Compression/4.3.0": {
+ "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"type": "package",
- "path": "System.IO.Compression/4.1.0",
+ "path": "System.IO.Compression/4.3.0",
"files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
+ "System.IO.Compression.4.3.0.nupkg.sha512",
"System.IO.Compression.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6841,12 +7077,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
]
},
- "System.IO.Compression.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
"type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
+ "path": "System.IO.Compression.ZipFile/4.3.0",
"files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
+ "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
"System.IO.Compression.ZipFile.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6878,12 +7114,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem/4.0.1": {
- "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"type": "package",
- "path": "System.IO.FileSystem/4.0.1",
+ "path": "System.IO.FileSystem/4.3.0",
"files": [
- "System.IO.FileSystem.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.4.3.0.nupkg.sha512",
"System.IO.FileSystem.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6914,12 +7150,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Primitives/4.0.1": {
- "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"type": "package",
- "path": "System.IO.FileSystem.Primitives/4.0.1",
+ "path": "System.IO.FileSystem.Primitives/4.3.0",
"files": [
- "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6951,12 +7187,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Watcher/4.0.0": {
- "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==",
+ "System.IO.FileSystem.Watcher/4.3.0": {
+ "sha512": "37IDFU2w6LJ4FrohcVlV1EXviUmAOJIbejVgOUtNaPQyeZW2D/0QSkH8ykehoOd19bWfxp3RRd0xj+yRRIqLhw==",
"type": "package",
- "path": "System.IO.FileSystem.Watcher/4.0.0",
+ "path": "System.IO.FileSystem.Watcher/4.3.0",
"files": [
- "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
+ "System.IO.FileSystem.Watcher.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Watcher.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6992,12 +7228,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Linq/4.1.0": {
- "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"type": "package",
- "path": "System.Linq/4.1.0",
+ "path": "System.Linq/4.3.0",
"files": [
- "System.Linq.4.1.0.nupkg.sha512",
+ "System.Linq.4.3.0.nupkg.sha512",
"System.Linq.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7062,12 +7298,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"type": "package",
- "path": "System.Linq.Expressions/4.1.0",
+ "path": "System.Linq.Expressions/4.3.0",
"files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
+ "System.Linq.Expressions.4.3.0.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7145,7 +7381,7 @@
]
},
"System.Linq.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
+ "sha512": "RXVSHwhbqT4pZdCm+wISM7DGJ2wCkFyRGjMlXkUfnl1t9G4QOv+vasX6ovGb7pfszDH2h1K4b5zf5OpVdc6U/A==",
"type": "package",
"path": "System.Linq.Queryable/4.0.1",
"files": [
@@ -7201,12 +7437,69 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "System.Linq.Queryable/4.3.0",
+ "files": [
+ "System.Linq.Queryable.4.3.0.nupkg.sha512",
+ "System.Linq.Queryable.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._"
+ ]
+ },
+ "System.Net.Http/4.3.0": {
+ "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
"type": "package",
- "path": "System.Net.Http/4.1.0",
+ "path": "System.Net.Http/4.3.0",
"files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
+ "System.Net.Http.4.3.0.nupkg.sha512",
"System.Net.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7281,12 +7574,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
]
},
- "System.Net.Primitives/4.0.11": {
- "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"type": "package",
- "path": "System.Net.Primitives/4.0.11",
+ "path": "System.Net.Primitives/4.3.0",
"files": [
- "System.Net.Primitives.4.0.11.nupkg.sha512",
+ "System.Net.Primitives.4.3.0.nupkg.sha512",
"System.Net.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7358,12 +7651,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Sockets/4.1.0": {
- "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
+ "System.Net.Sockets/4.3.0": {
+ "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
"type": "package",
- "path": "System.Net.Sockets/4.1.0",
+ "path": "System.Net.Sockets/4.3.0",
"files": [
- "System.Net.Sockets.4.1.0.nupkg.sha512",
+ "System.Net.Sockets.4.3.0.nupkg.sha512",
"System.Net.Sockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7394,12 +7687,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebSockets/4.0.0": {
- "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
+ "System.Net.WebSockets/4.3.0": {
+ "sha512": "u6fFNY5q4T8KerUAVbya7bR6b7muBuSTAersyrihkcmE5QhEOiH3t5rh4il15SexbVlpXFHGuMwr/m8fDrnkQg==",
"type": "package",
- "path": "System.Net.WebSockets/4.0.0",
+ "path": "System.Net.WebSockets/4.3.0",
"files": [
- "System.Net.WebSockets.4.0.0.nupkg.sha512",
+ "System.Net.WebSockets.4.3.0.nupkg.sha512",
"System.Net.WebSockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7431,12 +7724,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"type": "package",
- "path": "System.ObjectModel/4.0.12",
+ "path": "System.ObjectModel/4.3.0",
"files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
+ "System.ObjectModel.4.3.0.nupkg.sha512",
"System.ObjectModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7499,12 +7792,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection/4.1.0": {
- "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"type": "package",
- "path": "System.Reflection/4.1.0",
+ "path": "System.Reflection/4.3.0",
"files": [
- "System.Reflection.4.1.0.nupkg.sha512",
+ "System.Reflection.4.3.0.nupkg.sha512",
"System.Reflection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7578,20 +7871,24 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"type": "package",
- "path": "System.Reflection.Emit/4.0.1",
+ "path": "System.Reflection.Emit/4.3.0",
"files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.4.3.0.nupkg.sha512",
"System.Reflection.Emit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.dll",
"lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/net45/_._",
"ref/netstandard1.1/System.Reflection.Emit.dll",
@@ -7608,20 +7905,28 @@
"ref/xamarinmac20/_._"
]
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.0.1",
+ "path": "System.Reflection.Emit.ILGeneration/4.3.0",
"files": [
- "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
"System.Reflection.Emit.ILGeneration.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
@@ -7636,23 +7941,35 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.0.1",
+ "path": "System.Reflection.Emit.Lightweight/4.3.0",
"files": [
- "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
"System.Reflection.Emit.Lightweight.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.Lightweight.dll",
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
@@ -7667,15 +7984,19 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Extensions/4.0.1": {
- "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"type": "package",
- "path": "System.Reflection.Extensions/4.0.1",
+ "path": "System.Reflection.Extensions/4.3.0",
"files": [
- "System.Reflection.Extensions.4.0.1.nupkg.sha512",
+ "System.Reflection.Extensions.4.3.0.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7741,7 +8062,7 @@
]
},
"System.Reflection.Metadata/1.3.0": {
- "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
+ "sha512": "z/W85CR/+3iQJLG8y8dgdHQpee6R1MYw1tFekmSnJ8By3I4y+ohrkC/sn3Q4cwh4fzEWcSG6yxffIovcDrubjQ==",
"type": "package",
"path": "System.Reflection.Metadata/1.3.0",
"files": [
@@ -7755,12 +8076,12 @@
"lib/portable-net45+win8/System.Reflection.Metadata.xml"
]
},
- "System.Reflection.Primitives/4.0.1": {
- "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"type": "package",
- "path": "System.Reflection.Primitives/4.0.1",
+ "path": "System.Reflection.Primitives/4.3.0",
"files": [
- "System.Reflection.Primitives.4.0.1.nupkg.sha512",
+ "System.Reflection.Primitives.4.3.0.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7810,12 +8131,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.TypeExtensions/4.1.0": {
- "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"type": "package",
- "path": "System.Reflection.TypeExtensions/4.1.0",
+ "path": "System.Reflection.TypeExtensions/4.3.0",
"files": [
- "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512",
+ "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7862,24 +8183,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
- "System.Resources.Reader/4.0.0": {
- "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==",
+ "System.Resources.Reader/4.3.0": {
+ "sha512": "AeSwdrdgsRnGRJDofYEJPlotJm6gDDg6WJ1/1lX2Yq8bPwicba7lanPi7adK0SE58zgN5PcGg/h0tuZS+IRAdw==",
"type": "package",
- "path": "System.Resources.Reader/4.0.0",
+ "path": "System.Resources.Reader/4.3.0",
"files": [
- "System.Resources.Reader.4.0.0.nupkg.sha512",
+ "System.Resources.Reader.4.3.0.nupkg.sha512",
"System.Resources.Reader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Resources.Reader.dll"
]
},
- "System.Resources.ResourceManager/4.0.1": {
- "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"type": "package",
- "path": "System.Resources.ResourceManager/4.0.1",
+ "path": "System.Resources.ResourceManager/4.3.0",
"files": [
- "System.Resources.ResourceManager.4.0.1.nupkg.sha512",
+ "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7929,12 +8250,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime/4.1.0": {
- "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"type": "package",
- "path": "System.Runtime/4.1.0",
+ "path": "System.Runtime/4.3.0",
"files": [
- "System.Runtime.4.1.0.nupkg.sha512",
+ "System.Runtime.4.3.0.nupkg.sha512",
"System.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8019,12 +8340,25 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Extensions/4.1.0": {
- "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "sha512": "rcnXA1U9W3QUtMSGoyoNHH6w4V5Rxa/EKXmzpORUYlDAlDB34hIQoU57ATXl8xHa83VvzRm6PcElEizgUd7U5w==",
+ "type": "package",
+ "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
+ "files": [
+ "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
+ "System.Runtime.CompilerServices.Unsafe.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"type": "package",
- "path": "System.Runtime.Extensions/4.1.0",
+ "path": "System.Runtime.Extensions/4.3.0",
"files": [
- "System.Runtime.Extensions.4.1.0.nupkg.sha512",
+ "System.Runtime.Extensions.4.3.0.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8098,12 +8432,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Handles/4.0.1": {
- "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"type": "package",
- "path": "System.Runtime.Handles/4.0.1",
+ "path": "System.Runtime.Handles/4.3.0",
"files": [
- "System.Runtime.Handles.4.0.1.nupkg.sha512",
+ "System.Runtime.Handles.4.3.0.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8134,12 +8468,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices/4.1.0": {
- "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"type": "package",
- "path": "System.Runtime.InteropServices/4.1.0",
+ "path": "System.Runtime.InteropServices/4.3.0",
"files": [
- "System.Runtime.InteropServices.4.1.0.nupkg.sha512",
+ "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8147,6 +8481,7 @@
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
@@ -8158,6 +8493,7 @@
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
@@ -8169,6 +8505,7 @@
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
@@ -8222,18 +8559,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
"type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0",
+ "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
"files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.0.0.nupkg.sha512",
+ "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.RuntimeInformation.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/xamarinios10/_._",
@@ -8254,17 +8592,23 @@
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
]
},
- "System.Runtime.Loader/4.0.0": {
- "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
"type": "package",
- "path": "System.Runtime.Loader/4.0.0",
+ "path": "System.Runtime.Loader/4.3.0",
"files": [
- "System.Runtime.Loader.4.0.0.nupkg.sha512",
+ "System.Runtime.Loader.4.3.0.nupkg.sha512",
"System.Runtime.Loader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net462/_._",
"lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/netstandard1.5/System.Runtime.Loader.dll",
"ref/netstandard1.5/System.Runtime.Loader.xml",
"ref/netstandard1.5/de/System.Runtime.Loader.xml",
@@ -8278,12 +8622,12 @@
"ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
]
},
- "System.Runtime.Numerics/4.0.1": {
- "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
+ "System.Runtime.Numerics/4.3.0": {
+ "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"type": "package",
- "path": "System.Runtime.Numerics/4.0.1",
+ "path": "System.Runtime.Numerics/4.3.0",
"files": [
- "System.Runtime.Numerics.4.0.1.nupkg.sha512",
+ "System.Runtime.Numerics.4.3.0.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8333,12 +8677,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"type": "package",
- "path": "System.Runtime.Serialization.Primitives/4.1.1",
+ "path": "System.Runtime.Serialization.Primitives/4.3.0",
"files": [
- "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
+ "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
"System.Runtime.Serialization.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8404,12 +8748,12 @@
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
]
},
- "System.Security.Claims/4.0.1": {
- "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==",
+ "System.Security.Claims/4.3.0": {
+ "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
"type": "package",
- "path": "System.Security.Claims/4.0.1",
+ "path": "System.Security.Claims/4.3.0",
"files": [
- "System.Security.Claims.4.0.1.nupkg.sha512",
+ "System.Security.Claims.4.3.0.nupkg.sha512",
"System.Security.Claims.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8441,12 +8785,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
- "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.2.0",
+ "path": "System.Security.Cryptography.Algorithms/4.3.0",
"files": [
- "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8471,6 +8815,7 @@
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
@@ -8479,12 +8824,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
]
},
- "System.Security.Cryptography.Cng/4.2.0": {
- "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
"type": "package",
- "path": "System.Security.Cryptography.Cng/4.2.0",
+ "path": "System.Security.Cryptography.Cng/4.3.0",
"files": [
- "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Cng.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8505,12 +8850,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
]
},
- "System.Security.Cryptography.Csp/4.0.0": {
- "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"type": "package",
- "path": "System.Security.Cryptography.Csp/4.0.0",
+ "path": "System.Security.Cryptography.Csp/4.3.0",
"files": [
- "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Csp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8535,12 +8880,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
]
},
- "System.Security.Cryptography.Encoding/4.0.0": {
- "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"type": "package",
- "path": "System.Security.Cryptography.Encoding/4.0.0",
+ "path": "System.Security.Cryptography.Encoding/4.3.0",
"files": [
- "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8574,12 +8919,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
]
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
- "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
"type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.0.0",
+ "path": "System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
- "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
"System.Security.Cryptography.OpenSsl.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8588,12 +8933,12 @@
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
]
},
- "System.Security.Cryptography.Primitives/4.0.0": {
- "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"type": "package",
- "path": "System.Security.Cryptography.Primitives/4.0.0",
+ "path": "System.Security.Cryptography.Primitives/4.3.0",
"files": [
- "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8615,12 +8960,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.1.0",
+ "path": "System.Security.Cryptography.X509Certificates/4.3.0",
"files": [
- "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512",
+ "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8669,12 +9014,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
]
},
- "System.Security.Principal/4.0.1": {
- "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==",
+ "System.Security.Principal/4.3.0": {
+ "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
"type": "package",
- "path": "System.Security.Principal/4.0.1",
+ "path": "System.Security.Principal/4.3.0",
"files": [
- "System.Security.Principal.4.0.1.nupkg.sha512",
+ "System.Security.Principal.4.3.0.nupkg.sha512",
"System.Security.Principal.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8726,12 +9071,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Principal.Windows/4.0.0": {
- "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==",
+ "System.Security.Principal.Windows/4.3.0": {
+ "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
"type": "package",
- "path": "System.Security.Principal.Windows/4.0.0",
+ "path": "System.Security.Principal.Windows/4.3.0",
"files": [
- "System.Security.Principal.Windows.4.0.0.nupkg.sha512",
+ "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
"System.Security.Principal.Windows.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8753,12 +9098,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
]
},
- "System.Text.Encoding/4.0.11": {
- "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"type": "package",
- "path": "System.Text.Encoding/4.0.11",
+ "path": "System.Text.Encoding/4.3.0",
"files": [
- "System.Text.Encoding.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.4.3.0.nupkg.sha512",
"System.Text.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8820,7 +9165,7 @@
]
},
"System.Text.Encoding.CodePages/4.0.1": {
- "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
+ "sha512": "Mknrs0YEgYwQbDuTYiOqqos9jx6vXvqH/YTQARKLUv8TJCYXuL7M9Yq7DAlxHDELI39BmSmMDA9/cVIw7ExT+A==",
"type": "package",
"path": "System.Text.Encoding.CodePages/4.0.1",
"files": [
@@ -8856,12 +9201,12 @@
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
]
},
- "System.Text.Encoding.Extensions/4.0.11": {
- "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"type": "package",
- "path": "System.Text.Encoding.Extensions/4.0.11",
+ "path": "System.Text.Encoding.Extensions/4.3.0",
"files": [
- "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
"System.Text.Encoding.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8922,12 +9267,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encodings.Web/4.0.0": {
- "sha512": "TWZnuiJgPDAEEUfobD7njXvSVR2Toz+jvKWds6yL4oSztmKQfnWzucczjzA+6Dv1bktBdY71sZW1YN0X6m9chQ==",
+ "System.Text.Encodings.Web/4.3.0": {
+ "sha512": "ilLTKoirqw+Mbt+6x1MOxZKEwflasdP5WNuo5m5rKSXtAqazlEDqdyBH1XbvENuDQUtKNeP48CI1dyDNlEAeOA==",
"type": "package",
- "path": "System.Text.Encodings.Web/4.0.0",
+ "path": "System.Text.Encodings.Web/4.3.0",
"files": [
- "System.Text.Encodings.Web.4.0.0.nupkg.sha512",
+ "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
"System.Text.Encodings.Web.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8935,12 +9280,12 @@
"lib/netstandard1.0/System.Text.Encodings.Web.xml"
]
},
- "System.Text.RegularExpressions/4.1.0": {
- "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "System.Text.RegularExpressions/4.3.0": {
+ "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"type": "package",
- "path": "System.Text.RegularExpressions/4.1.0",
+ "path": "System.Text.RegularExpressions/4.3.0",
"files": [
- "System.Text.RegularExpressions.4.1.0.nupkg.sha512",
+ "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
"System.Text.RegularExpressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8973,6 +9318,7 @@
"ref/netcore50/ru/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
@@ -9016,12 +9362,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading/4.0.11": {
- "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"type": "package",
- "path": "System.Threading/4.0.11",
+ "path": "System.Threading/4.3.0",
"files": [
- "System.Threading.4.0.11.nupkg.sha512",
+ "System.Threading.4.3.0.nupkg.sha512",
"System.Threading.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9085,12 +9431,12 @@
"runtimes/aot/lib/netcore50/System.Threading.dll"
]
},
- "System.Threading.Overlapped/4.0.1": {
- "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==",
+ "System.Threading.Overlapped/4.3.0": {
+ "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
"type": "package",
- "path": "System.Threading.Overlapped/4.0.1",
+ "path": "System.Threading.Overlapped/4.3.0",
"files": [
- "System.Threading.Overlapped.4.0.1.nupkg.sha512",
+ "System.Threading.Overlapped.4.3.0.nupkg.sha512",
"System.Threading.Overlapped.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9113,12 +9459,12 @@
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
]
},
- "System.Threading.Tasks/4.0.11": {
- "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"type": "package",
- "path": "System.Threading.Tasks/4.0.11",
+ "path": "System.Threading.Tasks/4.3.0",
"files": [
- "System.Threading.Tasks.4.0.11.nupkg.sha512",
+ "System.Threading.Tasks.4.3.0.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9179,12 +9525,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Tasks.Extensions/4.0.0": {
- "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"type": "package",
- "path": "System.Threading.Tasks.Extensions/4.0.0",
+ "path": "System.Threading.Tasks.Extensions/4.3.0",
"files": [
- "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512",
+ "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9195,7 +9541,7 @@
]
},
"System.Threading.Tasks.Parallel/4.0.1": {
- "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==",
+ "sha512": "BiZhquGtjf+8u7qAi/V7C9MqvFXFSzScEgWThBn4QkOFISr+e+X518COpR4g02+aMqj1jkVe9d8p7d+V71LH/Q==",
"type": "package",
"path": "System.Threading.Tasks.Parallel/4.0.1",
"files": [
@@ -9249,12 +9595,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Thread/4.0.0": {
- "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
+ "System.Threading.Thread/4.3.0": {
+ "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
"type": "package",
- "path": "System.Threading.Thread/4.0.0",
+ "path": "System.Threading.Thread/4.3.0",
"files": [
- "System.Threading.Thread.4.0.0.nupkg.sha512",
+ "System.Threading.Thread.4.3.0.nupkg.sha512",
"System.Threading.Thread.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9287,12 +9633,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Timer/4.0.1": {
- "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "System.Threading.Timer/4.3.0": {
+ "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
"type": "package",
- "path": "System.Threading.Timer/4.0.1",
+ "path": "System.Threading.Timer/4.3.0",
"files": [
- "System.Threading.Timer.4.0.1.nupkg.sha512",
+ "System.Threading.Timer.4.3.0.nupkg.sha512",
"System.Threading.Timer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9340,18 +9686,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.ReaderWriter/4.0.11": {
- "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "System.Xml.ReaderWriter/4.3.0": {
+ "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"type": "package",
- "path": "System.Xml.ReaderWriter/4.0.11",
+ "path": "System.Xml.ReaderWriter/4.3.0",
"files": [
- "System.Xml.ReaderWriter.4.0.11.nupkg.sha512",
+ "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
"System.Xml.ReaderWriter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
+ "lib/net46/System.Xml.ReaderWriter.dll",
"lib/netcore50/System.Xml.ReaderWriter.dll",
"lib/netstandard1.3/System.Xml.ReaderWriter.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
@@ -9365,6 +9712,7 @@
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
+ "ref/net46/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.xml",
"ref/netcore50/de/System.Xml.ReaderWriter.xml",
@@ -9408,12 +9756,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "System.Xml.XDocument/4.3.0": {
+ "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"type": "package",
- "path": "System.Xml.XDocument/4.0.11",
+ "path": "System.Xml.XDocument/4.3.0",
"files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
+ "System.Xml.XDocument.4.3.0.nupkg.sha512",
"System.Xml.XDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9477,7 +9825,7 @@
]
},
"System.Xml.XmlDocument/4.0.1": {
- "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
+ "sha512": "QUdzLPVLBXg+3hQiTgLSy6lnMIN4Pj6+kRU2GJCwMooXHJvHp2PUjBg5Ms3r+ewPcu3dewET6v0a9UqPaUrTaw==",
"type": "package",
"path": "System.Xml.XmlDocument/4.0.1",
"files": [
@@ -9514,7 +9862,7 @@
]
},
"System.Xml.XPath/4.0.1": {
- "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
+ "sha512": "drxlpwgSyGH1S1lsW5pqBCQ7TLdAKjVl+G1F1HYAVDFdRBtAHCORwW2/IbMCidAb8jxjJPBTyUkcTrEedIXvoQ==",
"type": "package",
"path": "System.Xml.XPath/4.0.1",
"files": [
@@ -9551,7 +9899,7 @@
]
},
"System.Xml.XPath.XDocument/4.0.1": {
- "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==",
+ "sha512": "9beITE7Jz3Q0vTBbs7OeYVI57jpJJP5s5O7l6s5OnfOoY87o4lau9HbXARVaZ5leWeDPch/xvw7tO4oEBa2r2w==",
"type": "package",
"path": "System.Xml.XPath.XDocument/4.0.1",
"files": [
@@ -9602,9 +9950,9 @@
"": [
"ApplicationParts.Models",
"ApplicationParts.Services",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 1.0.0",
- "Microsoft.AspNetCore.Mvc >= 1.0.1",
- "NETStandard.Library >= 1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 1.1.0",
+ "Microsoft.AspNetCore.Mvc >= 1.1.0",
+ "NETStandard.Library >= 1.6.1"
],
".NETFramework,Version=v4.5.1": [],
".NETStandard,Version=v1.6": []
diff --git a/samples/ApplicationParts/ApplicationParts.Models/project.json b/samples/ApplicationParts/ApplicationParts.Models/project.json
index 32a1bdfbe..dc897381c 100644
--- a/samples/ApplicationParts/ApplicationParts.Models/project.json
+++ b/samples/ApplicationParts/ApplicationParts.Models/project.json
@@ -1,8 +1,8 @@
{
"dependencies": {
- "NETStandard.Library": "1.6.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1"
+ "NETStandard.Library": "1.6.1",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0"
},
"frameworks": {
diff --git a/samples/ApplicationParts/ApplicationParts.Models/project.lock.json b/samples/ApplicationParts/ApplicationParts.Models/project.lock.json
index d3355c75b..a8cb05706 100644
--- a/samples/ApplicationParts/ApplicationParts.Models/project.lock.json
+++ b/samples/ApplicationParts/ApplicationParts.Models/project.lock.json
@@ -3,13 +3,15 @@
"version": 2,
"targets": {
".NETFramework,Version=v4.5.1": {
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -18,15 +20,16 @@
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Net.Http"
@@ -38,12 +41,13 @@
"lib/net451/Microsoft.AspNetCore.Authentication.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
@@ -52,11 +56,12 @@
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
@@ -65,13 +70,14 @@
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
@@ -80,8 +86,11 @@
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
},
@@ -89,10 +98,11 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
@@ -101,15 +111,16 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Security",
@@ -123,8 +134,11 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
},
@@ -132,10 +146,10 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -144,15 +158,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -161,11 +176,12 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -174,12 +190,11 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -188,15 +203,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
@@ -205,11 +221,13 @@
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -218,13 +236,14 @@
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -233,10 +252,11 @@
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -245,12 +265,13 @@
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
+ "Microsoft.AspNetCore.Identity/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Identity.dll": {}
@@ -259,11 +280,12 @@
"lib/net451/Microsoft.AspNetCore.Identity.dll": {}
}
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Identity": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0"
+ "Microsoft.AspNetCore.Identity": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
@@ -272,36 +294,27 @@
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "9.0.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
@@ -310,19 +323,20 @@
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
@@ -331,11 +345,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -344,10 +359,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -356,20 +372,22 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -378,11 +396,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -391,11 +410,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.ComponentModel.DataAnnotations"
@@ -407,11 +427,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -420,13 +441,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -435,13 +457,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -450,12 +473,13 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -464,13 +488,15 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -479,18 +505,19 @@
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0"
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -499,8 +526,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
},
@@ -508,11 +538,12 @@
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Xml",
@@ -525,14 +556,27 @@
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "1.1.0"
+ },
+ "compile": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
@@ -541,10 +585,11 @@
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -553,12 +598,14 @@
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -599,7 +646,7 @@
"lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"Microsoft.CSharp"
@@ -611,23 +658,24 @@
"lib/net45/_._": {}
}
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
"type": "package",
"compile": {
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
}
},
- "Microsoft.EntityFrameworkCore/1.0.0": {
+ "Microsoft.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Remotion.Linq": "2.1.1",
- "System.Collections.Immutable": "1.2.0",
+ "System.Collections.Immutable": "1.3.0",
"System.Interactive.Async": "3.0.0"
},
"frameworkAssemblies": [
@@ -640,11 +688,12 @@
"lib/net451/Microsoft.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.0": {
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"frameworkAssemblies": [
"System.Data",
@@ -657,13 +706,11 @@
"lib/net451/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -672,12 +719,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -686,11 +734,11 @@
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -699,15 +747,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -716,16 +760,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -734,10 +773,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -747,12 +786,11 @@
"lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -761,10 +799,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -773,11 +812,12 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -786,21 +826,22 @@
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -809,13 +850,14 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Localization.dll": {}
@@ -824,12 +866,11 @@
"lib/net451/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -838,12 +879,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -852,18 +893,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -872,8 +905,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
},
@@ -881,20 +917,13 @@
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -903,8 +932,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
@@ -912,11 +944,11 @@
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -925,12 +957,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -939,17 +972,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -958,7 +987,7 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -967,40 +996,40 @@
"lib/netstandard1.0/_._": {}
}
},
- "NETStandard.Library/1.6.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/9.0.1": {
@@ -1034,7 +1063,7 @@
"lib/net45/Remotion.Linq.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -1043,7 +1072,7 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -1056,7 +1085,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1068,7 +1097,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
@@ -1077,7 +1106,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1089,36 +1118,7 @@
"lib/net45/_._": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.ComponentModel.Primitives.dll": {}
- },
- "runtime": {
- "lib/net45/System.ComponentModel.Primitives.dll": {}
- }
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.ComponentModel.Primitives": "4.1.0"
- },
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.ComponentModel.TypeConverter.dll": {}
- },
- "runtime": {
- "lib/net45/System.ComponentModel.TypeConverter.dll": {}
- }
- },
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1127,7 +1127,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1139,7 +1139,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
@@ -1148,7 +1148,7 @@
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1160,7 +1160,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1169,7 +1169,7 @@
"lib/net45/_._": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1191,7 +1191,7 @@
"lib/net45/System.Interactive.Async.dll": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1203,7 +1203,7 @@
"lib/net45/_._": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.IO.Compression"
@@ -1215,7 +1215,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -1227,7 +1227,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -1251,7 +1251,7 @@
"lib/net45/_._": {}
}
},
- "System.Net.Http/4.1.0": {
+ "System.Net.Http/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Net.Http"
@@ -1263,7 +1263,7 @@
"lib/net45/_._": {}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1275,7 +1275,7 @@
"lib/net45/_._": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1287,7 +1287,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1296,7 +1296,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1317,7 +1317,7 @@
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1326,7 +1326,7 @@
"lib/net45/_._": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1335,7 +1335,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -1349,7 +1349,16 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1361,7 +1370,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -1374,7 +1383,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
@@ -1393,7 +1402,7 @@
}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Numerics"
@@ -1405,19 +1414,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Runtime.Serialization"
- ],
- "compile": {
- "ref/net45/_._": {}
- },
- "runtime": {
- "lib/net45/_._": {}
- }
- },
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1426,7 +1423,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -1435,7 +1432,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -1444,7 +1441,7 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -1456,7 +1453,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -1469,7 +1466,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -1481,7 +1478,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"compile": {
"ref/net451/_._": {}
@@ -1490,7 +1487,7 @@
"lib/net451/_._": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Xml"
@@ -1502,7 +1499,7 @@
"lib/net45/_._": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Xml.Linq"
@@ -1516,13 +1513,15 @@
}
},
".NETStandard,Version=v1.6": {
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -1531,16 +1530,16 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
- "System.Net.Http": "4.1.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.dll": {}
@@ -1549,12 +1548,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
@@ -1563,12 +1563,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Claims": "4.0.1"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
@@ -1577,13 +1578,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
@@ -1592,15 +1594,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
@@ -1609,13 +1606,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
@@ -1624,22 +1619,19 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
@@ -1648,13 +1640,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
@@ -1663,10 +1653,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -1675,15 +1665,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -1692,11 +1683,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -1705,12 +1697,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -1719,16 +1710,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
@@ -1737,15 +1728,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Globalization.Extensions": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -1754,14 +1745,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.IO.FileSystem": "4.0.1"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -1770,19 +1761,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebSockets": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0",
+ "System.Net.WebSockets": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -1791,13 +1778,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
+ "Microsoft.AspNetCore.Identity/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.dll": {}
@@ -1806,12 +1793,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.dll": {}
}
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Identity": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.AspNetCore.Identity": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
@@ -1820,36 +1808,29 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
@@ -1858,19 +1839,20 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
@@ -1879,15 +1861,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -1896,10 +1877,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -1908,21 +1890,22 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -1931,11 +1914,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -1944,12 +1928,13 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0",
- "System.ComponentModel.Annotations": "4.1.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.Annotations": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
@@ -1958,11 +1943,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -1971,13 +1957,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -1986,15 +1973,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -2003,16 +1990,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -2021,13 +2006,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -2036,19 +2023,20 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Buffers": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -2057,16 +2045,11 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Threading": "4.0.11",
- "System.Threading.Thread": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
@@ -2075,18 +2058,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
@@ -2095,16 +2073,28 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
@@ -2113,13 +2103,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -2128,15 +2116,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -2210,25 +2197,25 @@
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.0/Microsoft.CSharp.dll": {}
@@ -2237,7 +2224,7 @@
"lib/netstandard1.3/Microsoft.CSharp.dll": {}
}
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
"System.AppContext": "4.1.0",
@@ -2250,27 +2237,24 @@
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
},
"compile": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
}
},
- "Microsoft.EntityFrameworkCore/1.0.0": {
+ "Microsoft.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Remotion.Linq": "2.1.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.Collections.Immutable": "1.2.0",
- "System.ComponentModel.Annotations": "4.1.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.ComponentModel.Annotations": "4.3.0",
"System.Interactive.Async": "3.0.0",
- "System.Linq.Queryable": "4.0.1",
- "System.ObjectModel": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0"
+ "System.Linq.Queryable": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
@@ -2279,14 +2263,14 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.0": {
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.EntityFrameworkCore": "1.0.0",
- "System.Data.Common": "4.1.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Data.Common": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
@@ -2295,13 +2279,11 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -2310,14 +2292,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Linq": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -2326,11 +2307,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -2339,15 +2320,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -2356,16 +2333,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -2374,10 +2346,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
@@ -2390,12 +2362,11 @@
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -2404,10 +2375,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -2416,16 +2388,13 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.IO.FileSystem.Watcher": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -2434,14 +2403,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
@@ -2450,12 +2415,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -2464,15 +2427,15 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Resources.Reader": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Resources.Reader": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
@@ -2481,12 +2444,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -2495,12 +2457,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -2509,18 +2471,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -2529,13 +2483,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
@@ -2544,20 +2495,13 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -2566,15 +2510,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.AppContext": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
@@ -2583,11 +2523,11 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -2596,12 +2536,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -2610,17 +2551,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -2629,7 +2566,7 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2638,7 +2575,7 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.NETCore.Targets/1.0.1": {
+ "Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2647,28 +2584,28 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.Win32.Primitives/4.0.1": {
+ "Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
- "Microsoft.Win32.Registry/4.0.0": {
+ "Microsoft.Win32.Registry/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
@@ -2684,53 +2621,53 @@
}
}
},
- "NETStandard.Library/1.6.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Console": "4.0.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.Compression.ZipFile": "4.0.1",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/9.0.1": {
@@ -2788,11 +2725,38 @@
"lib/netstandard1.0/Remotion.Linq.dll": {}
}
},
- "runtime.native.System/4.0.0": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "debian.8-x64"
+ }
+ }
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.23-x64"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.24-x64"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2801,11 +2765,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.IO.Compression/4.1.0": {
+ "runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2814,11 +2778,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Http/4.0.1": {
+ "runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2827,11 +2791,10 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2840,10 +2803,103 @@
"lib/netstandard1.0/_._": {}
}
},
- "System.AppContext/4.1.0": {
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.13.2-x64"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.42.1-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "rhel.7-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.14.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.10-x64"
+ }
+ }
+ },
+ "System.AppContext/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.AppContext.dll": {}
@@ -2852,14 +2908,14 @@
"lib/netstandard1.6/System.AppContext.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -2868,30 +2924,30 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.dll": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -2900,17 +2956,17 @@
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
@@ -2919,15 +2975,15 @@
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
}
},
- "System.Collections.NonGeneric/4.0.1": {
+ "System.Collections.NonGeneric/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -2936,16 +2992,16 @@
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
- "System.Collections.Specialized/4.0.1": {
+ "System.Collections.Specialized/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -2954,10 +3010,10 @@
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.dll": {}
@@ -2966,20 +3022,20 @@
"lib/netstandard1.3/System.ComponentModel.dll": {}
}
},
- "System.ComponentModel.Annotations/4.1.0": {
+ "System.ComponentModel.Annotations/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
@@ -2988,12 +3044,12 @@
"lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
@@ -3002,24 +3058,24 @@
"lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
@@ -3028,30 +3084,30 @@
"lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Console/4.0.0": {
+ "System.Console/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Console.dll": {}
}
},
- "System.Data.Common/4.1.0": {
+ "System.Data.Common/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
@@ -3060,10 +3116,10 @@
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
@@ -3072,25 +3128,25 @@
"lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
@@ -3143,46 +3199,45 @@
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
}
},
- "System.Dynamic.Runtime/4.0.11": {
+ "System.Dynamic.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
@@ -3191,38 +3246,38 @@
"lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.dll": {}
}
},
- "System.Globalization.Calendars/4.0.1": {
+ "System.Globalization.Calendars/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
- "System.Globalization.Extensions/4.0.1": {
+ "System.Globalization.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
@@ -3257,36 +3312,37 @@
"lib/netstandard1.0/System.Interactive.Async.dll": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.IO.dll": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.IO.Compression": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.dll": {}
@@ -3302,18 +3358,18 @@
}
}
},
- "System.IO.Compression.ZipFile/4.0.1": {
+ "System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -3322,26 +3378,26 @@
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
- "System.IO.FileSystem/4.0.1": {
+ "System.IO.FileSystem/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1": {
+ "System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -3350,25 +3406,25 @@
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0": {
+ "System.IO.FileSystem.Watcher/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
@@ -3388,14 +3444,14 @@
}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.dll": {}
@@ -3404,26 +3460,26 @@
"lib/netstandard1.6/System.Linq.dll": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -3432,17 +3488,17 @@
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
}
},
- "System.Linq.Queryable/4.0.1": {
+ "System.Linq.Queryable/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Linq.Queryable.dll": {}
@@ -3451,35 +3507,35 @@
"lib/netstandard1.3/System.Linq.Queryable.dll": {}
}
},
- "System.Net.Http/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Http.dll": {}
@@ -3495,39 +3551,39 @@
}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
- "System.Net.Sockets/4.1.0": {
+ "System.Net.Sockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
- "System.Net.WebSockets/4.0.0": {
+ "System.Net.WebSockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
@@ -3536,14 +3592,14 @@
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.ObjectModel.dll": {}
@@ -3552,27 +3608,27 @@
"lib/netstandard1.3/System.ObjectModel.dll": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.dll": {}
}
},
- "System.Reflection.Emit/4.0.1": {
+ "System.Reflection.Emit/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
@@ -3581,12 +3637,12 @@
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -3595,13 +3651,13 @@
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
+ "System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -3610,13 +3666,13 @@
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Extensions.dll": {}
@@ -3648,22 +3704,22 @@
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Primitives.dll": {}
}
},
- "System.Reflection.TypeExtensions/4.1.0": {
+ "System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -3672,14 +3728,14 @@
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
}
},
- "System.Resources.Reader/4.0.0": {
+ "System.Resources.Reader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Resources.Reader.dll": {}
@@ -3688,79 +3744,94 @@
"lib/netstandard1.0/System.Resources.Reader.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.dll": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
- "System.Runtime.Handles/4.0.1": {
+ "System.Runtime.Handles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
@@ -3772,12 +3843,12 @@
}
}
},
- "System.Runtime.Loader/4.0.0": {
+ "System.Runtime.Loader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -3786,13 +3857,13 @@
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.Numerics.dll": {}
@@ -3801,11 +3872,11 @@
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
+ "System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
@@ -3814,16 +3885,16 @@
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "System.Security.Claims/4.0.1": {
+ "System.Security.Claims/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
@@ -3832,27 +3903,32 @@
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
+ "System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "unix"
@@ -3863,20 +3939,20 @@
}
}
},
- "System.Security.Cryptography.Cng/4.2.0": {
+ "System.Security.Cryptography.Cng/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -3892,22 +3968,22 @@
}
}
},
- "System.Security.Cryptography.Csp/4.0.0": {
+ "System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -3923,21 +3999,21 @@
}
}
},
- "System.Security.Cryptography.Encoding/4.0.0": {
+ "System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
@@ -3953,22 +4029,22 @@
}
}
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -3981,18 +4057,18 @@
"assetType": "runtime",
"rid": "unix"
}
- }
- },
- "System.Security.Cryptography.Primitives/4.0.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
@@ -4001,34 +4077,34 @@
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Cng": "4.2.0",
- "System.Security.Cryptography.Csp": "4.0.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
@@ -4044,10 +4120,10 @@
}
}
},
- "System.Security.Principal/4.0.1": {
+ "System.Security.Principal/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Security.Principal.dll": {}
@@ -4056,23 +4132,23 @@
"lib/netstandard1.0/System.Security.Principal.dll": {}
}
},
- "System.Security.Principal.Windows/4.0.0": {
+ "System.Security.Principal.Windows/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
@@ -4088,12 +4164,12 @@
}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.dll": {}
@@ -4129,28 +4205,28 @@
}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -4159,15 +4235,15 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
@@ -4176,11 +4252,11 @@
"lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.dll": {}
@@ -4189,13 +4265,13 @@
"lib/netstandard1.3/System.Threading.dll": {}
}
},
- "System.Threading.Overlapped/4.0.1": {
+ "System.Threading.Overlapped/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -4211,23 +4287,23 @@
}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Tasks.dll": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -4255,10 +4331,10 @@
"lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
}
},
- "System.Threading.Thread/4.0.0": {
+ "System.Threading.Thread/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Thread.dll": {}
@@ -4267,35 +4343,35 @@
"lib/netstandard1.3/System.Threading.Thread.dll": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -4304,21 +4380,21 @@
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -4391,12 +4467,12 @@
}
},
"libraries": {
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
- "sha512": "MMevi8HnI5GxtNOS9ZqZLuNafltbngXsOrNqyykFveMWFN5a3AfAB7I0qU77tBS9B/N3boRQuyT9AR0BsCQbaw==",
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
+ "sha512": "6HM8/rsSGAQybSZ9sNP2f0Xqh507OJu3kvqRksXeHUXV72yuwFpnauGkfIMSt+gwPSvyk8qGqZB2m4sKCUomhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Antiforgery/1.0.1",
+ "path": "Microsoft.AspNetCore.Antiforgery/1.1.0",
"files": [
- "Microsoft.AspNetCore.Antiforgery.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Antiforgery.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Antiforgery.nuspec",
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
"lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
@@ -4404,12 +4480,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
]
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
- "sha512": "3af/pZSoaIkZPjGPTlpvIXKDA4NCN6O7++iSO4N2rnKjC5OFHnCX5CLzRxO6721kqovIssRPo84q1HvT4IL6GQ==",
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
+ "sha512": "zapEpMe6NM7S2pNYtR1OMQSHLrDPjRASIt7lktBTt6w6+0ocSxwiIoNyRiBys1VbhGJQnE9jNWjj5VpMJbnB9A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.xml",
@@ -4417,12 +4493,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.xml"
]
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
- "sha512": "zWhEmMwAqLnQIn3eWGlfioBkKngLB/cEqhqw+jAPPrelH8nNNCnHKIoC6ZQf5oSPmpTX9vZU7XEOrpXHFxSQGw==",
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
+ "sha512": "0u+Aj0a8PmqUcU0A3ugWH1lE/8jBiww5zjCHTw5RZCTRc6/0M/AVxENDUXcBJXxsVAIkTUXi6iKY8zhFmvLWcw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.Cookies/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.Cookies/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.Cookies.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.Cookies.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.Cookies.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.xml",
@@ -4430,12 +4506,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.xml"
]
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
- "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==",
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
+ "sha512": "dqveE6pqsnzkab2vw+aFExFYeCikF/T+GKZW9ki8dwJuN7M2+jJcgWtYAv83q7NjBARVh2xH8xf0ahzeuXL/WQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authorization/1.0.0",
+ "path": "Microsoft.AspNetCore.Authorization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authorization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authorization.nuspec",
"lib/net451/Microsoft.AspNetCore.Authorization.dll",
"lib/net451/Microsoft.AspNetCore.Authorization.xml",
@@ -4443,12 +4519,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
]
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
- "sha512": "fC8lWOU3+ltkbgQyD1P7eRQ66fGfZkPNU2UkwOI8tyF5FUsd8nRTfzvsO4mSyQfgmgfk2Hc8TGzx/okevZwXkg==",
+ "Microsoft.AspNetCore.Cors/1.1.0": {
+ "sha512": "GtBPVpgjHIO8R+0xXyh9BHTYq4+XKpwfuy9Uo2Iza4mYzfQI06CsJh5p+qkjIxQzroIXN5XNGNnVS9dURR0zBA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cors/1.0.0",
+ "path": "Microsoft.AspNetCore.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cors.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Cors.xml",
@@ -4456,12 +4532,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
- "sha512": "0btvxwOqYNpKTUQrD7LA3p6Wi0vrhfWGBVqIKPS1KtEdkCv3QoVgFO4eJYuClGDS9NXhqk7TWh46/8x8wtZHaw==",
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
+ "sha512": "Oy0pgxQkusvQwIrwbHvGVZhwk59qRVKxcer6HsWw0jCEq2LoQ7mj7x7DovE5ub8UvffLYWx77NMF5uwPtkl8KA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.Internal/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.Internal.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.Internal.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.Internal.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
@@ -4469,12 +4545,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
- "sha512": "OUBTk5RS7b3+Q9Z7F1jAL9JzdWlkITNpUw8EO5Yu1sP4Rq2jaidXKLiEw7oKFbD1Wmcee2s+U/UyHQfy/og7Sw==",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
+ "sha512": "cVlVvsH4/9G6AjrlXVO6unCzuFHnDCGRhPJNufOCclxpwImZUdhi+EIh09gSaCJ55gme2/Vn0ycig0cF9gKcbg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.KeyDerivation.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.KeyDerivation.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
@@ -4482,12 +4558,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml"
]
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
- "sha512": "gt4URT+8ljPk0ePspLqOGPJBm+s6iMvsZqweplhf7wiZSjFiG1uYBNpQ/0dFY7wSx3NMRjekyXzCjvkGAV570g==",
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
+ "sha512": "wu8pk94CExaLvwwDSnXkTtsdL8mRxbLH8uCKbbPqbtIstSM6bOw/454OvOYKf61BB+It//ItJJYdZTy2j8Kelw==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.xml",
@@ -4495,12 +4571,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
]
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
- "sha512": "h5ycDgkqmRdManmYMQVJgzNI7YtVp2X2/os1cKmdfrpfq+m9L8bMKhbd7PCksoLci+aYTOSn45khPl+hpPb9ug==",
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
+ "sha512": "WW6qKPh9A5lNh/bFlXIMttlbLmm2K0O3kyZuFIlL4ShOMyhrJeCHoWPWQ+S5eUBdcuOnd9sPwhlmI5Nvb3NjMA==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
@@ -4508,23 +4584,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
- "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
+ "sha512": "OTLXdoqnhxGzjBewpKiil8C8RzaLMCiWjGDIkr/5kdTNhD0LGT1Dobqprqbg9nKpS99ykJisOguFDTtxpoeSFg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
- "sha512": "8r6qOl1jYyC523ZKM1QNl+6ijIoYWELWm0tpEWqtTIOg9DytHJWshB7usgqiuRmfHXM0EUziR6ouFY7iP7Tuzw==",
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
+ "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
@@ -4532,12 +4608,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
- "sha512": "sHZyhQEoW15T9E36rfdm5Ux6a6RZB0KNM79ccf2IplWASqmlRGhX4ydU3dzQRLhkHpLx16fnWOL0KScsO6BevQ==",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
+ "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
@@ -4545,23 +4621,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
- "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==",
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
+ "sha512": "+zN+RCEAJwzeFfsGIRkNn7NQ0/hrLEKHeKQNegqMRTr42JhuJZfPE+Negz7W/WkgFB3ZQQd9QTth9I3BDlsHzQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Html.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Html.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Html.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http/1.0.0": {
- "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==",
+ "Microsoft.AspNetCore.Http/1.1.0": {
+ "sha512": "N5ejgXmkUH/CQA+lz18HQb9cDZdA365Tm128yYyP34N46uiR9NswEDravug2DXrRiTo+2hOwPT1Tvby3Cdf6lQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http/1.0.0",
+ "path": "Microsoft.AspNetCore.Http/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.dll",
"lib/net451/Microsoft.AspNetCore.Http.xml",
@@ -4569,12 +4645,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
]
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
- "sha512": "OJHlqdJOWKKBfsiVdX4Z4KCNuqvBIu6+1MVKuejRDyHnGyMkNHNoP/dtVzhPqvJXaJg9N4HlD0XNc6GDCFVffg==",
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
+ "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
@@ -4582,12 +4658,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
- "sha512": "GlvCPRpnw2jjHLdbGf/C28NQZLMeX1mugv5BS1a3FCQOJYyuwQZil4JwblR0frLyVrUVoJQ7UXRNZIzEVlO5XA==",
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
+ "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Extensions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Extensions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Extensions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
@@ -4595,12 +4671,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
]
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
- "sha512": "6x7zgfbTo1gL9xMEb7EMO2ES/48bqwnWyfH09z+ubWhnzxdhHls8rtqstPylu5FPD9nid6Vo2pgDm5vufRAy5Q==",
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
+ "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Features/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Features.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Features.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Features.dll",
"lib/net451/Microsoft.AspNetCore.Http.Features.xml",
@@ -4608,12 +4684,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
]
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
- "sha512": "qQXsxDocbx3xMPBVBZ2Es6vw5QalV+z9mGXUPbn/XRbjY1viwQjVToE7BrCanqr7q97ds0ciI2AgQhvny0kkqw==",
+ "Microsoft.AspNetCore.Identity/1.1.0": {
+ "sha512": "M2W5Y0Nd1GLY0M4TYph6zptPp7dhdrMALx1CP4g8iCU5G148j2rRTwMd3o5699+8M8Brtx5cOGiSThadVFKMuQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Identity/1.0.0",
+ "path": "Microsoft.AspNetCore.Identity/1.1.0",
"files": [
- "Microsoft.AspNetCore.Identity.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Identity.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Identity.nuspec",
"lib/net451/Microsoft.AspNetCore.Identity.dll",
"lib/net451/Microsoft.AspNetCore.Identity.xml",
@@ -4621,12 +4697,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.xml"
]
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
- "sha512": "+TX5cTpqRqqjWRHM0BHM02pLv0a5jo+Ai73aLQKKqZOZT/GJgvIyTM1sLeY2ybbfNaEzps8AMFb0r3KzRY11yA==",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
+ "sha512": "ZFZmB6PxNw2dnER96m6iTVLaG5SWH/95reGVgGzwwATxRMzIEMmFdRWNCgSpKUdHsPEyDg9Xd9FLRHFiQsG9jw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0",
+ "path": "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
@@ -4634,23 +4710,25 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml"
]
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
- "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==",
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
+ "sha512": "/mADp5Q1I3oeptoCF8mmAFDMGvlDCLSBatsKCXxk5vQYZUyzOLxoiHgW5QowgIdwnd3AHPmFDib5vm8U2B6q7g==",
"type": "package",
- "path": "Microsoft.AspNetCore.JsonPatch/1.0.0",
+ "path": "Microsoft.AspNetCore.JsonPatch/1.1.0",
"files": [
- "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.JsonPatch.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.JsonPatch.nuspec",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml"
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.xml"
]
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
- "sha512": "DF/maMd9f6ZPoTlU8n6/AGm3fpZNPiiip34bPrBQuloX2a5O0KwyV72qKhJhJNqmVVnDnTu8XYT16ysoFXRxQA==",
+ "Microsoft.AspNetCore.Localization/1.1.0": {
+ "sha512": "Px52xLst9/G4dyGt3fSTIZU3aZoz0IOVoInW/M1WRCOM5DzCkLzPYXOHMpQkc8ZVx7YZmHnB8p9IrvNNyjPO6A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Localization/1.0.0",
+ "path": "Microsoft.AspNetCore.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Localization.xml",
@@ -4658,12 +4736,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
- "sha512": "Perrv2s4hzMbYR/kanzUqcfzxXLo6CThoilhMg7UQXeXEvOtpbDKx0HGimN/pt6Dy2wt3WOQAjAiM1Z8KoRgaA==",
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
+ "sha512": "TDcIjBQRfYAkbcvlU+lMHC0RpuTTSzULEdA0+HvoGgHz6y0Q4wo8CEAWpaRjvt3y3mneuq56d6CReMleFDDd5Q==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.xml",
@@ -4671,12 +4749,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
- "sha512": "Xa9XOA/NEIGSUSyAtc0rQrTRJKcxN8rzvBy0QJn2tRAXVeXc0Lbx4/1ia9kxyn3ygbjhF6bO90ZnC3Z3a2cq5g==",
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
+ "sha512": "r0OA3N1Onua8AcTtFYpK03K3WdwJBL3iFW4XzfMA49ZmAKGf1ARAlrt6Q8WCdBI7nFDJCc1/bdMJ0ozWaq9rhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Abstractions.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
@@ -4684,12 +4762,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
- "sha512": "ntjDDV+g6eveL67fsvGIY7BqZmaR2XYlZpsrXxzjSWKSYBzDfWaUJna5dsPty0hOwz7DCMNbWYrpD+XEr+H0jA==",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
+ "sha512": "cS2ZVqnh9Db3JU5zgw0SRKSYJ/0aYfLDeYRpgJGwjwMsMNa9pw4JK1H3NLkhs7zRAtoet6asXMEZwqFtO/STbw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ApiExplorer.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ApiExplorer.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
@@ -4697,12 +4775,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
- "sha512": "TfUFH0HYbL3DCGkWE24gUDnHoa3pCr4b6xbUiQTnqIbIXdL79qW8mTtfD+RHmAN5bsf1J1fndJJ84/jKri+kiw==",
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
+ "sha512": "6Gxoe6MJPbc9yVx7IEkDlzfNRzQ+JSvlVmFvugoNbpWAefU2F8d76aj7oiGewucXVI8c7oZ1Q0+rx7059j7/fA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Core/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Core/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Core.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Core.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Core.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
@@ -4710,12 +4788,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
- "sha512": "s3Pabc4x5K1xtCpNv/oVAuFyj2Lq+z+qYkmrRqbnqVt+8V39FoW3znPjbVCNu5CjrYSQL2fm3irJ3pM7WLsI/g==",
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
+ "sha512": "0E+RHtEsYwzkbXvLVC81Vu8Mtp24BC9RMuN8RGjeWzwRHDeZaY9erGtoei/2GiFj+3DpqvCzFsRhKp/yVCzrOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Cors/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Cors.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.xml",
@@ -4723,12 +4801,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.xml"
]
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
- "sha512": "y3QkHvOI+vopfhncU9NpUH2MvtZ2Z0EfnApb92jqbmfWL1wd5Np3SHrFSXgI4zVLlM38dMa/QU2SYM3e4T7fFQ==",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
+ "sha512": "kV7IfXeoehKpX0zPrjZ/B1RKnHSKQfmOnXKxupGXuNY64Ly2JgJh+XAxPLQtYy2jUIwRG3PWNhVkWZIazq82wg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
@@ -4736,12 +4814,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
- "sha512": "wM12hSUlF0Eqed44psOYT4fY/RRjMx049A4bBUfqiGr1UFU54zTR8djRLW0dIp1w7Xv5WQ/bgG9jyqiaRbv6jg==",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
+ "sha512": "NHPfvDnqA21/2pa5Uxe7vfO2sZ1sTafSR/L1pGhQxjTUnVQ2k0X3M3wFKPpM9UH9co9Bx3KjV0AcurbfEaCQvA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
@@ -4749,12 +4827,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
- "sha512": "s6Q7l9UtJ/sYxvsbjXuA+5RdKQ70OSLQSLs+UAWrwMtHm9XKTr51gmcG1t1gkWN5f39WSkzJs2brB9fJkFcgvw==",
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
+ "sha512": "XDLAPLW5hdkO8h6Ki4Du/Dw5NUfIsiDDoyaHkzDL5gX5TxOot0bdw/QClIQ65SJqpjuvIZxZXrJV/MFDKwjZ2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Localization/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Localization.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.xml",
@@ -4762,12 +4840,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
- "sha512": "Rc1dkP5LZcuxicrmUTFMfrRF8+id9iVSOA3/DjhO036b7g7BBvknLHKtbbsQ59COB9D8fr9MwKF2Eb99TSCJvg==",
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
+ "sha512": "GKfZhs4I14auXrlOcUHyHVx1zOLt3MeVw2KcABFD8Y8jyVOELj/mnIucREBG73Us4HcT127qenBFkdkz6F/SOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.xml",
@@ -4775,12 +4853,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
- "sha512": "7A9D7ufew8iYmhK/3w05ZdTGGOi9oNzAqy0BJNNF2rm2n9uImquzPmmoCWXFnar7QawVzhXE+ZMSXRUH9n6Glg==",
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
+ "sha512": "9Qi+KEVkmGfXXjfsciKRVJU/EOVm2AYMZuaDiFCJslEll/OTzXnTlKerj4jFbxB3PB1VRqwPL/HIawRGUouruA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.Host.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.Host.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.Host.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.xml",
@@ -4788,12 +4866,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.xml"
]
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
- "sha512": "QadZAsqoIc2D5zceTdLtNnyJALkdhoTIiqvlDlO0SgyPBisyUe4gDEiygwSnLzm8NZ+kKSFhNuX+t+b1O2uIVw==",
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
+ "sha512": "qQz5KEv097INfR7T9Q9kiEi2MY3jdGthU9XW5N6UFrHgFGjMZwra/oCyu/9DsTueW+4zk0cCo5SCneXwHR9uRA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.TagHelpers.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.TagHelpers.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.TagHelpers.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
@@ -4801,12 +4879,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
- "sha512": "1zGeF76JEqvocxdM+H5n/vJunUUVNzKK4LmgnaFdrrCDTrI6MVdok+8TBBUbeI+uNk3ssrLnP3EcHIdvxl66gw==",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
+ "sha512": "Odd9+gRi4DCH3RalGZEdS0xLRcUh8LV9UTCnOVjGwotI1i6Fk2VSxtkAxrVRMd44BL0WfRqJFiTkCixxA2zFig==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
@@ -4814,12 +4892,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
]
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
- "sha512": "+vhlFn8n45hj1M91HYVm2ryLMZ+ZYR/OUdBVE8aUzkvkTVF+3UnNxSY3hAEugcgcbf9/XQTE+DDxEgN4LdYEjg==",
+ "Microsoft.AspNetCore.Razor/1.1.0": {
+ "sha512": "hChh+W6UG0C8aink3KWuX7flFuAiTPrCBfh68fbRJ1sLPk0ELmj6c3zm+VgNXaHEh2OpT/O0eN5XpS1rQ/FcbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Razor.xml",
@@ -4827,12 +4905,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.xml"
]
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
- "sha512": "hsq6xJeqDDb78akZuy79QE3kaCxcigD3vccbIaNrrz7JSXOzayfteF06ToK+J1SXSDRtrBj3XZZfrjiqIY/vCw==",
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
+ "sha512": "hQW8+DRFHCHmTzviW54umnBfX1vc9bv/390r62k85LQsUd5Lo59QQ+IyD5fe6o9g/h946IF8Yl25wd6dEk7YqA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor.Runtime/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor.Runtime/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.Runtime.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.Runtime.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.Runtime.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.xml",
@@ -4840,12 +4918,25 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.xml"
]
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
- "sha512": "NvFvRtYHXWjBbXz5/7F7JDNcdhrE+tG1/Q9R6LmMxFgu8tkl1bqtFZQbMy17FYFkmm8Fn/T81blRGE2nxCbDRA==",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "sha512": "Mdj0FP6fP44sYaSRmhUBEpOXnN3kykpd0/8e48iEoSybId5x5XreIeDEEhTYF+r/QA7H8Y33fjVR1cP996OgDA==",
+ "type": "package",
+ "path": "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0",
+ "files": [
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.1.1.0.nupkg.sha512",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.nuspec",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml"
+ ]
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "sha512": "wrD6DOWc4/euIujz7trLrF3zGVMxOGKRPzYl4e2NFOE/uXz95EnNBHkNuN0Xcgx3xVcb08TMxkoFNT3A+WC0XA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing/1.0.0",
+ "path": "Microsoft.AspNetCore.Routing/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.dll",
"lib/net451/Microsoft.AspNetCore.Routing.xml",
@@ -4853,12 +4944,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
]
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
- "sha512": "Ne5CFiD1xCGSHrGICw7PsVnj7gijfkMfsw52AO6ingcUhE01dc87cJPpfGLnY22MIvqn11ECLbNZYmzFp/Rs+A==",
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
+ "sha512": "/kaFZW4AjHPOIMnqXHGl/KdHxUGOVm9z/U0t3JtKmK5OFnsfuLsUIH2QN2PtXNeOm1eh5Ux2XEyg6YRBgXfPgA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Routing.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
@@ -4866,12 +4957,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
- "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==",
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
+ "sha512": "9w3aHPRUAx+1xOTcsZF6AJCS42viNqWeTcgIE1dmlK/G3NCFkes+MVxwvKt9U9pFIomxqRnD+MGRoBeruEKPbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.WebUtilities/1.0.0",
+ "path": "Microsoft.AspNetCore.WebUtilities/1.1.0",
"files": [
- "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.WebUtilities.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.WebUtilities.nuspec",
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
"lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
@@ -4880,7 +4971,7 @@
]
},
"Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
+ "sha512": "jICz4qN7C8Hq8d5UF0LzqeOTqJMuy21cRDCW8N8K3yiojIhQQ+hAwlcUp7yh4gJOcqh7iEWg/5jlZmXbefO00Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
"files": [
@@ -4896,7 +4987,7 @@
]
},
"Microsoft.CodeAnalysis.Common/1.3.0": {
- "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==",
+ "sha512": "hVgAQZDvOO8LpuhAO557wlqwivTSTstAIIknHTK8y62utH9PgdwEey0TDzJRanReEMTFR3bzdvoFXOe2/X6BGw==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Common/1.3.0",
"files": [
@@ -4912,7 +5003,7 @@
]
},
"Microsoft.CodeAnalysis.CSharp/1.3.0": {
- "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==",
+ "sha512": "8fqBJ4I+IH71mTs+F2w9U/UpJz2pbuO+9XicOxN1pUWU6UZlPgRMwS8e+rcnJp5sgz7tXrB2JoCoP3JuKTHBvg==",
"type": "package",
"path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
"files": [
@@ -4927,12 +5018,12 @@
"lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml"
]
},
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "Microsoft.CSharp/4.3.0": {
+ "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"type": "package",
- "path": "Microsoft.CSharp/4.0.1",
+ "path": "Microsoft.CSharp/4.3.0",
"files": [
- "Microsoft.CSharp.4.0.1.nupkg.sha512",
+ "Microsoft.CSharp.4.3.0.nupkg.sha512",
"Microsoft.CSharp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -4984,23 +5075,23 @@
"ref/xamarinwatchos10/_._"
]
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
- "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==",
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "sha512": "Bl6KYfbFSIW3QIRHAp931iR5h01qHjKghdpAtncwbzNUs0+IUZ+XfwkIU0sQsR33ufGvi3u4dZMIYYFysjpHAA==",
"type": "package",
- "path": "Microsoft.DotNet.InternalAbstractions/1.0.0",
+ "path": "Microsoft.DotNet.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.DotNet.InternalAbstractions.1.0.0.nupkg.sha512",
- "Microsoft.DotNet.InternalAbstractions.nuspec",
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll",
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
+ "Microsoft.DotNet.PlatformAbstractions.1.1.0.nupkg.sha512",
+ "Microsoft.DotNet.PlatformAbstractions.nuspec",
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll",
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll"
]
},
- "Microsoft.EntityFrameworkCore/1.0.0": {
- "sha512": "Vqg/v0cXRQZQH0gY3VHHqt0Bt5WZEkDReVpI1sNYKHVbVtnMYFKPp5SiNygosUJYrJk1rSGb8UVkplDNNUkEgg==",
+ "Microsoft.EntityFrameworkCore/1.1.0": {
+ "sha512": "S00vr6pLeoCMbm1PsXNZIceCAA/TUX83W3f2PcLFLGrx2QnGo5aqhtYjHvBhOVKJXZmt52EKEdORoTZVZ/swww==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore/1.0.0",
+ "path": "Microsoft.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.1.0.0.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.dll",
"lib/net451/Microsoft.EntityFrameworkCore.xml",
@@ -5008,12 +5099,12 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml"
]
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.0": {
- "sha512": "LGBab+7o0eq4C3YtvkAxK8W7Ia57eO0Ue0viQgt0STptQ2bUpLzV7q5LfbNl475rt6yTWa/vDQlYVaI64fwqdw==",
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
+ "sha512": "5LkSh1GHK/ZbI/2N6YxyofFKaAVe5/RBN38G6UQzOQVgfJxzucpJVyZt1mGHBkJ4yTlr4WQS9Wr3Ppa5X0opbw==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.Relational/1.0.0",
+ "path": "Microsoft.EntityFrameworkCore.Relational/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.Relational.1.0.0.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.Relational.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.Relational.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.dll",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.xml",
@@ -5021,23 +5112,23 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml"
]
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
- "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==",
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
+ "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
]
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
- "sha512": "6+7zTufCnZ+tfrUo7RbIRR3LB0BxwOwxfXuo0IbLyIvgoToGpWuz5wYEDfCYNOvpig9tY8FA0I1uRHYmITMXMQ==",
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
+ "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Memory/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Memory.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Memory.nuspec",
"lib/net451/Microsoft.Extensions.Caching.Memory.dll",
"lib/net451/Microsoft.Extensions.Caching.Memory.xml",
@@ -5045,78 +5136,79 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml"
]
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
- "sha512": "nJ+Et/rnDMDmGhxvFAKdN3va7y+YDPICv1nUEP8I4IKgOkWwr/dCZHMqxVhJFrkbW9ux8Kd7erC4mvxfZh0WnA==",
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
+ "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
]
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
- "sha512": "zdtkiZNV6LB8xtpmfyUjP/9N9ZCL/ydQ+0bfjun38fbrk+MDEm9M2yeLzRdq+OIt5xExw/KU04wFaVwJ1bhQPg==",
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
+ "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
]
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
- "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==",
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
+ "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
]
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==",
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
+ "sha512": "TG7dJ8GY1Myz9lZ8DJL4i6D05ncJQBi5CjBMXMdJ4edKxaW+vP2DndDd1jJabdMdmVRdGrvybzqkB+A6Df7eDw==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyModel/1.0.0",
+ "path": "Microsoft.Extensions.DependencyModel/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyModel.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyModel.nuspec",
"lib/net451/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
]
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
- "sha512": "4jsqTxG3py/hYSsOtZMkNJ2/CQqPdpwyK7bDUkrwHgqowCFSmx/C+R4IzQ+2AK2Up1fVcu+ldC0gktwidL828A==",
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
+ "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
]
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
- "sha512": "4nbDQfagNr1eILXSFZbTNuAKuZ6SsOyK6ySTMryo67ECi8+EcZBQ12E0aXcxX/aT3v+3pbWSt71NXlEm8tKIxw==",
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
+ "sha512": "S6vQ4HcjYKAmPqyuGNDQ1ILBaTx7SnDvfg/Dby+s55dXNI2WA/blkeIufbDm0MukALsukWya9mdbe7upWj8U5g==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Composite/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Composite/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Composite.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Composite.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Composite.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.xml"
]
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
- "sha512": "Ej5hGWtK3xM9YU+B2O8EdlMcJf5utbDQs9ecnfvwhENQeeNU7iI2jjnRB2d7V6o9SQZmNHPzdPvaNb3PlSMz+Q==",
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
+ "sha512": "ckyGwMGd4v1nE70wZ7ytax+Ef9WHQ6IcE4apLYG4um6Dfcw/Y6QJY0Fcv3Ck9WK/Uj0YMxHnNCZH6MBp6boeEw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Physical/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Physical/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Physical.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Physical.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Physical.nuspec",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.xml",
@@ -5124,36 +5216,36 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml"
]
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
- "sha512": "scXp1Y+hmhQKLe57Z7cSjsAEFtE4zSHHydkg1SpvG56nWwWQVpVcRAbRZsv1qIBR5/vNB4LA9xiOKnvKO/Halg==",
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
+ "sha512": "/NKs5LrUCUARfFbGik/ML5L2YnN33XTf+TUyghjhCzl9HlvLA4l6s3bW+xsbCU0GEmI/MottEEhiDa1dLJJh4A==",
"type": "package",
- "path": "Microsoft.Extensions.FileSystemGlobbing/1.0.0",
+ "path": "Microsoft.Extensions.FileSystemGlobbing/1.1.0",
"files": [
- "Microsoft.Extensions.FileSystemGlobbing.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileSystemGlobbing.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileSystemGlobbing.nuspec",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.xml",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml"
]
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
- "sha512": "nxGoN8o+4clQk103krYRqS5FVVCZc3Tlc09AYj4W8gZ9Q5Jxa2BLW7ss+ogKU/hvNSg2NkJyQTfi9SegGU6ssQ==",
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
+ "sha512": "KAuadrKH0hLZGXfLO/+L6bv4vIeOYpQTjglR5Tu4hm9TJ8sVcPf11qIoU+BXSwalXiaJuazSI9fxbyoIVBsX4A==",
"type": "package",
- "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0",
+ "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0",
"files": [
- "Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Globalization.CultureInfoCache.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Globalization.CultureInfoCache.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml"
]
},
- "Microsoft.Extensions.Localization/1.0.0": {
- "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==",
+ "Microsoft.Extensions.Localization/1.1.0": {
+ "sha512": "1DWqIC1k383XaQ3h+WxyKYmerLHDYH7TY7mDcglylG3Wq+zlX3/UUhUEKO0Ft8RKCLxLh/LhIa9NBvM3cYzLIg==",
"type": "package",
- "path": "Microsoft.Extensions.Localization/1.0.0",
+ "path": "Microsoft.Extensions.Localization/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.nuspec",
"lib/net451/Microsoft.Extensions.Localization.dll",
"lib/net451/Microsoft.Extensions.Localization.xml",
@@ -5161,45 +5253,45 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
]
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
- "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==",
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
+ "sha512": "8KkP9veQupIfAEQFLLQFTo75s2fVKOM9SWeHhdSSUD35uD8DX1zOXAUsuaXwQY8cyt6mSUR5zuUEkgbZXnUKCA==",
"type": "package",
- "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Localization.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging/1.0.0": {
- "sha512": "0mDuASVrd/nMeBYIJSK+9lT3TSmWxUXP/ipVB1pF1ApMN5fqGCckPTNwmOfT4Z9wPkXGnhbwFTGrxZvbzTWxOg==",
+ "Microsoft.Extensions.Logging/1.1.0": {
+ "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
"type": "package",
- "path": "Microsoft.Extensions.Logging/1.0.0",
+ "path": "Microsoft.Extensions.Logging/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
]
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
- "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==",
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
+ "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Abstractions.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
]
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
- "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==",
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
+ "sha512": "8tg7DpFubtj98Lf+N+zpu5VXe9EHCPrqcukpsjC9BSfcnC0Oq8CUZKYUsLScS2pnqEkSNHwuHoWRtJ6xhMO/xg==",
"type": "package",
- "path": "Microsoft.Extensions.ObjectPool/1.0.0",
+ "path": "Microsoft.Extensions.ObjectPool/1.1.0",
"files": [
- "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.ObjectPool.1.1.0.nupkg.sha512",
"Microsoft.Extensions.ObjectPool.nuspec",
"lib/net451/Microsoft.Extensions.ObjectPool.dll",
"lib/net451/Microsoft.Extensions.ObjectPool.xml",
@@ -5207,23 +5299,23 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
]
},
- "Microsoft.Extensions.Options/1.0.0": {
- "sha512": "SdP3yPKF++JTkoa91pBDiE70uQkR/gdXWzOnMPbSj+eOqY1vgY+b8RVl+gh7TrJ2wlCK2QqnQtvCQlPPZRK36w==",
+ "Microsoft.Extensions.Options/1.1.0": {
+ "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
"type": "package",
- "path": "Microsoft.Extensions.Options/1.0.0",
+ "path": "Microsoft.Extensions.Options/1.1.0",
"files": [
- "Microsoft.Extensions.Options.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Options.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Options.dll",
"lib/netstandard1.0/Microsoft.Extensions.Options.xml"
]
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
- "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==",
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
+ "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
"type": "package",
- "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0",
+ "path": "Microsoft.Extensions.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.PlatformAbstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.PlatformAbstractions.nuspec",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
@@ -5231,45 +5323,45 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
]
},
- "Microsoft.Extensions.Primitives/1.0.0": {
- "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==",
+ "Microsoft.Extensions.Primitives/1.1.0": {
+ "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
"type": "package",
- "path": "Microsoft.Extensions.Primitives/1.0.0",
+ "path": "Microsoft.Extensions.Primitives/1.1.0",
"files": [
- "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Primitives.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
]
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
- "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==",
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
+ "sha512": "YnUfcLe/FYL3Mft5HPv7dSSKfZZCZwLG2GQfv3vuxdY4AbWOYLqq/3wIPCNIrgMXvzralWdkESNsb9iw5gKdpg==",
"type": "package",
- "path": "Microsoft.Extensions.WebEncoders/1.0.0",
+ "path": "Microsoft.Extensions.WebEncoders/1.1.0",
"files": [
- "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.WebEncoders.1.1.0.nupkg.sha512",
"Microsoft.Extensions.WebEncoders.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
]
},
- "Microsoft.Net.Http.Headers/1.0.0": {
- "sha512": "1lr92itF1fKR2oEQ6gk1IUsuCgp7UMlf/b1sjlAyuDeUnttj39ra59GQHYpomglJX1UVNpi1/cSBbEsXoNeIhw==",
+ "Microsoft.Net.Http.Headers/1.1.0": {
+ "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
"type": "package",
- "path": "Microsoft.Net.Http.Headers/1.0.0",
+ "path": "Microsoft.Net.Http.Headers/1.1.0",
"files": [
- "Microsoft.Net.Http.Headers.1.0.0.nupkg.sha512",
+ "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
"Microsoft.Net.Http.Headers.nuspec",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
]
},
- "Microsoft.NETCore.Platforms/1.0.1": {
- "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==",
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"type": "package",
- "path": "Microsoft.NETCore.Platforms/1.0.1",
+ "path": "Microsoft.NETCore.Platforms/1.1.0",
"files": [
- "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Platforms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5277,12 +5369,12 @@
"runtime.json"
]
},
- "Microsoft.NETCore.Targets/1.0.1": {
- "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"type": "package",
- "path": "Microsoft.NETCore.Targets/1.0.1",
+ "path": "Microsoft.NETCore.Targets/1.1.0",
"files": [
- "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Targets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5290,12 +5382,12 @@
"runtime.json"
]
},
- "Microsoft.Win32.Primitives/4.0.1": {
- "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"type": "package",
- "path": "Microsoft.Win32.Primitives/4.0.1",
+ "path": "Microsoft.Win32.Primitives/4.3.0",
"files": [
- "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
+ "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
"Microsoft.Win32.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5326,12 +5418,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "Microsoft.Win32.Registry/4.0.0": {
- "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
+ "Microsoft.Win32.Registry/4.3.0": {
+ "sha512": "Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==",
"type": "package",
- "path": "Microsoft.Win32.Registry/4.0.0",
+ "path": "Microsoft.Win32.Registry/4.3.0",
"files": [
- "Microsoft.Win32.Registry.4.0.0.nupkg.sha512",
+ "Microsoft.Win32.Registry.4.3.0.nupkg.sha512",
"Microsoft.Win32.Registry.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5354,12 +5446,12 @@
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
]
},
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
+ "NETStandard.Library/1.6.1": {
+ "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"type": "package",
- "path": "NETStandard.Library/1.6.0",
+ "path": "NETStandard.Library/1.6.1",
"files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
+ "NETStandard.Library.1.6.1.nupkg.sha512",
"NETStandard.Library.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
@@ -5408,60 +5500,204 @@
"lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml"
]
},
- "runtime.native.System/4.0.0": {
- "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "type": "package",
+ "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
"type": "package",
- "path": "runtime.native.System/4.0.0",
+ "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "type": "package",
+ "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "type": "package",
+ "path": "runtime.native.System/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.4.0.0.nupkg.sha512",
+ "runtime.native.System.4.3.0.nupkg.sha512",
"runtime.native.System.nuspec"
]
},
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
+ "path": "runtime.native.System.IO.Compression/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512",
+ "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
"runtime.native.System.IO.Compression.nuspec"
]
},
- "runtime.native.System.Net.Http/4.0.1": {
- "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
+ "runtime.native.System.Net.Http/4.3.0": {
+ "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"type": "package",
- "path": "runtime.native.System.Net.Http/4.0.1",
+ "path": "runtime.native.System.Net.Http/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Http.nuspec"
]
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "type": "package",
+ "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.Apple.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
"type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
+ "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.nuspec"
+ "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
+ ]
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "type": "package",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "type": "package",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
+ ]
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "type": "package",
+ "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "type": "package",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
+ "System.AppContext/4.3.0": {
+ "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
"type": "package",
- "path": "System.AppContext/4.1.0",
+ "path": "System.AppContext/4.3.0",
"files": [
- "System.AppContext.4.1.0.nupkg.sha512",
+ "System.AppContext.4.3.0.nupkg.sha512",
"System.AppContext.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5509,12 +5745,12 @@
"runtimes/aot/lib/netcore50/System.AppContext.dll"
]
},
- "System.Buffers/4.0.0": {
- "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==",
+ "System.Buffers/4.3.0": {
+ "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
"type": "package",
- "path": "System.Buffers/4.0.0",
+ "path": "System.Buffers/4.3.0",
"files": [
- "System.Buffers.4.0.0.nupkg.sha512",
+ "System.Buffers.4.3.0.nupkg.sha512",
"System.Buffers.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5522,12 +5758,12 @@
"lib/netstandard1.1/System.Buffers.dll"
]
},
- "System.Collections/4.0.11": {
- "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"type": "package",
- "path": "System.Collections/4.0.11",
+ "path": "System.Collections/4.3.0",
"files": [
- "System.Collections.4.0.11.nupkg.sha512",
+ "System.Collections.4.3.0.nupkg.sha512",
"System.Collections.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5588,12 +5824,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Concurrent/4.0.12": {
- "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"type": "package",
- "path": "System.Collections.Concurrent/4.0.12",
+ "path": "System.Collections.Concurrent/4.3.0",
"files": [
- "System.Collections.Concurrent.4.0.12.nupkg.sha512",
+ "System.Collections.Concurrent.4.3.0.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5654,12 +5890,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Immutable/1.2.0": {
- "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
+ "System.Collections.Immutable/1.3.0": {
+ "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
"type": "package",
- "path": "System.Collections.Immutable/1.2.0",
+ "path": "System.Collections.Immutable/1.3.0",
"files": [
- "System.Collections.Immutable.1.2.0.nupkg.sha512",
+ "System.Collections.Immutable.1.3.0.nupkg.sha512",
"System.Collections.Immutable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5669,12 +5905,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
]
},
- "System.Collections.NonGeneric/4.0.1": {
- "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"type": "package",
- "path": "System.Collections.NonGeneric/4.0.1",
+ "path": "System.Collections.NonGeneric/4.3.0",
"files": [
- "System.Collections.NonGeneric.4.0.1.nupkg.sha512",
+ "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
"System.Collections.NonGeneric.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5706,12 +5942,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Specialized/4.0.1": {
- "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
+ "System.Collections.Specialized/4.3.0": {
+ "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"type": "package",
- "path": "System.Collections.Specialized/4.0.1",
+ "path": "System.Collections.Specialized/4.3.0",
"files": [
- "System.Collections.Specialized.4.0.1.nupkg.sha512",
+ "System.Collections.Specialized.4.3.0.nupkg.sha512",
"System.Collections.Specialized.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5743,12 +5979,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel/4.0.1": {
- "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
+ "System.ComponentModel/4.3.0": {
+ "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"type": "package",
- "path": "System.ComponentModel/4.0.1",
+ "path": "System.ComponentModel/4.3.0",
"files": [
- "System.ComponentModel.4.0.1.nupkg.sha512",
+ "System.ComponentModel.4.3.0.nupkg.sha512",
"System.ComponentModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5800,12 +6036,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Annotations/4.1.0": {
- "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==",
+ "System.ComponentModel.Annotations/4.3.0": {
+ "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
"type": "package",
- "path": "System.ComponentModel.Annotations/4.1.0",
+ "path": "System.ComponentModel.Annotations/4.3.0",
"files": [
- "System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
"System.ComponentModel.Annotations.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5877,12 +6113,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Primitives/4.1.0": {
- "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
+ "System.ComponentModel.Primitives/4.3.0": {
+ "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"type": "package",
- "path": "System.ComponentModel.Primitives/4.1.0",
+ "path": "System.ComponentModel.Primitives/4.3.0",
"files": [
- "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Primitives.4.3.0.nupkg.sha512",
"System.ComponentModel.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5914,12 +6150,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.TypeConverter/4.1.0": {
- "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"type": "package",
- "path": "System.ComponentModel.TypeConverter/4.1.0",
+ "path": "System.ComponentModel.TypeConverter/4.3.0",
"files": [
- "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
+ "System.ComponentModel.TypeConverter.4.3.0.nupkg.sha512",
"System.ComponentModel.TypeConverter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5965,12 +6201,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"type": "package",
- "path": "System.Console/4.0.0",
+ "path": "System.Console/4.3.0",
"files": [
- "System.Console.4.0.0.nupkg.sha512",
+ "System.Console.4.3.0.nupkg.sha512",
"System.Console.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6001,12 +6237,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Data.Common/4.1.0": {
- "sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==",
+ "System.Data.Common/4.3.0": {
+ "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
"type": "package",
- "path": "System.Data.Common/4.1.0",
+ "path": "System.Data.Common/4.3.0",
"files": [
- "System.Data.Common.4.1.0.nupkg.sha512",
+ "System.Data.Common.4.3.0.nupkg.sha512",
"System.Data.Common.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6050,12 +6286,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Contracts/4.0.1": {
- "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
+ "System.Diagnostics.Contracts/4.3.0": {
+ "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
"type": "package",
- "path": "System.Diagnostics.Contracts/4.0.1",
+ "path": "System.Diagnostics.Contracts/4.3.0",
"files": [
- "System.Diagnostics.Contracts.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
"System.Diagnostics.Contracts.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6108,12 +6344,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
]
},
- "System.Diagnostics.Debug/4.0.11": {
- "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
- "path": "System.Diagnostics.Debug/4.0.11",
+ "path": "System.Diagnostics.Debug/4.3.0",
"files": [
- "System.Diagnostics.Debug.4.0.11.nupkg.sha512",
+ "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6174,12 +6410,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
- "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
"type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.0.0",
+ "path": "System.Diagnostics.DiagnosticSource/4.3.0",
"files": [
- "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512",
+ "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
"System.Diagnostics.DiagnosticSource.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6194,7 +6430,7 @@
]
},
"System.Diagnostics.FileVersionInfo/4.0.0": {
- "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==",
+ "sha512": "VtXkqPMWpaXDFEvbuhroVemeTaaU/j6C3yu6rd+JFLg5AvHAZJb8hUpxwJCM7OFrUpeKmv3A7ZTME8hFYWL6pA==",
"type": "package",
"path": "System.Diagnostics.FileVersionInfo/4.0.0",
"files": [
@@ -6234,7 +6470,7 @@
]
},
"System.Diagnostics.StackTrace/4.0.1": {
- "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==",
+ "sha512": "11ByTAm0qYOgAA0WEyA7vA58Va+WAPYy6Rr+J+gx3PGkUXhRHOFN1UGn+Q+wrPDwscMaNZPiOhFwc8s6UmO/tA==",
"type": "package",
"path": "System.Diagnostics.StackTrace/4.0.1",
"files": [
@@ -6271,12 +6507,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
]
},
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "System.Diagnostics.Tools/4.3.0": {
+ "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
+ "path": "System.Diagnostics.Tools/4.3.0",
"files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6326,12 +6562,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Tracing/4.1.0": {
- "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"type": "package",
- "path": "System.Diagnostics.Tracing/4.1.0",
+ "path": "System.Diagnostics.Tracing/4.3.0",
"files": [
- "System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6414,12 +6650,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Dynamic.Runtime/4.0.11": {
- "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "System.Dynamic.Runtime/4.3.0": {
+ "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"type": "package",
- "path": "System.Dynamic.Runtime/4.0.11",
+ "path": "System.Dynamic.Runtime/4.3.0",
"files": [
- "System.Dynamic.Runtime.4.0.11.nupkg.sha512",
+ "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
"System.Dynamic.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6483,12 +6719,12 @@
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
]
},
- "System.Globalization/4.0.11": {
- "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"type": "package",
- "path": "System.Globalization/4.0.11",
+ "path": "System.Globalization/4.3.0",
"files": [
- "System.Globalization.4.0.11.nupkg.sha512",
+ "System.Globalization.4.3.0.nupkg.sha512",
"System.Globalization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6549,12 +6785,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Calendars/4.0.1": {
- "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
+ "System.Globalization.Calendars/4.3.0": {
+ "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"type": "package",
- "path": "System.Globalization.Calendars/4.0.1",
+ "path": "System.Globalization.Calendars/4.3.0",
"files": [
- "System.Globalization.Calendars.4.0.1.nupkg.sha512",
+ "System.Globalization.Calendars.4.3.0.nupkg.sha512",
"System.Globalization.Calendars.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6585,12 +6821,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Extensions/4.0.1": {
- "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"type": "package",
- "path": "System.Globalization.Extensions/4.0.1",
+ "path": "System.Globalization.Extensions/4.3.0",
"files": [
- "System.Globalization.Extensions.4.0.1.nupkg.sha512",
+ "System.Globalization.Extensions.4.3.0.nupkg.sha512",
"System.Globalization.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6637,12 +6873,12 @@
"lib/netstandard1.0/System.Interactive.Async.xml"
]
},
- "System.IO/4.1.0": {
- "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"type": "package",
- "path": "System.IO/4.1.0",
+ "path": "System.IO/4.3.0",
"files": [
- "System.IO.4.1.0.nupkg.sha512",
+ "System.IO.4.3.0.nupkg.sha512",
"System.IO.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6716,12 +6952,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
+ "System.IO.Compression/4.3.0": {
+ "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"type": "package",
- "path": "System.IO.Compression/4.1.0",
+ "path": "System.IO.Compression/4.3.0",
"files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
+ "System.IO.Compression.4.3.0.nupkg.sha512",
"System.IO.Compression.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6785,12 +7021,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
]
},
- "System.IO.Compression.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
"type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
+ "path": "System.IO.Compression.ZipFile/4.3.0",
"files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
+ "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
"System.IO.Compression.ZipFile.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6822,12 +7058,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem/4.0.1": {
- "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"type": "package",
- "path": "System.IO.FileSystem/4.0.1",
+ "path": "System.IO.FileSystem/4.3.0",
"files": [
- "System.IO.FileSystem.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.4.3.0.nupkg.sha512",
"System.IO.FileSystem.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6858,12 +7094,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Primitives/4.0.1": {
- "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"type": "package",
- "path": "System.IO.FileSystem.Primitives/4.0.1",
+ "path": "System.IO.FileSystem.Primitives/4.3.0",
"files": [
- "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6895,12 +7131,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Watcher/4.0.0": {
- "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==",
+ "System.IO.FileSystem.Watcher/4.3.0": {
+ "sha512": "37IDFU2w6LJ4FrohcVlV1EXviUmAOJIbejVgOUtNaPQyeZW2D/0QSkH8ykehoOd19bWfxp3RRd0xj+yRRIqLhw==",
"type": "package",
- "path": "System.IO.FileSystem.Watcher/4.0.0",
+ "path": "System.IO.FileSystem.Watcher/4.3.0",
"files": [
- "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
+ "System.IO.FileSystem.Watcher.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Watcher.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6936,12 +7172,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Linq/4.1.0": {
- "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"type": "package",
- "path": "System.Linq/4.1.0",
+ "path": "System.Linq/4.3.0",
"files": [
- "System.Linq.4.1.0.nupkg.sha512",
+ "System.Linq.4.3.0.nupkg.sha512",
"System.Linq.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7006,12 +7242,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"type": "package",
- "path": "System.Linq.Expressions/4.1.0",
+ "path": "System.Linq.Expressions/4.3.0",
"files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
+ "System.Linq.Expressions.4.3.0.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7089,7 +7325,7 @@
]
},
"System.Linq.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
+ "sha512": "RXVSHwhbqT4pZdCm+wISM7DGJ2wCkFyRGjMlXkUfnl1t9G4QOv+vasX6ovGb7pfszDH2h1K4b5zf5OpVdc6U/A==",
"type": "package",
"path": "System.Linq.Queryable/4.0.1",
"files": [
@@ -7145,12 +7381,69 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "System.Linq.Queryable/4.3.0",
+ "files": [
+ "System.Linq.Queryable.4.3.0.nupkg.sha512",
+ "System.Linq.Queryable.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._"
+ ]
+ },
+ "System.Net.Http/4.3.0": {
+ "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
"type": "package",
- "path": "System.Net.Http/4.1.0",
+ "path": "System.Net.Http/4.3.0",
"files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
+ "System.Net.Http.4.3.0.nupkg.sha512",
"System.Net.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7225,12 +7518,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
]
},
- "System.Net.Primitives/4.0.11": {
- "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"type": "package",
- "path": "System.Net.Primitives/4.0.11",
+ "path": "System.Net.Primitives/4.3.0",
"files": [
- "System.Net.Primitives.4.0.11.nupkg.sha512",
+ "System.Net.Primitives.4.3.0.nupkg.sha512",
"System.Net.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7302,12 +7595,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Sockets/4.1.0": {
- "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
+ "System.Net.Sockets/4.3.0": {
+ "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
"type": "package",
- "path": "System.Net.Sockets/4.1.0",
+ "path": "System.Net.Sockets/4.3.0",
"files": [
- "System.Net.Sockets.4.1.0.nupkg.sha512",
+ "System.Net.Sockets.4.3.0.nupkg.sha512",
"System.Net.Sockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7338,12 +7631,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebSockets/4.0.0": {
- "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
+ "System.Net.WebSockets/4.3.0": {
+ "sha512": "u6fFNY5q4T8KerUAVbya7bR6b7muBuSTAersyrihkcmE5QhEOiH3t5rh4il15SexbVlpXFHGuMwr/m8fDrnkQg==",
"type": "package",
- "path": "System.Net.WebSockets/4.0.0",
+ "path": "System.Net.WebSockets/4.3.0",
"files": [
- "System.Net.WebSockets.4.0.0.nupkg.sha512",
+ "System.Net.WebSockets.4.3.0.nupkg.sha512",
"System.Net.WebSockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7375,12 +7668,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"type": "package",
- "path": "System.ObjectModel/4.0.12",
+ "path": "System.ObjectModel/4.3.0",
"files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
+ "System.ObjectModel.4.3.0.nupkg.sha512",
"System.ObjectModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7443,12 +7736,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection/4.1.0": {
- "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"type": "package",
- "path": "System.Reflection/4.1.0",
+ "path": "System.Reflection/4.3.0",
"files": [
- "System.Reflection.4.1.0.nupkg.sha512",
+ "System.Reflection.4.3.0.nupkg.sha512",
"System.Reflection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7522,20 +7815,24 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"type": "package",
- "path": "System.Reflection.Emit/4.0.1",
+ "path": "System.Reflection.Emit/4.3.0",
"files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.4.3.0.nupkg.sha512",
"System.Reflection.Emit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.dll",
"lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/net45/_._",
"ref/netstandard1.1/System.Reflection.Emit.dll",
@@ -7552,20 +7849,28 @@
"ref/xamarinmac20/_._"
]
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.0.1",
+ "path": "System.Reflection.Emit.ILGeneration/4.3.0",
"files": [
- "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
"System.Reflection.Emit.ILGeneration.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
@@ -7580,23 +7885,35 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.0.1",
+ "path": "System.Reflection.Emit.Lightweight/4.3.0",
"files": [
- "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
"System.Reflection.Emit.Lightweight.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.Lightweight.dll",
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
@@ -7611,15 +7928,19 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Extensions/4.0.1": {
- "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"type": "package",
- "path": "System.Reflection.Extensions/4.0.1",
+ "path": "System.Reflection.Extensions/4.3.0",
"files": [
- "System.Reflection.Extensions.4.0.1.nupkg.sha512",
+ "System.Reflection.Extensions.4.3.0.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7685,7 +8006,7 @@
]
},
"System.Reflection.Metadata/1.3.0": {
- "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
+ "sha512": "z/W85CR/+3iQJLG8y8dgdHQpee6R1MYw1tFekmSnJ8By3I4y+ohrkC/sn3Q4cwh4fzEWcSG6yxffIovcDrubjQ==",
"type": "package",
"path": "System.Reflection.Metadata/1.3.0",
"files": [
@@ -7699,12 +8020,12 @@
"lib/portable-net45+win8/System.Reflection.Metadata.xml"
]
},
- "System.Reflection.Primitives/4.0.1": {
- "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"type": "package",
- "path": "System.Reflection.Primitives/4.0.1",
+ "path": "System.Reflection.Primitives/4.3.0",
"files": [
- "System.Reflection.Primitives.4.0.1.nupkg.sha512",
+ "System.Reflection.Primitives.4.3.0.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7754,12 +8075,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.TypeExtensions/4.1.0": {
- "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"type": "package",
- "path": "System.Reflection.TypeExtensions/4.1.0",
+ "path": "System.Reflection.TypeExtensions/4.3.0",
"files": [
- "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512",
+ "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7806,24 +8127,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
- "System.Resources.Reader/4.0.0": {
- "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==",
+ "System.Resources.Reader/4.3.0": {
+ "sha512": "AeSwdrdgsRnGRJDofYEJPlotJm6gDDg6WJ1/1lX2Yq8bPwicba7lanPi7adK0SE58zgN5PcGg/h0tuZS+IRAdw==",
"type": "package",
- "path": "System.Resources.Reader/4.0.0",
+ "path": "System.Resources.Reader/4.3.0",
"files": [
- "System.Resources.Reader.4.0.0.nupkg.sha512",
+ "System.Resources.Reader.4.3.0.nupkg.sha512",
"System.Resources.Reader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Resources.Reader.dll"
]
},
- "System.Resources.ResourceManager/4.0.1": {
- "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"type": "package",
- "path": "System.Resources.ResourceManager/4.0.1",
+ "path": "System.Resources.ResourceManager/4.3.0",
"files": [
- "System.Resources.ResourceManager.4.0.1.nupkg.sha512",
+ "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7873,12 +8194,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime/4.1.0": {
- "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"type": "package",
- "path": "System.Runtime/4.1.0",
+ "path": "System.Runtime/4.3.0",
"files": [
- "System.Runtime.4.1.0.nupkg.sha512",
+ "System.Runtime.4.3.0.nupkg.sha512",
"System.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7963,12 +8284,25 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Extensions/4.1.0": {
- "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "sha512": "rcnXA1U9W3QUtMSGoyoNHH6w4V5Rxa/EKXmzpORUYlDAlDB34hIQoU57ATXl8xHa83VvzRm6PcElEizgUd7U5w==",
+ "type": "package",
+ "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
+ "files": [
+ "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
+ "System.Runtime.CompilerServices.Unsafe.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"type": "package",
- "path": "System.Runtime.Extensions/4.1.0",
+ "path": "System.Runtime.Extensions/4.3.0",
"files": [
- "System.Runtime.Extensions.4.1.0.nupkg.sha512",
+ "System.Runtime.Extensions.4.3.0.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8042,12 +8376,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Handles/4.0.1": {
- "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"type": "package",
- "path": "System.Runtime.Handles/4.0.1",
+ "path": "System.Runtime.Handles/4.3.0",
"files": [
- "System.Runtime.Handles.4.0.1.nupkg.sha512",
+ "System.Runtime.Handles.4.3.0.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8078,12 +8412,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices/4.1.0": {
- "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"type": "package",
- "path": "System.Runtime.InteropServices/4.1.0",
+ "path": "System.Runtime.InteropServices/4.3.0",
"files": [
- "System.Runtime.InteropServices.4.1.0.nupkg.sha512",
+ "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8091,6 +8425,7 @@
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
@@ -8102,6 +8437,7 @@
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
@@ -8113,6 +8449,7 @@
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
@@ -8166,18 +8503,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
"type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0",
+ "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
"files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.0.0.nupkg.sha512",
+ "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.RuntimeInformation.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/xamarinios10/_._",
@@ -8198,17 +8536,23 @@
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
]
},
- "System.Runtime.Loader/4.0.0": {
- "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
"type": "package",
- "path": "System.Runtime.Loader/4.0.0",
+ "path": "System.Runtime.Loader/4.3.0",
"files": [
- "System.Runtime.Loader.4.0.0.nupkg.sha512",
+ "System.Runtime.Loader.4.3.0.nupkg.sha512",
"System.Runtime.Loader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net462/_._",
"lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/netstandard1.5/System.Runtime.Loader.dll",
"ref/netstandard1.5/System.Runtime.Loader.xml",
"ref/netstandard1.5/de/System.Runtime.Loader.xml",
@@ -8222,12 +8566,12 @@
"ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
]
},
- "System.Runtime.Numerics/4.0.1": {
- "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
+ "System.Runtime.Numerics/4.3.0": {
+ "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"type": "package",
- "path": "System.Runtime.Numerics/4.0.1",
+ "path": "System.Runtime.Numerics/4.3.0",
"files": [
- "System.Runtime.Numerics.4.0.1.nupkg.sha512",
+ "System.Runtime.Numerics.4.3.0.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8277,12 +8621,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"type": "package",
- "path": "System.Runtime.Serialization.Primitives/4.1.1",
+ "path": "System.Runtime.Serialization.Primitives/4.3.0",
"files": [
- "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
+ "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
"System.Runtime.Serialization.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8348,12 +8692,12 @@
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
]
},
- "System.Security.Claims/4.0.1": {
- "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==",
+ "System.Security.Claims/4.3.0": {
+ "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
"type": "package",
- "path": "System.Security.Claims/4.0.1",
+ "path": "System.Security.Claims/4.3.0",
"files": [
- "System.Security.Claims.4.0.1.nupkg.sha512",
+ "System.Security.Claims.4.3.0.nupkg.sha512",
"System.Security.Claims.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8385,12 +8729,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
- "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.2.0",
+ "path": "System.Security.Cryptography.Algorithms/4.3.0",
"files": [
- "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8415,6 +8759,7 @@
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
@@ -8423,12 +8768,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
]
},
- "System.Security.Cryptography.Cng/4.2.0": {
- "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
"type": "package",
- "path": "System.Security.Cryptography.Cng/4.2.0",
+ "path": "System.Security.Cryptography.Cng/4.3.0",
"files": [
- "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Cng.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8449,12 +8794,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
]
},
- "System.Security.Cryptography.Csp/4.0.0": {
- "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"type": "package",
- "path": "System.Security.Cryptography.Csp/4.0.0",
+ "path": "System.Security.Cryptography.Csp/4.3.0",
"files": [
- "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Csp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8479,12 +8824,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
]
},
- "System.Security.Cryptography.Encoding/4.0.0": {
- "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"type": "package",
- "path": "System.Security.Cryptography.Encoding/4.0.0",
+ "path": "System.Security.Cryptography.Encoding/4.3.0",
"files": [
- "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8518,12 +8863,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
]
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
- "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
"type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.0.0",
+ "path": "System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
- "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
"System.Security.Cryptography.OpenSsl.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8532,12 +8877,12 @@
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
]
},
- "System.Security.Cryptography.Primitives/4.0.0": {
- "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"type": "package",
- "path": "System.Security.Cryptography.Primitives/4.0.0",
+ "path": "System.Security.Cryptography.Primitives/4.3.0",
"files": [
- "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8559,12 +8904,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.1.0",
+ "path": "System.Security.Cryptography.X509Certificates/4.3.0",
"files": [
- "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512",
+ "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8613,12 +8958,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
]
},
- "System.Security.Principal/4.0.1": {
- "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==",
+ "System.Security.Principal/4.3.0": {
+ "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
"type": "package",
- "path": "System.Security.Principal/4.0.1",
+ "path": "System.Security.Principal/4.3.0",
"files": [
- "System.Security.Principal.4.0.1.nupkg.sha512",
+ "System.Security.Principal.4.3.0.nupkg.sha512",
"System.Security.Principal.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8670,12 +9015,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Principal.Windows/4.0.0": {
- "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==",
+ "System.Security.Principal.Windows/4.3.0": {
+ "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
"type": "package",
- "path": "System.Security.Principal.Windows/4.0.0",
+ "path": "System.Security.Principal.Windows/4.3.0",
"files": [
- "System.Security.Principal.Windows.4.0.0.nupkg.sha512",
+ "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
"System.Security.Principal.Windows.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8697,12 +9042,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
]
},
- "System.Text.Encoding/4.0.11": {
- "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"type": "package",
- "path": "System.Text.Encoding/4.0.11",
+ "path": "System.Text.Encoding/4.3.0",
"files": [
- "System.Text.Encoding.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.4.3.0.nupkg.sha512",
"System.Text.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8764,7 +9109,7 @@
]
},
"System.Text.Encoding.CodePages/4.0.1": {
- "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
+ "sha512": "Mknrs0YEgYwQbDuTYiOqqos9jx6vXvqH/YTQARKLUv8TJCYXuL7M9Yq7DAlxHDELI39BmSmMDA9/cVIw7ExT+A==",
"type": "package",
"path": "System.Text.Encoding.CodePages/4.0.1",
"files": [
@@ -8800,12 +9145,12 @@
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
]
},
- "System.Text.Encoding.Extensions/4.0.11": {
- "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"type": "package",
- "path": "System.Text.Encoding.Extensions/4.0.11",
+ "path": "System.Text.Encoding.Extensions/4.3.0",
"files": [
- "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
"System.Text.Encoding.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8866,12 +9211,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encodings.Web/4.0.0": {
- "sha512": "TWZnuiJgPDAEEUfobD7njXvSVR2Toz+jvKWds6yL4oSztmKQfnWzucczjzA+6Dv1bktBdY71sZW1YN0X6m9chQ==",
+ "System.Text.Encodings.Web/4.3.0": {
+ "sha512": "ilLTKoirqw+Mbt+6x1MOxZKEwflasdP5WNuo5m5rKSXtAqazlEDqdyBH1XbvENuDQUtKNeP48CI1dyDNlEAeOA==",
"type": "package",
- "path": "System.Text.Encodings.Web/4.0.0",
+ "path": "System.Text.Encodings.Web/4.3.0",
"files": [
- "System.Text.Encodings.Web.4.0.0.nupkg.sha512",
+ "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
"System.Text.Encodings.Web.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8879,12 +9224,12 @@
"lib/netstandard1.0/System.Text.Encodings.Web.xml"
]
},
- "System.Text.RegularExpressions/4.1.0": {
- "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "System.Text.RegularExpressions/4.3.0": {
+ "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"type": "package",
- "path": "System.Text.RegularExpressions/4.1.0",
+ "path": "System.Text.RegularExpressions/4.3.0",
"files": [
- "System.Text.RegularExpressions.4.1.0.nupkg.sha512",
+ "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
"System.Text.RegularExpressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8917,6 +9262,7 @@
"ref/netcore50/ru/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
@@ -8960,12 +9306,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading/4.0.11": {
- "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"type": "package",
- "path": "System.Threading/4.0.11",
+ "path": "System.Threading/4.3.0",
"files": [
- "System.Threading.4.0.11.nupkg.sha512",
+ "System.Threading.4.3.0.nupkg.sha512",
"System.Threading.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9029,12 +9375,12 @@
"runtimes/aot/lib/netcore50/System.Threading.dll"
]
},
- "System.Threading.Overlapped/4.0.1": {
- "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==",
+ "System.Threading.Overlapped/4.3.0": {
+ "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
"type": "package",
- "path": "System.Threading.Overlapped/4.0.1",
+ "path": "System.Threading.Overlapped/4.3.0",
"files": [
- "System.Threading.Overlapped.4.0.1.nupkg.sha512",
+ "System.Threading.Overlapped.4.3.0.nupkg.sha512",
"System.Threading.Overlapped.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9057,12 +9403,12 @@
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
]
},
- "System.Threading.Tasks/4.0.11": {
- "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"type": "package",
- "path": "System.Threading.Tasks/4.0.11",
+ "path": "System.Threading.Tasks/4.3.0",
"files": [
- "System.Threading.Tasks.4.0.11.nupkg.sha512",
+ "System.Threading.Tasks.4.3.0.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9123,12 +9469,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Tasks.Extensions/4.0.0": {
- "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"type": "package",
- "path": "System.Threading.Tasks.Extensions/4.0.0",
+ "path": "System.Threading.Tasks.Extensions/4.3.0",
"files": [
- "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512",
+ "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9139,7 +9485,7 @@
]
},
"System.Threading.Tasks.Parallel/4.0.1": {
- "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==",
+ "sha512": "BiZhquGtjf+8u7qAi/V7C9MqvFXFSzScEgWThBn4QkOFISr+e+X518COpR4g02+aMqj1jkVe9d8p7d+V71LH/Q==",
"type": "package",
"path": "System.Threading.Tasks.Parallel/4.0.1",
"files": [
@@ -9193,12 +9539,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Thread/4.0.0": {
- "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
+ "System.Threading.Thread/4.3.0": {
+ "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
"type": "package",
- "path": "System.Threading.Thread/4.0.0",
+ "path": "System.Threading.Thread/4.3.0",
"files": [
- "System.Threading.Thread.4.0.0.nupkg.sha512",
+ "System.Threading.Thread.4.3.0.nupkg.sha512",
"System.Threading.Thread.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9231,12 +9577,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Timer/4.0.1": {
- "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "System.Threading.Timer/4.3.0": {
+ "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
"type": "package",
- "path": "System.Threading.Timer/4.0.1",
+ "path": "System.Threading.Timer/4.3.0",
"files": [
- "System.Threading.Timer.4.0.1.nupkg.sha512",
+ "System.Threading.Timer.4.3.0.nupkg.sha512",
"System.Threading.Timer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9284,18 +9630,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.ReaderWriter/4.0.11": {
- "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "System.Xml.ReaderWriter/4.3.0": {
+ "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"type": "package",
- "path": "System.Xml.ReaderWriter/4.0.11",
+ "path": "System.Xml.ReaderWriter/4.3.0",
"files": [
- "System.Xml.ReaderWriter.4.0.11.nupkg.sha512",
+ "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
"System.Xml.ReaderWriter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
+ "lib/net46/System.Xml.ReaderWriter.dll",
"lib/netcore50/System.Xml.ReaderWriter.dll",
"lib/netstandard1.3/System.Xml.ReaderWriter.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
@@ -9309,6 +9656,7 @@
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
+ "ref/net46/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.xml",
"ref/netcore50/de/System.Xml.ReaderWriter.xml",
@@ -9352,12 +9700,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "System.Xml.XDocument/4.3.0": {
+ "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"type": "package",
- "path": "System.Xml.XDocument/4.0.11",
+ "path": "System.Xml.XDocument/4.3.0",
"files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
+ "System.Xml.XDocument.4.3.0.nupkg.sha512",
"System.Xml.XDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9421,7 +9769,7 @@
]
},
"System.Xml.XmlDocument/4.0.1": {
- "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
+ "sha512": "QUdzLPVLBXg+3hQiTgLSy6lnMIN4Pj6+kRU2GJCwMooXHJvHp2PUjBg5Ms3r+ewPcu3dewET6v0a9UqPaUrTaw==",
"type": "package",
"path": "System.Xml.XmlDocument/4.0.1",
"files": [
@@ -9458,7 +9806,7 @@
]
},
"System.Xml.XPath/4.0.1": {
- "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
+ "sha512": "drxlpwgSyGH1S1lsW5pqBCQ7TLdAKjVl+G1F1HYAVDFdRBtAHCORwW2/IbMCidAb8jxjJPBTyUkcTrEedIXvoQ==",
"type": "package",
"path": "System.Xml.XPath/4.0.1",
"files": [
@@ -9495,7 +9843,7 @@
]
},
"System.Xml.XPath.XDocument/4.0.1": {
- "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==",
+ "sha512": "9beITE7Jz3Q0vTBbs7OeYVI57jpJJP5s5O7l6s5OnfOoY87o4lau9HbXARVaZ5leWeDPch/xvw7tO4oEBa2r2w==",
"type": "package",
"path": "System.Xml.XPath.XDocument/4.0.1",
"files": [
@@ -9534,9 +9882,9 @@
},
"projectFileDependencyGroups": {
"": [
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 1.0.0",
- "Microsoft.AspNetCore.Mvc >= 1.0.1",
- "NETStandard.Library >= 1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 1.1.0",
+ "Microsoft.AspNetCore.Mvc >= 1.1.0",
+ "NETStandard.Library >= 1.6.1"
],
".NETFramework,Version=v4.5.1": [],
".NETStandard,Version=v1.6": []
diff --git a/samples/ApplicationParts/ApplicationParts.Services/project.json b/samples/ApplicationParts/ApplicationParts.Services/project.json
index 5c6c6b59d..a90ec544c 100644
--- a/samples/ApplicationParts/ApplicationParts.Services/project.json
+++ b/samples/ApplicationParts/ApplicationParts.Services/project.json
@@ -1,6 +1,6 @@
{
"dependencies": {
- "NETStandard.Library": "1.6.0"
+ "NETStandard.Library": "1.6.1"
},
"frameworks": {
diff --git a/samples/ApplicationParts/ApplicationParts.Services/project.lock.json b/samples/ApplicationParts/ApplicationParts.Services/project.lock.json
index 51b030303..61847b490 100644
--- a/samples/ApplicationParts/ApplicationParts.Services/project.lock.json
+++ b/samples/ApplicationParts/ApplicationParts.Services/project.lock.json
@@ -3,7 +3,7 @@
"version": 2,
"targets": {
".NETFramework,Version=v4.5.1": {
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -12,43 +12,43 @@
"lib/netstandard1.0/_._": {}
}
},
- "NETStandard.Library/1.6.0": {
+ "NETStandard.Library/1.6.1": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -61,7 +61,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -73,7 +73,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -85,7 +85,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -97,7 +97,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -106,7 +106,7 @@
"lib/net45/_._": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -115,7 +115,7 @@
"lib/net45/_._": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -127,7 +127,7 @@
"lib/net45/_._": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.IO.Compression"
@@ -139,7 +139,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -151,7 +151,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -163,7 +163,7 @@
"lib/net45/_._": {}
}
},
- "System.Net.Http/4.1.0": {
+ "System.Net.Http/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Net.Http"
@@ -175,7 +175,7 @@
"lib/net45/_._": {}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -187,7 +187,7 @@
"lib/net45/_._": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -199,7 +199,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -208,7 +208,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -217,7 +217,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -226,7 +226,7 @@
"lib/net45/_._": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -235,7 +235,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -249,7 +249,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.Extensions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -261,7 +261,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -274,7 +274,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
@@ -293,7 +293,7 @@
}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Numerics"
@@ -305,7 +305,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -314,7 +314,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -323,7 +323,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -335,7 +335,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -348,7 +348,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -360,7 +360,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"compile": {
"ref/net451/_._": {}
@@ -369,7 +369,7 @@
"lib/net451/_._": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Xml"
@@ -381,7 +381,7 @@
"lib/net45/_._": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Xml.Linq"
@@ -395,7 +395,7 @@
}
},
".NETStandard,Version=v1.6": {
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -404,7 +404,7 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.NETCore.Targets/1.0.1": {
+ "Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -413,71 +413,98 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.Win32.Primitives/4.0.1": {
+ "Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
- "NETStandard.Library/1.6.0": {
+ "NETStandard.Library/1.6.1": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Console": "4.0.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.Compression.ZipFile": "4.0.1",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
- "runtime.native.System/4.0.0": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "debian.8-x64"
+ }
+ }
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.23-x64"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.24-x64"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -486,11 +513,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.IO.Compression/4.1.0": {
+ "runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -499,11 +526,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Http/4.0.1": {
+ "runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -512,11 +539,10 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -525,10 +551,103 @@
"lib/netstandard1.0/_._": {}
}
},
- "System.AppContext/4.1.0": {
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.13.2-x64"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.42.1-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "rhel.7-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.14.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.10-x64"
+ }
+ }
+ },
+ "System.AppContext/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.AppContext.dll": {}
@@ -537,14 +656,14 @@
"lib/netstandard1.6/System.AppContext.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/_._": {}
@@ -553,30 +672,30 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.dll": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -585,38 +704,38 @@
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
}
},
- "System.Console/4.0.0": {
+ "System.Console/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Console.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.3/_._": {}
@@ -625,60 +744,60 @@
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.dll": {}
}
},
- "System.Globalization.Calendars/4.0.1": {
+ "System.Globalization.Calendars/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
- "System.Globalization.Extensions/4.0.1": {
+ "System.Globalization.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -694,36 +813,37 @@
}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.IO.dll": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.IO.Compression": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.dll": {}
@@ -739,18 +859,18 @@
}
}
},
- "System.IO.Compression.ZipFile/4.0.1": {
+ "System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -759,26 +879,26 @@
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
- "System.IO.FileSystem/4.0.1": {
+ "System.IO.FileSystem/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1": {
+ "System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -787,14 +907,14 @@
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.dll": {}
@@ -803,26 +923,26 @@
"lib/netstandard1.6/System.Linq.dll": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -831,35 +951,35 @@
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
}
},
- "System.Net.Http/4.1.0": {
+ "System.Net.Http/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Http.dll": {}
@@ -875,40 +995,40 @@
}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
- "System.Net.Sockets/4.1.0": {
+ "System.Net.Sockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.ObjectModel.dll": {}
@@ -917,27 +1037,27 @@
"lib/netstandard1.3/System.ObjectModel.dll": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.dll": {}
}
},
- "System.Reflection.Emit/4.0.1": {
+ "System.Reflection.Emit/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
@@ -946,12 +1066,12 @@
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -960,13 +1080,13 @@
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
+ "System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -975,34 +1095,34 @@
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Extensions.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Primitives.dll": {}
}
},
- "System.Reflection.TypeExtensions/4.1.0": {
+ "System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/_._": {}
@@ -1011,79 +1131,82 @@
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.dll": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
- "System.Runtime.Handles/4.0.1": {
+ "System.Runtime.Handles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
@@ -1095,13 +1218,13 @@
}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.Numerics.dll": {}
@@ -1110,27 +1233,32 @@
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
+ "System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "unix"
@@ -1141,20 +1269,20 @@
}
}
},
- "System.Security.Cryptography.Cng/4.2.0": {
+ "System.Security.Cryptography.Cng/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -1170,22 +1298,22 @@
}
}
},
- "System.Security.Cryptography.Csp/4.0.0": {
+ "System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -1201,21 +1329,21 @@
}
}
},
- "System.Security.Cryptography.Encoding/4.0.0": {
+ "System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
@@ -1231,22 +1359,22 @@
}
}
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -1261,16 +1389,16 @@
}
}
},
- "System.Security.Cryptography.Primitives/4.0.0": {
+ "System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
@@ -1279,34 +1407,34 @@
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Cng": "4.2.0",
- "System.Security.Cryptography.Csp": "4.0.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
@@ -1322,38 +1450,38 @@
}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.dll": {}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
@@ -1362,11 +1490,11 @@
"lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.dll": {}
@@ -1375,23 +1503,23 @@
"lib/netstandard1.3/System.Threading.dll": {}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Tasks.dll": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1400,35 +1528,35 @@
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -1437,21 +1565,21 @@
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -1463,12 +1591,12 @@
}
},
"libraries": {
- "Microsoft.NETCore.Platforms/1.0.1": {
- "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==",
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"type": "package",
- "path": "Microsoft.NETCore.Platforms/1.0.1",
+ "path": "Microsoft.NETCore.Platforms/1.1.0",
"files": [
- "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Platforms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1476,12 +1604,12 @@
"runtime.json"
]
},
- "Microsoft.NETCore.Targets/1.0.1": {
- "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"type": "package",
- "path": "Microsoft.NETCore.Targets/1.0.1",
+ "path": "Microsoft.NETCore.Targets/1.1.0",
"files": [
- "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Targets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1489,12 +1617,12 @@
"runtime.json"
]
},
- "Microsoft.Win32.Primitives/4.0.1": {
- "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"type": "package",
- "path": "Microsoft.Win32.Primitives/4.0.1",
+ "path": "Microsoft.Win32.Primitives/4.3.0",
"files": [
- "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
+ "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
"Microsoft.Win32.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1525,71 +1653,215 @@
"ref/xamarinwatchos10/_._"
]
},
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
+ "NETStandard.Library/1.6.1": {
+ "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"type": "package",
- "path": "NETStandard.Library/1.6.0",
+ "path": "NETStandard.Library/1.6.1",
"files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
+ "NETStandard.Library.1.6.1.nupkg.sha512",
"NETStandard.Library.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
]
},
- "runtime.native.System/4.0.0": {
- "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "type": "package",
+ "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
+ "type": "package",
+ "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "type": "package",
+ "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
"type": "package",
- "path": "runtime.native.System/4.0.0",
+ "path": "runtime.native.System/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.4.0.0.nupkg.sha512",
+ "runtime.native.System.4.3.0.nupkg.sha512",
"runtime.native.System.nuspec"
]
},
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
+ "path": "runtime.native.System.IO.Compression/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512",
+ "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
"runtime.native.System.IO.Compression.nuspec"
]
},
- "runtime.native.System.Net.Http/4.0.1": {
- "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
+ "runtime.native.System.Net.Http/4.3.0": {
+ "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"type": "package",
- "path": "runtime.native.System.Net.Http/4.0.1",
+ "path": "runtime.native.System.Net.Http/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Http.nuspec"
]
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
"type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
+ "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.nuspec"
+ "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.Apple.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "type": "package",
+ "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
+ ]
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "type": "package",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
"type": "package",
- "path": "System.AppContext/4.1.0",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
- "System.AppContext.4.1.0.nupkg.sha512",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
+ ]
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "type": "package",
+ "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "type": "package",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "System.AppContext/4.3.0": {
+ "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "type": "package",
+ "path": "System.AppContext/4.3.0",
+ "files": [
+ "System.AppContext.4.3.0.nupkg.sha512",
"System.AppContext.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1637,12 +1909,12 @@
"runtimes/aot/lib/netcore50/System.AppContext.dll"
]
},
- "System.Buffers/4.0.0": {
- "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==",
+ "System.Buffers/4.3.0": {
+ "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
"type": "package",
- "path": "System.Buffers/4.0.0",
+ "path": "System.Buffers/4.3.0",
"files": [
- "System.Buffers.4.0.0.nupkg.sha512",
+ "System.Buffers.4.3.0.nupkg.sha512",
"System.Buffers.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1650,12 +1922,12 @@
"lib/netstandard1.1/System.Buffers.dll"
]
},
- "System.Collections/4.0.11": {
- "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"type": "package",
- "path": "System.Collections/4.0.11",
+ "path": "System.Collections/4.3.0",
"files": [
- "System.Collections.4.0.11.nupkg.sha512",
+ "System.Collections.4.3.0.nupkg.sha512",
"System.Collections.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1716,12 +1988,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Concurrent/4.0.12": {
- "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"type": "package",
- "path": "System.Collections.Concurrent/4.0.12",
+ "path": "System.Collections.Concurrent/4.3.0",
"files": [
- "System.Collections.Concurrent.4.0.12.nupkg.sha512",
+ "System.Collections.Concurrent.4.3.0.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1782,12 +2054,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"type": "package",
- "path": "System.Console/4.0.0",
+ "path": "System.Console/4.3.0",
"files": [
- "System.Console.4.0.0.nupkg.sha512",
+ "System.Console.4.3.0.nupkg.sha512",
"System.Console.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1818,12 +2090,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Debug/4.0.11": {
- "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
- "path": "System.Diagnostics.Debug/4.0.11",
+ "path": "System.Diagnostics.Debug/4.3.0",
"files": [
- "System.Diagnostics.Debug.4.0.11.nupkg.sha512",
+ "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1884,12 +2156,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
- "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
"type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.0.0",
+ "path": "System.Diagnostics.DiagnosticSource/4.3.0",
"files": [
- "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512",
+ "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
"System.Diagnostics.DiagnosticSource.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1903,12 +2175,12 @@
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml"
]
},
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "System.Diagnostics.Tools/4.3.0": {
+ "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
+ "path": "System.Diagnostics.Tools/4.3.0",
"files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -1958,12 +2230,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Tracing/4.1.0": {
- "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"type": "package",
- "path": "System.Diagnostics.Tracing/4.1.0",
+ "path": "System.Diagnostics.Tracing/4.3.0",
"files": [
- "System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2046,12 +2318,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization/4.0.11": {
- "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"type": "package",
- "path": "System.Globalization/4.0.11",
+ "path": "System.Globalization/4.3.0",
"files": [
- "System.Globalization.4.0.11.nupkg.sha512",
+ "System.Globalization.4.3.0.nupkg.sha512",
"System.Globalization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2112,12 +2384,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Calendars/4.0.1": {
- "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
+ "System.Globalization.Calendars/4.3.0": {
+ "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"type": "package",
- "path": "System.Globalization.Calendars/4.0.1",
+ "path": "System.Globalization.Calendars/4.3.0",
"files": [
- "System.Globalization.Calendars.4.0.1.nupkg.sha512",
+ "System.Globalization.Calendars.4.3.0.nupkg.sha512",
"System.Globalization.Calendars.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2148,12 +2420,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Extensions/4.0.1": {
- "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"type": "package",
- "path": "System.Globalization.Extensions/4.0.1",
+ "path": "System.Globalization.Extensions/4.3.0",
"files": [
- "System.Globalization.Extensions.4.0.1.nupkg.sha512",
+ "System.Globalization.Extensions.4.3.0.nupkg.sha512",
"System.Globalization.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2187,12 +2459,12 @@
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll"
]
},
- "System.IO/4.1.0": {
- "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"type": "package",
- "path": "System.IO/4.1.0",
+ "path": "System.IO/4.3.0",
"files": [
- "System.IO.4.1.0.nupkg.sha512",
+ "System.IO.4.3.0.nupkg.sha512",
"System.IO.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2266,12 +2538,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
+ "System.IO.Compression/4.3.0": {
+ "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"type": "package",
- "path": "System.IO.Compression/4.1.0",
+ "path": "System.IO.Compression/4.3.0",
"files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
+ "System.IO.Compression.4.3.0.nupkg.sha512",
"System.IO.Compression.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2335,12 +2607,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
]
},
- "System.IO.Compression.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
"type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
+ "path": "System.IO.Compression.ZipFile/4.3.0",
"files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
+ "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
"System.IO.Compression.ZipFile.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2372,12 +2644,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem/4.0.1": {
- "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"type": "package",
- "path": "System.IO.FileSystem/4.0.1",
+ "path": "System.IO.FileSystem/4.3.0",
"files": [
- "System.IO.FileSystem.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.4.3.0.nupkg.sha512",
"System.IO.FileSystem.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2408,12 +2680,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Primitives/4.0.1": {
- "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"type": "package",
- "path": "System.IO.FileSystem.Primitives/4.0.1",
+ "path": "System.IO.FileSystem.Primitives/4.3.0",
"files": [
- "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2445,12 +2717,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq/4.1.0": {
- "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"type": "package",
- "path": "System.Linq/4.1.0",
+ "path": "System.Linq/4.3.0",
"files": [
- "System.Linq.4.1.0.nupkg.sha512",
+ "System.Linq.4.3.0.nupkg.sha512",
"System.Linq.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2515,12 +2787,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"type": "package",
- "path": "System.Linq.Expressions/4.1.0",
+ "path": "System.Linq.Expressions/4.3.0",
"files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
+ "System.Linq.Expressions.4.3.0.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2597,12 +2869,12 @@
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
]
},
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
+ "System.Net.Http/4.3.0": {
+ "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
"type": "package",
- "path": "System.Net.Http/4.1.0",
+ "path": "System.Net.Http/4.3.0",
"files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
+ "System.Net.Http.4.3.0.nupkg.sha512",
"System.Net.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2677,12 +2949,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
]
},
- "System.Net.Primitives/4.0.11": {
- "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"type": "package",
- "path": "System.Net.Primitives/4.0.11",
+ "path": "System.Net.Primitives/4.3.0",
"files": [
- "System.Net.Primitives.4.0.11.nupkg.sha512",
+ "System.Net.Primitives.4.3.0.nupkg.sha512",
"System.Net.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2754,12 +3026,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Sockets/4.1.0": {
- "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
+ "System.Net.Sockets/4.3.0": {
+ "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
"type": "package",
- "path": "System.Net.Sockets/4.1.0",
+ "path": "System.Net.Sockets/4.3.0",
"files": [
- "System.Net.Sockets.4.1.0.nupkg.sha512",
+ "System.Net.Sockets.4.3.0.nupkg.sha512",
"System.Net.Sockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2790,12 +3062,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"type": "package",
- "path": "System.ObjectModel/4.0.12",
+ "path": "System.ObjectModel/4.3.0",
"files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
+ "System.ObjectModel.4.3.0.nupkg.sha512",
"System.ObjectModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2858,12 +3130,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection/4.1.0": {
- "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"type": "package",
- "path": "System.Reflection/4.1.0",
+ "path": "System.Reflection/4.3.0",
"files": [
- "System.Reflection.4.1.0.nupkg.sha512",
+ "System.Reflection.4.3.0.nupkg.sha512",
"System.Reflection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -2937,20 +3209,24 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"type": "package",
- "path": "System.Reflection.Emit/4.0.1",
+ "path": "System.Reflection.Emit/4.3.0",
"files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.4.3.0.nupkg.sha512",
"System.Reflection.Emit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.dll",
"lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/net45/_._",
"ref/netstandard1.1/System.Reflection.Emit.dll",
@@ -2967,20 +3243,28 @@
"ref/xamarinmac20/_._"
]
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.0.1",
+ "path": "System.Reflection.Emit.ILGeneration/4.3.0",
"files": [
- "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
"System.Reflection.Emit.ILGeneration.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
@@ -2995,23 +3279,35 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.0.1",
+ "path": "System.Reflection.Emit.Lightweight/4.3.0",
"files": [
- "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
"System.Reflection.Emit.Lightweight.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.Lightweight.dll",
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
@@ -3026,15 +3322,19 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Extensions/4.0.1": {
- "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"type": "package",
- "path": "System.Reflection.Extensions/4.0.1",
+ "path": "System.Reflection.Extensions/4.3.0",
"files": [
- "System.Reflection.Extensions.4.0.1.nupkg.sha512",
+ "System.Reflection.Extensions.4.3.0.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3084,12 +3384,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.Primitives/4.0.1": {
- "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"type": "package",
- "path": "System.Reflection.Primitives/4.0.1",
+ "path": "System.Reflection.Primitives/4.3.0",
"files": [
- "System.Reflection.Primitives.4.0.1.nupkg.sha512",
+ "System.Reflection.Primitives.4.3.0.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3139,12 +3439,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.TypeExtensions/4.1.0": {
- "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"type": "package",
- "path": "System.Reflection.TypeExtensions/4.1.0",
+ "path": "System.Reflection.TypeExtensions/4.3.0",
"files": [
- "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512",
+ "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3191,12 +3491,12 @@
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
- "System.Resources.ResourceManager/4.0.1": {
- "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"type": "package",
- "path": "System.Resources.ResourceManager/4.0.1",
+ "path": "System.Resources.ResourceManager/4.3.0",
"files": [
- "System.Resources.ResourceManager.4.0.1.nupkg.sha512",
+ "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3246,12 +3546,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime/4.1.0": {
- "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"type": "package",
- "path": "System.Runtime/4.1.0",
+ "path": "System.Runtime/4.3.0",
"files": [
- "System.Runtime.4.1.0.nupkg.sha512",
+ "System.Runtime.4.3.0.nupkg.sha512",
"System.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3336,12 +3636,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Extensions/4.1.0": {
- "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"type": "package",
- "path": "System.Runtime.Extensions/4.1.0",
+ "path": "System.Runtime.Extensions/4.3.0",
"files": [
- "System.Runtime.Extensions.4.1.0.nupkg.sha512",
+ "System.Runtime.Extensions.4.3.0.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3415,12 +3715,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Handles/4.0.1": {
- "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"type": "package",
- "path": "System.Runtime.Handles/4.0.1",
+ "path": "System.Runtime.Handles/4.3.0",
"files": [
- "System.Runtime.Handles.4.0.1.nupkg.sha512",
+ "System.Runtime.Handles.4.3.0.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3451,12 +3751,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices/4.1.0": {
- "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"type": "package",
- "path": "System.Runtime.InteropServices/4.1.0",
+ "path": "System.Runtime.InteropServices/4.3.0",
"files": [
- "System.Runtime.InteropServices.4.1.0.nupkg.sha512",
+ "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3464,6 +3764,7 @@
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
@@ -3475,6 +3776,7 @@
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
@@ -3486,6 +3788,7 @@
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
@@ -3539,18 +3842,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
"type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0",
+ "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
"files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.0.0.nupkg.sha512",
+ "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.RuntimeInformation.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/xamarinios10/_._",
@@ -3571,12 +3875,12 @@
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
]
},
- "System.Runtime.Numerics/4.0.1": {
- "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
+ "System.Runtime.Numerics/4.3.0": {
+ "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"type": "package",
- "path": "System.Runtime.Numerics/4.0.1",
+ "path": "System.Runtime.Numerics/4.3.0",
"files": [
- "System.Runtime.Numerics.4.0.1.nupkg.sha512",
+ "System.Runtime.Numerics.4.3.0.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3626,12 +3930,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
- "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.2.0",
+ "path": "System.Security.Cryptography.Algorithms/4.3.0",
"files": [
- "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3656,6 +3960,7 @@
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
@@ -3664,12 +3969,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
]
},
- "System.Security.Cryptography.Cng/4.2.0": {
- "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
"type": "package",
- "path": "System.Security.Cryptography.Cng/4.2.0",
+ "path": "System.Security.Cryptography.Cng/4.3.0",
"files": [
- "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Cng.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3690,12 +3995,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
]
},
- "System.Security.Cryptography.Csp/4.0.0": {
- "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"type": "package",
- "path": "System.Security.Cryptography.Csp/4.0.0",
+ "path": "System.Security.Cryptography.Csp/4.3.0",
"files": [
- "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Csp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3720,12 +4025,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
]
},
- "System.Security.Cryptography.Encoding/4.0.0": {
- "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"type": "package",
- "path": "System.Security.Cryptography.Encoding/4.0.0",
+ "path": "System.Security.Cryptography.Encoding/4.3.0",
"files": [
- "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3759,12 +4064,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
]
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
- "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
"type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.0.0",
+ "path": "System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
- "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
"System.Security.Cryptography.OpenSsl.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3773,12 +4078,12 @@
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
]
},
- "System.Security.Cryptography.Primitives/4.0.0": {
- "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"type": "package",
- "path": "System.Security.Cryptography.Primitives/4.0.0",
+ "path": "System.Security.Cryptography.Primitives/4.3.0",
"files": [
- "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3800,12 +4105,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.1.0",
+ "path": "System.Security.Cryptography.X509Certificates/4.3.0",
"files": [
- "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512",
+ "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3854,12 +4159,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
]
},
- "System.Text.Encoding/4.0.11": {
- "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"type": "package",
- "path": "System.Text.Encoding/4.0.11",
+ "path": "System.Text.Encoding/4.3.0",
"files": [
- "System.Text.Encoding.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.4.3.0.nupkg.sha512",
"System.Text.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3920,12 +4225,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encoding.Extensions/4.0.11": {
- "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"type": "package",
- "path": "System.Text.Encoding.Extensions/4.0.11",
+ "path": "System.Text.Encoding.Extensions/4.3.0",
"files": [
- "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
"System.Text.Encoding.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -3986,12 +4291,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.RegularExpressions/4.1.0": {
- "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "System.Text.RegularExpressions/4.3.0": {
+ "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"type": "package",
- "path": "System.Text.RegularExpressions/4.1.0",
+ "path": "System.Text.RegularExpressions/4.3.0",
"files": [
- "System.Text.RegularExpressions.4.1.0.nupkg.sha512",
+ "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
"System.Text.RegularExpressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -4024,6 +4329,7 @@
"ref/netcore50/ru/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
@@ -4067,12 +4373,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading/4.0.11": {
- "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"type": "package",
- "path": "System.Threading/4.0.11",
+ "path": "System.Threading/4.3.0",
"files": [
- "System.Threading.4.0.11.nupkg.sha512",
+ "System.Threading.4.3.0.nupkg.sha512",
"System.Threading.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -4136,12 +4442,12 @@
"runtimes/aot/lib/netcore50/System.Threading.dll"
]
},
- "System.Threading.Tasks/4.0.11": {
- "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"type": "package",
- "path": "System.Threading.Tasks/4.0.11",
+ "path": "System.Threading.Tasks/4.3.0",
"files": [
- "System.Threading.Tasks.4.0.11.nupkg.sha512",
+ "System.Threading.Tasks.4.3.0.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -4202,12 +4508,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Tasks.Extensions/4.0.0": {
- "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"type": "package",
- "path": "System.Threading.Tasks.Extensions/4.0.0",
+ "path": "System.Threading.Tasks.Extensions/4.3.0",
"files": [
- "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512",
+ "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -4217,12 +4523,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
]
},
- "System.Threading.Timer/4.0.1": {
- "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "System.Threading.Timer/4.3.0": {
+ "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
"type": "package",
- "path": "System.Threading.Timer/4.0.1",
+ "path": "System.Threading.Timer/4.3.0",
"files": [
- "System.Threading.Timer.4.0.1.nupkg.sha512",
+ "System.Threading.Timer.4.3.0.nupkg.sha512",
"System.Threading.Timer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -4270,18 +4576,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.ReaderWriter/4.0.11": {
- "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "System.Xml.ReaderWriter/4.3.0": {
+ "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"type": "package",
- "path": "System.Xml.ReaderWriter/4.0.11",
+ "path": "System.Xml.ReaderWriter/4.3.0",
"files": [
- "System.Xml.ReaderWriter.4.0.11.nupkg.sha512",
+ "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
"System.Xml.ReaderWriter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
+ "lib/net46/System.Xml.ReaderWriter.dll",
"lib/netcore50/System.Xml.ReaderWriter.dll",
"lib/netstandard1.3/System.Xml.ReaderWriter.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
@@ -4295,6 +4602,7 @@
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
+ "ref/net46/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.xml",
"ref/netcore50/de/System.Xml.ReaderWriter.xml",
@@ -4338,12 +4646,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "System.Xml.XDocument/4.3.0": {
+ "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"type": "package",
- "path": "System.Xml.XDocument/4.0.11",
+ "path": "System.Xml.XDocument/4.3.0",
"files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
+ "System.Xml.XDocument.4.3.0.nupkg.sha512",
"System.Xml.XDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -4409,7 +4717,7 @@
},
"projectFileDependencyGroups": {
"": [
- "NETStandard.Library >= 1.6.0"
+ "NETStandard.Library >= 1.6.1"
],
".NETFramework,Version=v4.5.1": [],
".NETStandard,Version=v1.6": []
diff --git a/samples/ApplicationParts/ApplicationParts.Test/project.json b/samples/ApplicationParts/ApplicationParts.Test/project.json
index 2a5e2334b..f7af10fca 100644
--- a/samples/ApplicationParts/ApplicationParts.Test/project.json
+++ b/samples/ApplicationParts/ApplicationParts.Test/project.json
@@ -11,19 +11,20 @@
"dependencies": {
"NUnit": "3.4.1",
"dotnet-test-nunit": "3.4.0-*",
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewActionResults": "1.0.0",
- "MyTested.AspNetCore.Mvc.Routing": "1.0.0",
- "Microsoft.EntityFrameworkCore.InMemory": "1.0.1",
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewActionResults": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Routing": "1.1.0",
+ "Microsoft.DotNet.InternalAbstractions": "1.0.0", // remove when not needed
+ "Microsoft.EntityFrameworkCore.InMemory": "1.1.0",
"ApplicationParts.Web": "*",
"ApplicationParts.Controllers": "*"
},
"frameworks": {
- "netcoreapp1.0": {
+ "netcoreapp1.1": {
"imports": "portable-net45+win8",
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.0.1",
+ "version": "1.1.0",
"type": "platform"
}
}
diff --git a/samples/ApplicationParts/ApplicationParts.Test/project.lock.json b/samples/ApplicationParts/ApplicationParts.Test/project.lock.json
index 7b9f72408..0727f0334 100644
--- a/samples/ApplicationParts/ApplicationParts.Test/project.lock.json
+++ b/samples/ApplicationParts/ApplicationParts.Test/project.lock.json
@@ -2,14 +2,14 @@
"locked": false,
"version": 2,
"targets": {
- ".NETCoreApp,Version=v1.0": {
- "dotnet-test-nunit/3.4.0-beta-2": {
+ ".NETCoreApp,Version=v1.1": {
+ "dotnet-test-nunit/3.4.0-beta-3": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyModel": "1.0.0",
"Microsoft.Extensions.Testing.Abstractions": "1.0.0-preview2-003121",
"Microsoft.NETCore.App": "1.0.0",
- "NUnit.Portable.Agent": "3.4.0-beta-2"
+ "NUnit.Portable.Agent": "3.4.0-beta-3"
},
"compile": {
"lib/netcoreapp1.0/dotnet-test-nunit.dll": {}
@@ -18,7 +18,7 @@
"lib/netcoreapp1.0/dotnet-test-nunit.dll": {}
}
},
- "Libuv/1.9.0": {
+ "Libuv/1.9.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
@@ -58,13 +58,15 @@
}
}
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -73,16 +75,16 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
- "System.Net.Http": "4.1.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.dll": {}
@@ -91,12 +93,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
@@ -105,12 +108,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Claims": "4.0.1"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
@@ -119,13 +123,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
@@ -134,15 +139,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
@@ -151,13 +151,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
@@ -166,22 +164,19 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
@@ -190,13 +185,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
@@ -205,20 +198,20 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.StackTrace": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Metadata": "1.3.0"
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.StackTrace": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.dll": {}
@@ -227,10 +220,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -239,12 +232,12 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
@@ -253,43 +246,43 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Console": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.StackTrace": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.StackTrace": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {}
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {}
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -298,11 +291,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -311,12 +305,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -325,16 +318,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
@@ -343,15 +336,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Globalization.Extensions": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -360,14 +353,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.IO.FileSystem": "4.0.1"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -376,19 +369,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebSockets": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0",
+ "System.Net.WebSockets": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -397,12 +386,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
@@ -411,13 +401,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
}
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
+ "Microsoft.AspNetCore.Identity/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.dll": {}
@@ -426,12 +416,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.dll": {}
}
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Identity": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.AspNetCore.Identity": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
@@ -440,36 +431,29 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
@@ -478,19 +462,20 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
@@ -499,15 +484,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -516,10 +500,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -528,21 +513,22 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -551,11 +537,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -564,12 +551,13 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0",
- "System.ComponentModel.Annotations": "4.1.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.Annotations": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
@@ -578,11 +566,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -591,13 +580,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -606,15 +596,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -623,16 +613,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -641,13 +629,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -656,19 +646,20 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Buffers": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -677,16 +668,11 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Threading": "4.0.11",
- "System.Threading.Thread": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
@@ -695,18 +681,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
@@ -715,16 +696,28 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
@@ -733,13 +726,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -748,16 +739,17 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Principal.Windows": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
@@ -766,30 +758,18 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
}
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Numerics.Vectors": "4.1.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "System.Threading.Timer": "4.0.1"
+ "Libuv": "1.9.1",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
@@ -798,14 +778,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
}
},
- "Microsoft.AspNetCore.StaticFiles/1.0.0": {
+ "Microsoft.AspNetCore.StaticFiles/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.dll": {}
@@ -814,12 +795,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.dll": {}
}
},
- "Microsoft.AspNetCore.TestHost/1.0.0": {
+ "Microsoft.AspNetCore.TestHost/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Net.Http": "4.1.0"
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.TestHost.dll": {}
@@ -828,15 +809,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.TestHost.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -922,25 +902,25 @@
"lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.0/Microsoft.CSharp.dll": {}
@@ -963,7 +943,7 @@
"lib/netstandard1.1/Microsoft.DiaSymReader.dll": {}
}
},
- "Microsoft.DiaSymReader.Native/1.4.0-rc2": {
+ "Microsoft.DiaSymReader.Native/1.4.0": {
"type": "package",
"runtimeTargets": {
"runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll": {
@@ -1011,6 +991,25 @@
"lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
}
},
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.AppContext": "4.1.0",
+ "System.Collections": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ }
+ },
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
"type": "package",
"dependencies": {
@@ -1034,21 +1033,18 @@
"lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {}
}
},
- "Microsoft.EntityFrameworkCore/1.0.1": {
+ "Microsoft.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Remotion.Linq": "2.1.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.Collections.Immutable": "1.2.0",
- "System.ComponentModel.Annotations": "4.1.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.ComponentModel.Annotations": "4.3.0",
"System.Interactive.Async": "3.0.0",
- "System.Linq.Queryable": "4.0.1",
- "System.ObjectModel": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0"
+ "System.Linq.Queryable": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
@@ -1057,10 +1053,11 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.InMemory/1.0.1": {
+ "Microsoft.EntityFrameworkCore.InMemory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "1.0.1"
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.InMemory.dll": {}
@@ -1069,14 +1066,14 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.InMemory.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.1": {
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.EntityFrameworkCore": "1.0.1",
- "System.Data.Common": "4.1.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Data.Common": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
@@ -1085,12 +1082,13 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.SqlServer/1.0.1": {
+ "Microsoft.EntityFrameworkCore.SqlServer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "1.0.1",
- "System.Data.SqlClient": "4.1.0",
- "System.Threading.Thread": "4.0.0"
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Data.SqlClient": "4.3.0",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
@@ -1099,13 +1097,11 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -1114,14 +1110,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Linq": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -1130,17 +1125,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0": {
+ "Microsoft.Extensions.Configuration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
@@ -1149,11 +1138,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -1162,11 +1151,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
@@ -1175,10 +1165,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
@@ -1187,12 +1178,13 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.AppContext": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
@@ -1201,15 +1193,15 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Dynamic.Runtime": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
@@ -1218,27 +1210,24 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "Microsoft.Extensions.Configuration.UserSecrets/1.0.0": {
+ "Microsoft.Extensions.Configuration.UserSecrets/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Json": "1.0.0"
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ "lib/netstandard1.5/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ "lib/netstandard1.5/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -1247,16 +1236,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -1265,10 +1249,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
@@ -1281,12 +1265,11 @@
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -1295,10 +1278,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -1307,16 +1291,13 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.IO.FileSystem.Watcher": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -1325,14 +1306,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
@@ -1341,12 +1318,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -1355,15 +1330,15 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Resources.Reader": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Resources.Reader": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
@@ -1372,12 +1347,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -1386,12 +1360,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -1400,18 +1374,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -1420,14 +1386,12 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Console": "4.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
@@ -1436,11 +1400,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
}
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Diagnostics.Debug": "4.0.11"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
@@ -1449,13 +1413,10 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
@@ -1464,20 +1425,13 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -1486,15 +1440,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.AppContext": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
@@ -1503,11 +1453,11 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -1533,12 +1483,13 @@
"lib/netstandard1.6/Microsoft.Extensions.Testing.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -1547,17 +1498,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -1566,50 +1513,51 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.App/1.0.1": {
+ "Microsoft.NETCore.App/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.CSharp": "4.0.1",
+ "Libuv": "1.9.1",
+ "Microsoft.CSharp": "4.3.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
"Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
- "Microsoft.NETCore.DotNetHostPolicy": "1.0.1",
- "Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
- "Microsoft.VisualBasic": "10.0.1",
- "NETStandard.Library": "1.6.0",
- "System.Buffers": "4.0.0",
- "System.Collections.Immutable": "1.2.0",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Annotations": "4.1.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Process": "4.1.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.IO.MemoryMappedFiles": "4.0.0",
- "System.IO.UnmanagedMemoryStream": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Linq.Parallel": "4.0.1",
- "System.Linq.Queryable": "4.0.1",
- "System.Net.NameResolution": "4.0.0",
- "System.Net.Requests": "4.0.11",
- "System.Net.Security": "4.0.0",
- "System.Net.WebHeaderCollection": "4.0.1",
- "System.Numerics.Vectors": "4.1.1",
- "System.Reflection.DispatchProxy": "4.0.1",
- "System.Reflection.Metadata": "1.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.Reader": "4.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Threading.Tasks.Dataflow": "4.6.0",
- "System.Threading.Tasks.Extensions": "4.0.0",
- "System.Threading.Tasks.Parallel": "4.0.1",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10"
+ "Microsoft.DiaSymReader.Native": "1.4.0",
+ "Microsoft.NETCore.DotNetHostPolicy": "1.1.0",
+ "Microsoft.NETCore.Runtime.CoreCLR": "1.1.0",
+ "Microsoft.VisualBasic": "10.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Annotations": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Process": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO.FileSystem.Watcher": "4.3.0",
+ "System.IO.MemoryMappedFiles": "4.3.0",
+ "System.IO.UnmanagedMemoryStream": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Linq.Parallel": "4.3.0",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Net.Requests": "4.3.0",
+ "System.Net.Security": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Reflection.DispatchProxy": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.Reader": "4.3.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Threading.Tasks.Dataflow": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Tasks.Parallel": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
},
"compile": {
"lib/netcoreapp1.0/_._": {}
@@ -1618,25 +1566,25 @@
"lib/netcoreapp1.0/_._": {}
}
},
- "Microsoft.NETCore.DotNetHost/1.0.1": {
+ "Microsoft.NETCore.DotNetHost/1.1.0": {
"type": "package"
},
- "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
+ "Microsoft.NETCore.DotNetHostPolicy/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.DotNetHostResolver": "1.0.1"
+ "Microsoft.NETCore.DotNetHostResolver": "1.1.0"
}
},
- "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
+ "Microsoft.NETCore.DotNetHostResolver/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.DotNetHost": "1.0.1"
+ "Microsoft.NETCore.DotNetHost": "1.1.0"
}
},
- "Microsoft.NETCore.Jit/1.0.4": {
+ "Microsoft.NETCore.Jit/1.1.0": {
"type": "package"
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1645,14 +1593,14 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
+ "Microsoft.NETCore.Runtime.CoreCLR/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Jit": "1.0.4",
+ "Microsoft.NETCore.Jit": "1.1.0",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1"
}
},
- "Microsoft.NETCore.Targets/1.0.1": {
+ "Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1664,25 +1612,25 @@
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
- "Microsoft.VisualBasic/10.0.1": {
+ "Microsoft.VisualBasic/10.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.1/Microsoft.VisualBasic.dll": {}
@@ -1691,49 +1639,48 @@
"lib/netstandard1.3/Microsoft.VisualBasic.dll": {}
}
},
- "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-rc2-final": {
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0-rc2-final",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final",
- "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
- "Microsoft.Win32.Registry": "4.0.0-rc2-24027",
- "System.Collections": "4.0.11-rc2-24027",
- "System.Net.Sockets": "4.1.0-rc2-24027",
- "System.Runtime.Loader": "4.0.0-rc2-24027",
- "System.Text.Encoding": "4.0.11-rc2-24027",
- "System.Threading": "4.0.11-rc2-24027"
- },
- "compile": {
- "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
- },
- "runtime": {
- "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
+ "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
+ "Microsoft.Win32.Registry": "4.0.0",
+ "System.Collections": "4.0.11",
+ "System.Net.Sockets": "4.1.0",
+ "System.Runtime.Loader": "4.0.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading": "4.0.11"
+ },
+ "compile": {
+ "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
}
},
- "Microsoft.Win32.Primitives/4.0.1": {
+ "Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
- "Microsoft.Win32.Registry/4.0.0": {
+ "Microsoft.Win32.Registry/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
@@ -1749,53 +1696,53 @@
}
}
},
- "NETStandard.Library/1.6.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Console": "4.0.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.Compression.ZipFile": "4.0.1",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/9.0.1": {
@@ -1940,7 +1887,7 @@
"lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/nunit.framework.dll": {}
}
},
- "NUnit.Portable.Agent/3.4.0-beta-2": {
+ "NUnit.Portable.Agent/3.4.0-beta-3": {
"type": "package",
"dependencies": {
"System.Globalization": "4.0.11",
@@ -1986,11 +1933,38 @@
"lib/netstandard1.0/Remotion.Linq.dll": {}
}
},
- "runtime.native.System/4.0.0": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "debian.8-x64"
+ }
+ }
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.23-x64"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.24-x64"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1999,18 +1973,18 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Data.SqlClient.sni/4.0.0": {
+ "runtime.native.System.Data.SqlClient.sni/4.3.0": {
"type": "package",
"dependencies": {
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.0.1",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.0.1"
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.3.0",
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.3.0"
}
},
- "runtime.native.System.IO.Compression/4.1.0": {
+ "runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2019,11 +1993,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Http/4.0.1": {
+ "runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2032,11 +2006,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Security/4.0.1": {
+ "runtime.native.System.Net.Security/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2045,11 +2019,31 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2058,7 +2052,79 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1": {
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.13.2-x64"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.42.1-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "rhel.7-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.14.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.10-x64"
+ }
+ }
+ },
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/win7-x64/native/sni.dll": {
@@ -2067,7 +2133,7 @@
}
}
},
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1": {
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/win7-x86/native/sni.dll": {
@@ -2076,10 +2142,10 @@
}
}
},
- "System.AppContext/4.1.0": {
+ "System.AppContext/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.AppContext.dll": {}
@@ -2088,14 +2154,14 @@
"lib/netstandard1.6/System.AppContext.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -2104,12 +2170,12 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.dll": {}
@@ -2118,19 +2184,19 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -2139,17 +2205,17 @@
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
@@ -2158,15 +2224,15 @@
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
}
},
- "System.Collections.NonGeneric/4.0.1": {
+ "System.Collections.NonGeneric/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -2175,16 +2241,16 @@
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
- "System.Collections.Specialized/4.0.1": {
+ "System.Collections.Specialized/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -2193,10 +2259,10 @@
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.dll": {}
@@ -2205,20 +2271,20 @@
"lib/netstandard1.3/System.ComponentModel.dll": {}
}
},
- "System.ComponentModel.Annotations/4.1.0": {
+ "System.ComponentModel.Annotations/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
@@ -2227,12 +2293,12 @@
"lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
@@ -2241,24 +2307,24 @@
"lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
@@ -2267,30 +2333,30 @@
"lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Console/4.0.0": {
+ "System.Console/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Console.dll": {}
}
},
- "System.Data.Common/4.1.0": {
+ "System.Data.Common/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
@@ -2299,46 +2365,46 @@
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
- "System.Data.SqlClient/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Data.Common": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.Pipes": "4.0.0",
- "System.Linq": "4.1.0",
- "System.Net.NameResolution": "4.0.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Security": "4.0.0",
- "System.Net.Sockets": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.CodePages": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "runtime.native.System.Data.SqlClient.sni": "4.0.0"
+ "System.Data.SqlClient/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Data.Common": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Pipes": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Security": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.CodePages": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Data.SqlClient.dll": {}
@@ -2354,10 +2420,10 @@
}
}
},
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
@@ -2366,12 +2432,12 @@
"lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
@@ -2380,14 +2446,14 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
@@ -2423,30 +2489,30 @@
}
}
},
- "System.Diagnostics.Process/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0"
+ "System.Diagnostics.Process/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Diagnostics.Process.dll": {}
@@ -2466,15 +2532,13 @@
}
}
},
- "System.Diagnostics.StackTrace/4.0.1": {
+ "System.Diagnostics.StackTrace/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "1.2.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.IO.FileSystem": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
@@ -2483,12 +2547,12 @@
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
@@ -2497,12 +2561,12 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
@@ -2511,24 +2575,23 @@
"lib/portable-net45+win8+wpa81/_._": {}
}
},
- "System.Dynamic.Runtime/4.0.11": {
+ "System.Dynamic.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
@@ -2537,12 +2600,12 @@
"lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.dll": {}
@@ -2551,27 +2614,27 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Globalization.Calendars/4.0.1": {
+ "System.Globalization.Calendars/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
- "System.Globalization.Extensions/4.0.1": {
+ "System.Globalization.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
@@ -2606,14 +2669,14 @@
"lib/netstandard1.0/System.Interactive.Async.dll": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.IO.dll": {}
@@ -2622,23 +2685,24 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.IO.Compression": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.dll": {}
@@ -2657,18 +2721,18 @@
}
}
},
- "System.IO.Compression.ZipFile/4.0.1": {
+ "System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -2677,26 +2741,26 @@
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
- "System.IO.FileSystem/4.0.1": {
+ "System.IO.FileSystem/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1": {
+ "System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -2705,25 +2769,25 @@
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0": {
+ "System.IO.FileSystem.Watcher/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
@@ -2743,22 +2807,22 @@
}
}
},
- "System.IO.MemoryMappedFiles/4.0.0": {
+ "System.IO.MemoryMappedFiles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.IO.UnmanagedMemoryStream": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.IO.UnmanagedMemoryStream": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
@@ -2774,27 +2838,28 @@
}
}
},
- "System.IO.Pipes/4.0.0": {
+ "System.IO.Pipes/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -2810,16 +2875,18 @@
}
}
},
- "System.IO.UnmanagedMemoryStream/4.0.1": {
+ "System.IO.UnmanagedMemoryStream/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
@@ -2828,14 +2895,14 @@
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.dll": {}
@@ -2844,26 +2911,26 @@
"lib/netstandard1.6/System.Linq.dll": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -2872,19 +2939,19 @@
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
}
},
- "System.Linq.Parallel/4.0.1": {
+ "System.Linq.Parallel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Linq.Parallel.dll": {}
@@ -2893,17 +2960,17 @@
"lib/netstandard1.3/System.Linq.Parallel.dll": {}
}
},
- "System.Linq.Queryable/4.0.1": {
+ "System.Linq.Queryable/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Linq.Queryable.dll": {}
@@ -2912,35 +2979,35 @@
"lib/netstandard1.3/System.Linq.Queryable.dll": {}
}
},
- "System.Net.Http/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Http.dll": {}
@@ -2959,23 +3026,23 @@
}
}
},
- "System.Net.NameResolution/4.0.0": {
+ "System.Net.NameResolution/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
@@ -2991,13 +3058,13 @@
}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Primitives.dll": {}
@@ -3006,22 +3073,22 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Net.Requests/4.0.11": {
+ "System.Net.Requests/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebHeaderCollection": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Requests.dll": {}
@@ -3040,37 +3107,37 @@
}
}
},
- "System.Net.Security/4.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Security": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Security/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Security": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Security.dll": {}
@@ -3086,27 +3153,27 @@
}
}
},
- "System.Net.Sockets/4.1.0": {
+ "System.Net.Sockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
- "System.Net.WebHeaderCollection/4.0.1": {
+ "System.Net.WebHeaderCollection/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
@@ -3115,13 +3182,13 @@
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
- "System.Net.WebSockets/4.0.0": {
+ "System.Net.WebSockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
@@ -3130,13 +3197,13 @@
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
- "System.Numerics.Vectors/4.1.1": {
+ "System.Numerics.Vectors/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
@@ -3145,14 +3212,14 @@
"lib/netstandard1.0/System.Numerics.Vectors.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.ObjectModel.dll": {}
@@ -3161,14 +3228,14 @@
"lib/netstandard1.3/System.ObjectModel.dll": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.dll": {}
@@ -3177,19 +3244,19 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Reflection.DispatchProxy/4.0.1": {
+ "System.Reflection.DispatchProxy/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
@@ -3198,14 +3265,14 @@
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
}
},
- "System.Reflection.Emit/4.0.1": {
+ "System.Reflection.Emit/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
@@ -3214,12 +3281,12 @@
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -3228,13 +3295,13 @@
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
+ "System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -3243,13 +3310,13 @@
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Extensions.dll": {}
@@ -3258,24 +3325,25 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Reflection.Metadata/1.3.0": {
+ "System.Reflection.Metadata/1.4.1": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Immutable": "1.2.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
@@ -3284,12 +3352,12 @@
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Primitives.dll": {}
@@ -3298,11 +3366,11 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Reflection.TypeExtensions/4.1.0": {
+ "System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -3311,14 +3379,14 @@
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
}
},
- "System.Resources.Reader/4.0.0": {
+ "System.Resources.Reader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Resources.Reader.dll": {}
@@ -3327,14 +3395,14 @@
"lib/netstandard1.0/System.Resources.Reader.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
@@ -3343,11 +3411,11 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.dll": {}
@@ -3356,12 +3424,24 @@
"lib/portable-net45+win8+wp80+wpa81/_._": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Extensions.dll": {}
@@ -3370,48 +3450,51 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Runtime.Handles/4.0.1": {
+ "System.Runtime.Handles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wpa81/_._": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
@@ -3423,12 +3506,12 @@
}
}
},
- "System.Runtime.Loader/4.0.0": {
+ "System.Runtime.Loader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -3437,13 +3520,13 @@
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.Numerics.dll": {}
@@ -3452,11 +3535,11 @@
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
+ "System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
@@ -3465,16 +3548,16 @@
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "System.Security.Claims/4.0.1": {
+ "System.Security.Claims/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
@@ -3483,51 +3566,56 @@
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
+ "System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "unix"
},
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Cng/4.2.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -3543,22 +3631,22 @@
}
}
},
- "System.Security.Cryptography.Csp/4.0.0": {
+ "System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Csp.dll": {}
@@ -3574,21 +3662,21 @@
}
}
},
- "System.Security.Cryptography.Encoding/4.0.0": {
+ "System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
@@ -3604,22 +3692,22 @@
}
}
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -3634,16 +3722,16 @@
}
}
},
- "System.Security.Cryptography.Primitives/4.0.0": {
+ "System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
@@ -3652,34 +3740,34 @@
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Cng": "4.2.0",
- "System.Security.Cryptography.Csp": "4.0.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
@@ -3695,10 +3783,10 @@
}
}
},
- "System.Security.Principal/4.0.1": {
+ "System.Security.Principal/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Security.Principal.dll": {}
@@ -3707,23 +3795,23 @@
"lib/netstandard1.0/System.Security.Principal.dll": {}
}
},
- "System.Security.Principal.Windows/4.0.0": {
+ "System.Security.Principal.Windows/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
@@ -3739,12 +3827,12 @@
}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.dll": {}
@@ -3753,21 +3841,21 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Text.Encoding.CodePages/4.0.1": {
+ "System.Text.Encoding.CodePages/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -3783,13 +3871,13 @@
}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
@@ -3798,16 +3886,16 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -3816,28 +3904,23 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.dll": {}
@@ -3846,13 +3929,13 @@
"lib/netstandard1.3/System.Threading.dll": {}
}
},
- "System.Threading.Overlapped/4.0.1": {
+ "System.Threading.Overlapped/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -3868,12 +3951,12 @@
}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Tasks.dll": {}
@@ -3882,20 +3965,20 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Threading.Tasks.Dataflow/4.6.0": {
+ "System.Threading.Tasks.Dataflow/4.7.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
@@ -3904,12 +3987,12 @@
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
@@ -3918,17 +4001,17 @@
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
}
},
- "System.Threading.Tasks.Parallel/4.0.1": {
+ "System.Threading.Tasks.Parallel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
@@ -3937,10 +4020,10 @@
"lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
}
},
- "System.Threading.Thread/4.0.0": {
+ "System.Threading.Thread/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Thread.dll": {}
@@ -3949,11 +4032,11 @@
"lib/netstandard1.3/System.Threading.Thread.dll": {}
}
},
- "System.Threading.ThreadPool/4.0.10": {
+ "System.Threading.ThreadPool/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
@@ -3962,35 +4045,35 @@
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -3999,21 +4082,21 @@
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -4089,9 +4172,9 @@
"dependencies": {
"ApplicationParts.Models": "1.0.0",
"ApplicationParts.Services": "1.0.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "NETStandard.Library": "1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"netstandard1.6/ApplicationParts.Controllers.dll": {}
@@ -4104,9 +4187,9 @@
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "NETStandard.Library": "1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"netstandard1.6/ApplicationParts.Models.dll": {}
@@ -4119,7 +4202,7 @@
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "NETStandard.Library": "1.6.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"netstandard1.6/ApplicationParts.Services.dll": {}
@@ -4130,43 +4213,43 @@
},
"ApplicationParts.Web/1.0.0": {
"type": "project",
- "framework": ".NETCoreApp,Version=v1.0",
+ "framework": ".NETCoreApp,Version=v1.1",
"dependencies": {
"ApplicationParts.Controllers": "1.0.0",
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Diagnostics": "1.0.0",
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
- "Microsoft.AspNetCore.StaticFiles": "1.0.0",
- "Microsoft.EntityFrameworkCore.SqlServer": "1.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Logging.Console": "1.0.0",
- "Microsoft.Extensions.Logging.Debug": "1.0.0",
- "Microsoft.NETCore.App": "1.0.1",
- "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0-rc2-final"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
+ "Microsoft.AspNetCore.StaticFiles": "1.1.0",
+ "Microsoft.EntityFrameworkCore.SqlServer": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Logging.Console": "1.1.0",
+ "Microsoft.Extensions.Logging.Debug": "1.1.0",
+ "Microsoft.NETCore.App": "1.1.0",
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.1.0"
},
"compile": {
- "netcoreapp1.0/ApplicationParts.Web.dll": {}
+ "netcoreapp1.1/ApplicationParts.Web.dll": {}
},
"runtime": {
- "netcoreapp1.0/ApplicationParts.Web.dll": {}
+ "netcoreapp1.1/ApplicationParts.Web.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Abstractions/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.TestHost": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "MyTested.AspNetCore.Mvc.Configuration": "1.0.0",
- "MyTested.AspNetCore.Mvc.Licensing": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.TestHost": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Configuration": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Licensing": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
@@ -4175,12 +4258,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Configuration/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Configuration/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "1.0.0",
- "System.Collections.Concurrent": "4.0.12"
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0",
+ "System.Collections.Concurrent": "4.3.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Configuration.dll": {}
@@ -4189,11 +4272,11 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Configuration.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Controllers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Controllers/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Controllers.dll": {}
@@ -4202,12 +4285,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Controllers.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Http/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Http/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Http.dll": {}
@@ -4216,12 +4299,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Http.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Licensing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Licensing/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.4",
"dependencies": {
- "NETStandard.Library": "1.6.0",
- "System.Security.Cryptography.Csp": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Cryptography.Csp": "4.3.0"
},
"compile": {
"netstandard1.4/MyTested.AspNetCore.Mvc.Licensing.dll": {}
@@ -4230,11 +4313,11 @@
"netstandard1.4/MyTested.AspNetCore.Mvc.Licensing.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Routing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Routing/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Http": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Http": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Routing.dll": {}
@@ -4243,12 +4326,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Routing.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewActionResults/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewActionResults/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewActionResults.dll": {}
@@ -4259,13 +4342,13 @@
}
},
".NETFramework,Version=v4.5.1": {
- "dotnet-test-nunit/3.4.0-beta-2": {
+ "dotnet-test-nunit/3.4.0-beta-3": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyModel": "1.0.0",
"Microsoft.Extensions.Testing.Abstractions": "1.0.0-preview2-003121",
"Microsoft.NETCore.Platforms": "1.0.1",
- "NUnit.Portable.Agent": "3.4.0-beta-2"
+ "NUnit.Portable.Agent": "3.4.0-beta-3"
},
"compile": {
"lib/net451/dotnet-test-nunit.exe": {}
@@ -4274,7 +4357,7 @@
"lib/net451/dotnet-test-nunit.exe": {}
}
},
- "Libuv/1.9.0": {
+ "Libuv/1.9.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
@@ -4314,13 +4397,15 @@
}
}
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -4329,15 +4414,16 @@
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Net.Http"
@@ -4349,12 +4435,13 @@
"lib/net451/Microsoft.AspNetCore.Authentication.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
@@ -4363,11 +4450,12 @@
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
@@ -4376,13 +4464,14 @@
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
@@ -4391,8 +4480,11 @@
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
},
@@ -4400,10 +4492,11 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
@@ -4412,15 +4505,16 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Security",
@@ -4434,8 +4528,11 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
},
@@ -4443,18 +4540,19 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Reflection.Metadata": "1.3.0"
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Diagnostics.dll": {}
@@ -4463,10 +4561,10 @@
"lib/net451/Microsoft.AspNetCore.Diagnostics.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -4475,11 +4573,12 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Configuration",
@@ -4492,23 +4591,23 @@
"lib/net451/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.dll": {}
@@ -4517,15 +4616,16 @@
"lib/net451/Microsoft.AspNetCore.Hosting.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -4534,11 +4634,12 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -4547,12 +4648,11 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -4561,15 +4661,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
@@ -4578,11 +4679,13 @@
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -4591,13 +4694,14 @@
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -4606,10 +4710,11 @@
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -4618,12 +4723,13 @@
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {}
@@ -4632,12 +4738,13 @@
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {}
}
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
+ "Microsoft.AspNetCore.Identity/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Identity.dll": {}
@@ -4646,11 +4753,12 @@
"lib/net451/Microsoft.AspNetCore.Identity.dll": {}
}
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Identity": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0"
+ "Microsoft.AspNetCore.Identity": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
@@ -4659,36 +4767,27 @@
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "9.0.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
@@ -4697,19 +4796,20 @@
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
@@ -4718,11 +4818,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -4731,10 +4832,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -4743,20 +4845,22 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -4765,11 +4869,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -4778,11 +4883,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.ComponentModel.DataAnnotations"
@@ -4794,11 +4900,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -4807,13 +4914,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -4822,13 +4930,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -4837,12 +4946,13 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -4851,13 +4961,15 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -4866,18 +4978,19 @@
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0"
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -4886,8 +4999,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
},
@@ -4895,11 +5011,12 @@
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Xml",
@@ -4912,14 +5029,27 @@
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "1.1.0"
+ },
+ "compile": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
@@ -4928,10 +5058,11 @@
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -4940,15 +5071,16 @@
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
@@ -4957,16 +5089,16 @@
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
}
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Numerics.Vectors": "4.1.1",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "Libuv": "1.9.1",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {}
@@ -4975,14 +5107,15 @@
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {}
}
},
- "Microsoft.AspNetCore.StaticFiles/1.0.0": {
+ "Microsoft.AspNetCore.StaticFiles/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.StaticFiles.dll": {}
@@ -4991,10 +5124,11 @@
"lib/net451/Microsoft.AspNetCore.StaticFiles.dll": {}
}
},
- "Microsoft.AspNetCore.TestHost/1.0.0": {
+ "Microsoft.AspNetCore.TestHost/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting": "1.0.0"
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Net.Http"
@@ -5006,12 +5140,14 @@
"lib/net451/Microsoft.AspNetCore.TestHost.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -5052,7 +5188,7 @@
"lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"Microsoft.CSharp"
@@ -5116,6 +5252,15 @@
"lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
}
},
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ }
+ },
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
"type": "package",
"dependencies": {
@@ -5132,14 +5277,15 @@
"lib/net451/Microsoft.DotNet.ProjectModel.dll": {}
}
},
- "Microsoft.EntityFrameworkCore/1.0.1": {
+ "Microsoft.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Remotion.Linq": "2.1.1",
- "System.Collections.Immutable": "1.2.0",
+ "System.Collections.Immutable": "1.3.0",
"System.Interactive.Async": "3.0.0"
},
"frameworkAssemblies": [
@@ -5152,10 +5298,11 @@
"lib/net451/Microsoft.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.InMemory/1.0.1": {
+ "Microsoft.EntityFrameworkCore.InMemory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "1.0.1"
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.EntityFrameworkCore.InMemory.dll": {}
@@ -5164,11 +5311,12 @@
"lib/net451/Microsoft.EntityFrameworkCore.InMemory.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.1": {
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "1.0.1",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"frameworkAssemblies": [
"System.Data",
@@ -5181,10 +5329,11 @@
"lib/net451/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.SqlServer/1.0.1": {
+ "Microsoft.EntityFrameworkCore.SqlServer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "1.0.1"
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
@@ -5193,13 +5342,11 @@
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -5208,12 +5355,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -5222,17 +5370,11 @@
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0": {
+ "Microsoft.Extensions.Configuration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
@@ -5241,11 +5383,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -5254,11 +5396,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
@@ -5267,10 +5410,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
@@ -5279,11 +5423,12 @@
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
@@ -5292,11 +5437,12 @@
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -5306,10 +5452,11 @@
"lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "Microsoft.Extensions.Configuration.UserSecrets/1.0.0": {
+ "Microsoft.Extensions.Configuration.UserSecrets/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Json": "1.0.0"
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
@@ -5318,15 +5465,11 @@
"lib/net451/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -5335,16 +5478,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -5353,10 +5491,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -5366,12 +5504,11 @@
"lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -5380,10 +5517,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -5392,11 +5530,12 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -5405,21 +5544,22 @@
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -5428,13 +5568,14 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Localization.dll": {}
@@ -5443,12 +5584,11 @@
"lib/net451/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -5457,12 +5597,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -5471,18 +5611,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -5491,12 +5623,12 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Logging.Console.dll": {}
@@ -5505,10 +5637,11 @@
"lib/net451/Microsoft.Extensions.Logging.Console.dll": {}
}
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Logging.Debug.dll": {}
@@ -5517,8 +5650,11 @@
"lib/net451/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
},
@@ -5526,20 +5662,13 @@
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -5548,8 +5677,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
@@ -5557,11 +5689,11 @@
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -5585,12 +5717,13 @@
"lib/net451/Microsoft.Extensions.Testing.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -5599,17 +5732,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -5618,7 +5747,7 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -5627,13 +5756,12 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-rc2-final": {
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0-rc2-final",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final",
- "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0"
},
"compile": {
"lib/net451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
@@ -5642,40 +5770,40 @@
"lib/net451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
}
},
- "NETStandard.Library/1.6.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/9.0.1": {
@@ -5792,7 +5920,7 @@
"lib/net45/nunit.framework.dll": {}
}
},
- "NUnit.Portable.Agent/3.4.0-beta-2": {
+ "NUnit.Portable.Agent/3.4.0-beta-3": {
"type": "package",
"frameworkAssemblies": [
"System.Globalization",
@@ -5838,7 +5966,7 @@
"lib/net45/Remotion.Linq.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -5847,7 +5975,7 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -5860,7 +5988,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5872,7 +6000,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
@@ -5881,7 +6009,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5893,7 +6021,7 @@
"lib/net45/_._": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -5906,10 +6034,10 @@
"lib/net45/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel.Primitives": "4.1.0"
+ "System.ComponentModel.Primitives": "4.3.0"
},
"frameworkAssemblies": [
"System",
@@ -5922,7 +6050,7 @@
"lib/net45/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5931,7 +6059,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5943,7 +6071,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
@@ -5952,7 +6080,7 @@
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5964,7 +6092,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5973,7 +6101,7 @@
"lib/net45/_._": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5995,7 +6123,7 @@
"lib/net45/System.Interactive.Async.dll": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6007,7 +6135,7 @@
"lib/net45/_._": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.IO.Compression"
@@ -6019,7 +6147,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -6031,7 +6159,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -6055,7 +6183,7 @@
"lib/net45/_._": {}
}
},
- "System.Net.Http/4.1.0": {
+ "System.Net.Http/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Net.Http"
@@ -6067,7 +6195,7 @@
"lib/net45/_._": {}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6079,7 +6207,7 @@
"lib/net45/_._": {}
}
},
- "System.Numerics.Vectors/4.1.1": {
+ "System.Numerics.Vectors/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
@@ -6088,7 +6216,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6100,7 +6228,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6109,7 +6237,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6118,10 +6246,10 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Metadata/1.3.0": {
+ "System.Reflection.Metadata/1.4.1": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "1.2.0"
+ "System.Collections.Immutable": "1.3.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
@@ -6130,7 +6258,7 @@
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6139,7 +6267,7 @@
"lib/net45/_._": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6148,7 +6276,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6162,7 +6290,16 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6174,7 +6311,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6187,7 +6324,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
@@ -6206,7 +6343,7 @@
}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Numerics"
@@ -6218,19 +6355,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Runtime.Serialization"
- ],
- "compile": {
- "ref/net45/_._": {}
- },
- "runtime": {
- "lib/net45/_._": {}
- }
- },
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6239,7 +6364,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6248,7 +6373,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -6257,7 +6382,7 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6269,7 +6394,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6282,7 +6407,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -6294,7 +6419,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
@@ -6303,7 +6428,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"compile": {
"ref/net451/_._": {}
@@ -6312,7 +6437,7 @@
"lib/net451/_._": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Xml"
@@ -6324,7 +6449,7 @@
"lib/net45/_._": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Xml.Linq"
@@ -6342,9 +6467,9 @@
"dependencies": {
"ApplicationParts.Models": "1.0.0",
"ApplicationParts.Services": "1.0.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "NETStandard.Library": "1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"net451/ApplicationParts.Controllers.dll": {}
@@ -6357,9 +6482,9 @@
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "NETStandard.Library": "1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"net451/ApplicationParts.Models.dll": {}
@@ -6372,7 +6497,7 @@
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "NETStandard.Library": "1.6.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"net451/ApplicationParts.Services.dll": {}
@@ -6386,22 +6511,22 @@
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
"ApplicationParts.Controllers": "1.0.0",
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Diagnostics": "1.0.0",
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
- "Microsoft.AspNetCore.StaticFiles": "1.0.0",
- "Microsoft.EntityFrameworkCore.SqlServer": "1.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Logging.Console": "1.0.0",
- "Microsoft.Extensions.Logging.Debug": "1.0.0",
- "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0-rc2-final"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
+ "Microsoft.AspNetCore.StaticFiles": "1.1.0",
+ "Microsoft.EntityFrameworkCore.SqlServer": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Logging.Console": "1.1.0",
+ "Microsoft.Extensions.Logging.Debug": "1.1.0",
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.1.0"
},
"compile": {
"net451/ApplicationParts.Web.dll": {}
@@ -6410,15 +6535,15 @@
"net451/ApplicationParts.Web.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Abstractions/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.TestHost": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "MyTested.AspNetCore.Mvc.Configuration": "1.0.0",
- "MyTested.AspNetCore.Mvc.Licensing": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.TestHost": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Configuration": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Licensing": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
@@ -6427,11 +6552,11 @@
"net451/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Configuration/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Configuration/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "1.0.0"
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Configuration.dll": {}
@@ -6440,11 +6565,11 @@
"net451/MyTested.AspNetCore.Mvc.Configuration.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Controllers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Controllers/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Controllers.dll": {}
@@ -6453,12 +6578,12 @@
"net451/MyTested.AspNetCore.Mvc.Controllers.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Http/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Http/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Http.dll": {}
@@ -6467,7 +6592,7 @@
"net451/MyTested.AspNetCore.Mvc.Http.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Licensing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Licensing/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"compile": {
@@ -6477,11 +6602,11 @@
"net451/MyTested.AspNetCore.Mvc.Licensing.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Routing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Routing/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Http": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Http": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Routing.dll": {}
@@ -6490,12 +6615,12 @@
"net451/MyTested.AspNetCore.Mvc.Routing.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewActionResults/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewActionResults/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.ViewActionResults.dll": {}
@@ -6507,24 +6632,24 @@
}
},
"libraries": {
- "dotnet-test-nunit/3.4.0-beta-2": {
- "sha512": "za5Bip/Ollig+8pwQi/Lrvi0oVaoBYf2oMrha8+vjfyBWGAa0kSFMCVgrGTt2JyzrYtk9SKzwG3OLHQKuXcwlg==",
+ "dotnet-test-nunit/3.4.0-beta-3": {
+ "sha512": "TCprFJd60JQrNSygKAinVFBF2zQK3V2BRm1jeBvAGKF/6omeMrjO1tBD3UKlZSGvHFNyiocPn7bgU68cNz94ug==",
"type": "package",
- "path": "dotnet-test-nunit/3.4.0-beta-2",
+ "path": "dotnet-test-nunit/3.4.0-beta-3",
"files": [
- "dotnet-test-nunit.3.4.0-beta-2.nupkg.sha512",
+ "dotnet-test-nunit.3.4.0-beta-3.nupkg.sha512",
"dotnet-test-nunit.nuspec",
"lib/net451/dotnet-test-nunit.exe",
"lib/netcoreapp1.0/dotnet-test-nunit.dll",
"lib/netcoreapp1.0/dotnet-test-nunit.runtimeconfig.json"
]
},
- "Libuv/1.9.0": {
- "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==",
+ "Libuv/1.9.1": {
+ "sha512": "uqX2Frwf9PW8MaY7PRNY6HM5BpW1D8oj1EdqzrmbEFD5nH63Yat3aEjN/tws6Tw6Fk7LwmLBvtUh32tTeTaHiA==",
"type": "package",
- "path": "Libuv/1.9.0",
+ "path": "Libuv/1.9.1",
"files": [
- "Libuv.1.9.0.nupkg.sha512",
+ "Libuv.1.9.1.nupkg.sha512",
"Libuv.nuspec",
"License.txt",
"runtimes/debian-x64/native/libuv.so",
@@ -6537,12 +6662,12 @@
"runtimes/win7-x86/native/libuv.dll"
]
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
- "sha512": "MMevi8HnI5GxtNOS9ZqZLuNafltbngXsOrNqyykFveMWFN5a3AfAB7I0qU77tBS9B/N3boRQuyT9AR0BsCQbaw==",
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
+ "sha512": "6HM8/rsSGAQybSZ9sNP2f0Xqh507OJu3kvqRksXeHUXV72yuwFpnauGkfIMSt+gwPSvyk8qGqZB2m4sKCUomhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Antiforgery/1.0.1",
+ "path": "Microsoft.AspNetCore.Antiforgery/1.1.0",
"files": [
- "Microsoft.AspNetCore.Antiforgery.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Antiforgery.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Antiforgery.nuspec",
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
"lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
@@ -6550,12 +6675,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
]
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
- "sha512": "3af/pZSoaIkZPjGPTlpvIXKDA4NCN6O7++iSO4N2rnKjC5OFHnCX5CLzRxO6721kqovIssRPo84q1HvT4IL6GQ==",
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
+ "sha512": "zapEpMe6NM7S2pNYtR1OMQSHLrDPjRASIt7lktBTt6w6+0ocSxwiIoNyRiBys1VbhGJQnE9jNWjj5VpMJbnB9A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.xml",
@@ -6563,12 +6688,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.xml"
]
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
- "sha512": "zWhEmMwAqLnQIn3eWGlfioBkKngLB/cEqhqw+jAPPrelH8nNNCnHKIoC6ZQf5oSPmpTX9vZU7XEOrpXHFxSQGw==",
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
+ "sha512": "0u+Aj0a8PmqUcU0A3ugWH1lE/8jBiww5zjCHTw5RZCTRc6/0M/AVxENDUXcBJXxsVAIkTUXi6iKY8zhFmvLWcw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.Cookies/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.Cookies/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.Cookies.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.Cookies.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.Cookies.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.xml",
@@ -6576,12 +6701,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.xml"
]
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
- "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==",
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
+ "sha512": "dqveE6pqsnzkab2vw+aFExFYeCikF/T+GKZW9ki8dwJuN7M2+jJcgWtYAv83q7NjBARVh2xH8xf0ahzeuXL/WQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authorization/1.0.0",
+ "path": "Microsoft.AspNetCore.Authorization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authorization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authorization.nuspec",
"lib/net451/Microsoft.AspNetCore.Authorization.dll",
"lib/net451/Microsoft.AspNetCore.Authorization.xml",
@@ -6589,12 +6714,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
]
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
- "sha512": "fC8lWOU3+ltkbgQyD1P7eRQ66fGfZkPNU2UkwOI8tyF5FUsd8nRTfzvsO4mSyQfgmgfk2Hc8TGzx/okevZwXkg==",
+ "Microsoft.AspNetCore.Cors/1.1.0": {
+ "sha512": "GtBPVpgjHIO8R+0xXyh9BHTYq4+XKpwfuy9Uo2Iza4mYzfQI06CsJh5p+qkjIxQzroIXN5XNGNnVS9dURR0zBA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cors/1.0.0",
+ "path": "Microsoft.AspNetCore.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cors.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Cors.xml",
@@ -6602,12 +6727,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
- "sha512": "0btvxwOqYNpKTUQrD7LA3p6Wi0vrhfWGBVqIKPS1KtEdkCv3QoVgFO4eJYuClGDS9NXhqk7TWh46/8x8wtZHaw==",
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
+ "sha512": "Oy0pgxQkusvQwIrwbHvGVZhwk59qRVKxcer6HsWw0jCEq2LoQ7mj7x7DovE5ub8UvffLYWx77NMF5uwPtkl8KA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.Internal/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.Internal.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.Internal.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.Internal.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
@@ -6615,12 +6740,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
- "sha512": "OUBTk5RS7b3+Q9Z7F1jAL9JzdWlkITNpUw8EO5Yu1sP4Rq2jaidXKLiEw7oKFbD1Wmcee2s+U/UyHQfy/og7Sw==",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
+ "sha512": "cVlVvsH4/9G6AjrlXVO6unCzuFHnDCGRhPJNufOCclxpwImZUdhi+EIh09gSaCJ55gme2/Vn0ycig0cF9gKcbg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.KeyDerivation.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.KeyDerivation.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
@@ -6628,12 +6753,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml"
]
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
- "sha512": "gt4URT+8ljPk0ePspLqOGPJBm+s6iMvsZqweplhf7wiZSjFiG1uYBNpQ/0dFY7wSx3NMRjekyXzCjvkGAV570g==",
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
+ "sha512": "wu8pk94CExaLvwwDSnXkTtsdL8mRxbLH8uCKbbPqbtIstSM6bOw/454OvOYKf61BB+It//ItJJYdZTy2j8Kelw==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.xml",
@@ -6641,12 +6766,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
]
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
- "sha512": "h5ycDgkqmRdManmYMQVJgzNI7YtVp2X2/os1cKmdfrpfq+m9L8bMKhbd7PCksoLci+aYTOSn45khPl+hpPb9ug==",
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
+ "sha512": "WW6qKPh9A5lNh/bFlXIMttlbLmm2K0O3kyZuFIlL4ShOMyhrJeCHoWPWQ+S5eUBdcuOnd9sPwhlmI5Nvb3NjMA==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
@@ -6654,12 +6779,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics/1.0.0": {
- "sha512": "nGmsbmax1PsMyOzeE+4UyA7dZZ4SlRa5j4eMbt1HArvUaec3Z7ldb7fASyCrC/tlpfKf9Jeruv1qy+yGyjUeQw==",
+ "Microsoft.AspNetCore.Diagnostics/1.1.0": {
+ "sha512": "7UE18ZDvn41VDLVcArv+Wb2CtwmjnPZZNFLIOBUkdffwoDfVh5llfG7e7auKjLPh6GmwB183kWMENUokxEf1gg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.nuspec",
"lib/net451/Microsoft.AspNetCore.Diagnostics.dll",
"lib/net451/Microsoft.AspNetCore.Diagnostics.xml",
@@ -6667,23 +6792,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
- "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
+ "sha512": "OTLXdoqnhxGzjBewpKiil8C8RzaLMCiWjGDIkr/5kdTNhD0LGT1Dobqprqbg9nKpS99ykJisOguFDTtxpoeSFg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0": {
- "sha512": "2GE71Fc6RtjL3w+sydgaWMiGrZJfwbCcy+OZR2ax8jpzdO9E/BzXCRquMUrwP9VinTUk0NKe8b8r/6dAtg2uBA==",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0": {
+ "sha512": "vpbsk4zX7u0gvmAfdHB1E0oQXLKBouOqRXVllIQbUlo0OIzChXysOJlgvwxkepCRgP5TcF+81D19/6cHnkZ8lQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll",
"lib/net451/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml",
@@ -6691,25 +6816,27 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml"
]
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
- "sha512": "0M7ZRAxTmGHOQV3B5Lm30VBg33uxxkPIKAxMc/C9yFBMPWPfk6V1uvb2ZL5eEPlo9/MZooITyMcGBQUHiakFjg==",
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
+ "sha512": "yNiCwtCi1mYfTjLyHWQt4A3QRd84ok8XxuTP4wSnr6aT3bIzI7upstGe7diaEDirmku10qnISC/8CsMTG4xd4w==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.xml",
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll",
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml"
+ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml",
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll",
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
- "sha512": "8r6qOl1jYyC523ZKM1QNl+6ijIoYWELWm0tpEWqtTIOg9DytHJWshB7usgqiuRmfHXM0EUziR6ouFY7iP7Tuzw==",
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
+ "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
@@ -6717,12 +6844,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
- "sha512": "sHZyhQEoW15T9E36rfdm5Ux6a6RZB0KNM79ccf2IplWASqmlRGhX4ydU3dzQRLhkHpLx16fnWOL0KScsO6BevQ==",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
+ "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
@@ -6730,23 +6857,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
- "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==",
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
+ "sha512": "+zN+RCEAJwzeFfsGIRkNn7NQ0/hrLEKHeKQNegqMRTr42JhuJZfPE+Negz7W/WkgFB3ZQQd9QTth9I3BDlsHzQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Html.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Html.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Html.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http/1.0.0": {
- "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==",
+ "Microsoft.AspNetCore.Http/1.1.0": {
+ "sha512": "N5ejgXmkUH/CQA+lz18HQb9cDZdA365Tm128yYyP34N46uiR9NswEDravug2DXrRiTo+2hOwPT1Tvby3Cdf6lQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http/1.0.0",
+ "path": "Microsoft.AspNetCore.Http/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.dll",
"lib/net451/Microsoft.AspNetCore.Http.xml",
@@ -6754,12 +6881,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
]
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
- "sha512": "OJHlqdJOWKKBfsiVdX4Z4KCNuqvBIu6+1MVKuejRDyHnGyMkNHNoP/dtVzhPqvJXaJg9N4HlD0XNc6GDCFVffg==",
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
+ "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
@@ -6767,12 +6894,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
- "sha512": "GlvCPRpnw2jjHLdbGf/C28NQZLMeX1mugv5BS1a3FCQOJYyuwQZil4JwblR0frLyVrUVoJQ7UXRNZIzEVlO5XA==",
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
+ "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Extensions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Extensions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Extensions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
@@ -6780,12 +6907,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
]
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
- "sha512": "6x7zgfbTo1gL9xMEb7EMO2ES/48bqwnWyfH09z+ubWhnzxdhHls8rtqstPylu5FPD9nid6Vo2pgDm5vufRAy5Q==",
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
+ "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Features/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Features.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Features.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Features.dll",
"lib/net451/Microsoft.AspNetCore.Http.Features.xml",
@@ -6793,12 +6920,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
]
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
- "sha512": "gHpdaaAzhaTWJZuJVo3ler2zzdQWrm8wnsoSjcNtoZZdTOkwImndRwK8o4GYoM18dfmfNheM7i4EENI7XHM/lA==",
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
+ "sha512": "nvNbiYTQZhOWIT9zjhbzIMJTRwcJXGx8DqzMRKcrlGeRNG9ysa3M/hEBrxAp8NKIJeVtnp/n46MhLgmx0CLJWw==",
"type": "package",
- "path": "Microsoft.AspNetCore.HttpOverrides/1.0.0",
+ "path": "Microsoft.AspNetCore.HttpOverrides/1.1.0",
"files": [
- "Microsoft.AspNetCore.HttpOverrides.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.HttpOverrides.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.HttpOverrides.nuspec",
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll",
"lib/net451/Microsoft.AspNetCore.HttpOverrides.xml",
@@ -6806,12 +6933,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.xml"
]
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
- "sha512": "qQXsxDocbx3xMPBVBZ2Es6vw5QalV+z9mGXUPbn/XRbjY1viwQjVToE7BrCanqr7q97ds0ciI2AgQhvny0kkqw==",
+ "Microsoft.AspNetCore.Identity/1.1.0": {
+ "sha512": "M2W5Y0Nd1GLY0M4TYph6zptPp7dhdrMALx1CP4g8iCU5G148j2rRTwMd3o5699+8M8Brtx5cOGiSThadVFKMuQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Identity/1.0.0",
+ "path": "Microsoft.AspNetCore.Identity/1.1.0",
"files": [
- "Microsoft.AspNetCore.Identity.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Identity.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Identity.nuspec",
"lib/net451/Microsoft.AspNetCore.Identity.dll",
"lib/net451/Microsoft.AspNetCore.Identity.xml",
@@ -6819,12 +6946,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.xml"
]
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
- "sha512": "+TX5cTpqRqqjWRHM0BHM02pLv0a5jo+Ai73aLQKKqZOZT/GJgvIyTM1sLeY2ybbfNaEzps8AMFb0r3KzRY11yA==",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
+ "sha512": "ZFZmB6PxNw2dnER96m6iTVLaG5SWH/95reGVgGzwwATxRMzIEMmFdRWNCgSpKUdHsPEyDg9Xd9FLRHFiQsG9jw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0",
+ "path": "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
@@ -6832,23 +6959,25 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml"
]
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
- "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==",
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
+ "sha512": "/mADp5Q1I3oeptoCF8mmAFDMGvlDCLSBatsKCXxk5vQYZUyzOLxoiHgW5QowgIdwnd3AHPmFDib5vm8U2B6q7g==",
"type": "package",
- "path": "Microsoft.AspNetCore.JsonPatch/1.0.0",
+ "path": "Microsoft.AspNetCore.JsonPatch/1.1.0",
"files": [
- "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.JsonPatch.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.JsonPatch.nuspec",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml"
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.xml"
]
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
- "sha512": "DF/maMd9f6ZPoTlU8n6/AGm3fpZNPiiip34bPrBQuloX2a5O0KwyV72qKhJhJNqmVVnDnTu8XYT16ysoFXRxQA==",
+ "Microsoft.AspNetCore.Localization/1.1.0": {
+ "sha512": "Px52xLst9/G4dyGt3fSTIZU3aZoz0IOVoInW/M1WRCOM5DzCkLzPYXOHMpQkc8ZVx7YZmHnB8p9IrvNNyjPO6A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Localization/1.0.0",
+ "path": "Microsoft.AspNetCore.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Localization.xml",
@@ -6856,12 +6985,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
- "sha512": "Perrv2s4hzMbYR/kanzUqcfzxXLo6CThoilhMg7UQXeXEvOtpbDKx0HGimN/pt6Dy2wt3WOQAjAiM1Z8KoRgaA==",
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
+ "sha512": "TDcIjBQRfYAkbcvlU+lMHC0RpuTTSzULEdA0+HvoGgHz6y0Q4wo8CEAWpaRjvt3y3mneuq56d6CReMleFDDd5Q==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.xml",
@@ -6869,12 +6998,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
- "sha512": "Xa9XOA/NEIGSUSyAtc0rQrTRJKcxN8rzvBy0QJn2tRAXVeXc0Lbx4/1ia9kxyn3ygbjhF6bO90ZnC3Z3a2cq5g==",
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
+ "sha512": "r0OA3N1Onua8AcTtFYpK03K3WdwJBL3iFW4XzfMA49ZmAKGf1ARAlrt6Q8WCdBI7nFDJCc1/bdMJ0ozWaq9rhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Abstractions.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
@@ -6882,12 +7011,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
- "sha512": "ntjDDV+g6eveL67fsvGIY7BqZmaR2XYlZpsrXxzjSWKSYBzDfWaUJna5dsPty0hOwz7DCMNbWYrpD+XEr+H0jA==",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
+ "sha512": "cS2ZVqnh9Db3JU5zgw0SRKSYJ/0aYfLDeYRpgJGwjwMsMNa9pw4JK1H3NLkhs7zRAtoet6asXMEZwqFtO/STbw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ApiExplorer.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ApiExplorer.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
@@ -6895,12 +7024,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
- "sha512": "TfUFH0HYbL3DCGkWE24gUDnHoa3pCr4b6xbUiQTnqIbIXdL79qW8mTtfD+RHmAN5bsf1J1fndJJ84/jKri+kiw==",
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
+ "sha512": "6Gxoe6MJPbc9yVx7IEkDlzfNRzQ+JSvlVmFvugoNbpWAefU2F8d76aj7oiGewucXVI8c7oZ1Q0+rx7059j7/fA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Core/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Core/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Core.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Core.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Core.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
@@ -6908,12 +7037,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
- "sha512": "s3Pabc4x5K1xtCpNv/oVAuFyj2Lq+z+qYkmrRqbnqVt+8V39FoW3znPjbVCNu5CjrYSQL2fm3irJ3pM7WLsI/g==",
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
+ "sha512": "0E+RHtEsYwzkbXvLVC81Vu8Mtp24BC9RMuN8RGjeWzwRHDeZaY9erGtoei/2GiFj+3DpqvCzFsRhKp/yVCzrOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Cors/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Cors.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.xml",
@@ -6921,12 +7050,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.xml"
]
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
- "sha512": "y3QkHvOI+vopfhncU9NpUH2MvtZ2Z0EfnApb92jqbmfWL1wd5Np3SHrFSXgI4zVLlM38dMa/QU2SYM3e4T7fFQ==",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
+ "sha512": "kV7IfXeoehKpX0zPrjZ/B1RKnHSKQfmOnXKxupGXuNY64Ly2JgJh+XAxPLQtYy2jUIwRG3PWNhVkWZIazq82wg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
@@ -6934,12 +7063,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
- "sha512": "wM12hSUlF0Eqed44psOYT4fY/RRjMx049A4bBUfqiGr1UFU54zTR8djRLW0dIp1w7Xv5WQ/bgG9jyqiaRbv6jg==",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
+ "sha512": "NHPfvDnqA21/2pa5Uxe7vfO2sZ1sTafSR/L1pGhQxjTUnVQ2k0X3M3wFKPpM9UH9co9Bx3KjV0AcurbfEaCQvA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
@@ -6947,12 +7076,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
- "sha512": "s6Q7l9UtJ/sYxvsbjXuA+5RdKQ70OSLQSLs+UAWrwMtHm9XKTr51gmcG1t1gkWN5f39WSkzJs2brB9fJkFcgvw==",
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
+ "sha512": "XDLAPLW5hdkO8h6Ki4Du/Dw5NUfIsiDDoyaHkzDL5gX5TxOot0bdw/QClIQ65SJqpjuvIZxZXrJV/MFDKwjZ2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Localization/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Localization.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.xml",
@@ -6960,12 +7089,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
- "sha512": "Rc1dkP5LZcuxicrmUTFMfrRF8+id9iVSOA3/DjhO036b7g7BBvknLHKtbbsQ59COB9D8fr9MwKF2Eb99TSCJvg==",
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
+ "sha512": "GKfZhs4I14auXrlOcUHyHVx1zOLt3MeVw2KcABFD8Y8jyVOELj/mnIucREBG73Us4HcT127qenBFkdkz6F/SOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.xml",
@@ -6973,12 +7102,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
- "sha512": "7A9D7ufew8iYmhK/3w05ZdTGGOi9oNzAqy0BJNNF2rm2n9uImquzPmmoCWXFnar7QawVzhXE+ZMSXRUH9n6Glg==",
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
+ "sha512": "9Qi+KEVkmGfXXjfsciKRVJU/EOVm2AYMZuaDiFCJslEll/OTzXnTlKerj4jFbxB3PB1VRqwPL/HIawRGUouruA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.Host.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.Host.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.Host.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.xml",
@@ -6986,12 +7115,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.xml"
]
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
- "sha512": "QadZAsqoIc2D5zceTdLtNnyJALkdhoTIiqvlDlO0SgyPBisyUe4gDEiygwSnLzm8NZ+kKSFhNuX+t+b1O2uIVw==",
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
+ "sha512": "qQz5KEv097INfR7T9Q9kiEi2MY3jdGthU9XW5N6UFrHgFGjMZwra/oCyu/9DsTueW+4zk0cCo5SCneXwHR9uRA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.TagHelpers.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.TagHelpers.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.TagHelpers.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
@@ -6999,12 +7128,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
- "sha512": "1zGeF76JEqvocxdM+H5n/vJunUUVNzKK4LmgnaFdrrCDTrI6MVdok+8TBBUbeI+uNk3ssrLnP3EcHIdvxl66gw==",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
+ "sha512": "Odd9+gRi4DCH3RalGZEdS0xLRcUh8LV9UTCnOVjGwotI1i6Fk2VSxtkAxrVRMd44BL0WfRqJFiTkCixxA2zFig==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
@@ -7012,12 +7141,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
]
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
- "sha512": "+vhlFn8n45hj1M91HYVm2ryLMZ+ZYR/OUdBVE8aUzkvkTVF+3UnNxSY3hAEugcgcbf9/XQTE+DDxEgN4LdYEjg==",
+ "Microsoft.AspNetCore.Razor/1.1.0": {
+ "sha512": "hChh+W6UG0C8aink3KWuX7flFuAiTPrCBfh68fbRJ1sLPk0ELmj6c3zm+VgNXaHEh2OpT/O0eN5XpS1rQ/FcbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Razor.xml",
@@ -7025,12 +7154,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.xml"
]
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
- "sha512": "hsq6xJeqDDb78akZuy79QE3kaCxcigD3vccbIaNrrz7JSXOzayfteF06ToK+J1SXSDRtrBj3XZZfrjiqIY/vCw==",
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
+ "sha512": "hQW8+DRFHCHmTzviW54umnBfX1vc9bv/390r62k85LQsUd5Lo59QQ+IyD5fe6o9g/h946IF8Yl25wd6dEk7YqA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor.Runtime/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor.Runtime/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.Runtime.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.Runtime.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.Runtime.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.xml",
@@ -7038,12 +7167,25 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.xml"
]
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
- "sha512": "NvFvRtYHXWjBbXz5/7F7JDNcdhrE+tG1/Q9R6LmMxFgu8tkl1bqtFZQbMy17FYFkmm8Fn/T81blRGE2nxCbDRA==",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "sha512": "Mdj0FP6fP44sYaSRmhUBEpOXnN3kykpd0/8e48iEoSybId5x5XreIeDEEhTYF+r/QA7H8Y33fjVR1cP996OgDA==",
+ "type": "package",
+ "path": "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0",
+ "files": [
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.1.1.0.nupkg.sha512",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.nuspec",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml"
+ ]
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "sha512": "wrD6DOWc4/euIujz7trLrF3zGVMxOGKRPzYl4e2NFOE/uXz95EnNBHkNuN0Xcgx3xVcb08TMxkoFNT3A+WC0XA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing/1.0.0",
+ "path": "Microsoft.AspNetCore.Routing/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.dll",
"lib/net451/Microsoft.AspNetCore.Routing.xml",
@@ -7051,12 +7193,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
]
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
- "sha512": "Ne5CFiD1xCGSHrGICw7PsVnj7gijfkMfsw52AO6ingcUhE01dc87cJPpfGLnY22MIvqn11ECLbNZYmzFp/Rs+A==",
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
+ "sha512": "/kaFZW4AjHPOIMnqXHGl/KdHxUGOVm9z/U0t3JtKmK5OFnsfuLsUIH2QN2PtXNeOm1eh5Ux2XEyg6YRBgXfPgA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Routing.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
@@ -7064,12 +7206,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
- "sha512": "xmn6EivvL4Ymo7LP+Jc49WLcIiYsUiujZo0loEbAg473nY2dIHxcxncpFAKzPf/MzqN0qBtaXEP0igYJ813H3Q==",
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
+ "sha512": "Z/K/RsUUh6Cfc8W+uP0IeXu8NJP/7li+E3ep+u4t9McrDUdJMrfgfBSPC5SrrUkTZjrt9udQS6JLrB6v3b8pag==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.IISIntegration/1.0.0",
+ "path": "Microsoft.AspNetCore.Server.IISIntegration/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.IISIntegration.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.IISIntegration.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.IISIntegration.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll",
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.xml",
@@ -7077,12 +7219,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.xml"
]
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
- "sha512": "GrTVDsRR6j2WrrTuNsZkG1R8aV1UbsA8TKUD+MKVSpXIoEpQNryCT181Zu94CARowQwFQdW4Q1DwfO4FdAhXiQ==",
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
+ "sha512": "PbVYQUVxOwtrl9YCnw8ykXSufELVeEuASYahVh1F7B4LYVtcqwyV5+FhXlJkboGM4ozKMrdhB5w/tlLLcmHxNA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.Kestrel/1.0.1",
+ "path": "Microsoft.AspNetCore.Server.Kestrel/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.Kestrel.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.Kestrel.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.Kestrel.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll",
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.xml",
@@ -7090,12 +7232,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.xml"
]
},
- "Microsoft.AspNetCore.StaticFiles/1.0.0": {
- "sha512": "pXiUBJtpO0fIlGEg/ESykhbIZ2+I+9Y+3qXzN19zZDDF+tD88eATg3A5MHMXu/VmqaROLfvpGJmJ6uOLUGsBVQ==",
+ "Microsoft.AspNetCore.StaticFiles/1.1.0": {
+ "sha512": "6LQh5KChqjtPbHeDy91fvwoupL+dW9PYAOaj6ohULmEnR2c2y+IpsIxHADSDJ42hlJ5oFLG+t/xsdbdwQvEsgQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.StaticFiles/1.0.0",
+ "path": "Microsoft.AspNetCore.StaticFiles/1.1.0",
"files": [
- "Microsoft.AspNetCore.StaticFiles.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.StaticFiles.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.StaticFiles.nuspec",
"lib/net451/Microsoft.AspNetCore.StaticFiles.dll",
"lib/net451/Microsoft.AspNetCore.StaticFiles.xml",
@@ -7103,12 +7245,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.xml"
]
},
- "Microsoft.AspNetCore.TestHost/1.0.0": {
- "sha512": "z2rOPiCMzRgFO318xDg2iyXeY/3hRHwL0Es/o6/qzLvrW/psLV+Qlh/50mWBZX8clVcRM8r5nTSE+m3lkYOddw==",
+ "Microsoft.AspNetCore.TestHost/1.1.0": {
+ "sha512": "0q+jjIMwgs3hcZWI95Y3YUfL4P/MZYltC59vGQbO78ozwthNvanDBBCvaM/awJ8PVL4CWiSmo8BOgL0HskE57A==",
"type": "package",
- "path": "Microsoft.AspNetCore.TestHost/1.0.0",
+ "path": "Microsoft.AspNetCore.TestHost/1.1.0",
"files": [
- "Microsoft.AspNetCore.TestHost.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.TestHost.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.TestHost.nuspec",
"lib/net451/Microsoft.AspNetCore.TestHost.dll",
"lib/net451/Microsoft.AspNetCore.TestHost.xml",
@@ -7116,12 +7258,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.TestHost.xml"
]
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
- "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==",
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
+ "sha512": "9w3aHPRUAx+1xOTcsZF6AJCS42viNqWeTcgIE1dmlK/G3NCFkes+MVxwvKt9U9pFIomxqRnD+MGRoBeruEKPbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.WebUtilities/1.0.0",
+ "path": "Microsoft.AspNetCore.WebUtilities/1.1.0",
"files": [
- "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.WebUtilities.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.WebUtilities.nuspec",
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
"lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
@@ -7130,7 +7272,7 @@
]
},
"Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
+ "sha512": "jICz4qN7C8Hq8d5UF0LzqeOTqJMuy21cRDCW8N8K3yiojIhQQ+hAwlcUp7yh4gJOcqh7iEWg/5jlZmXbefO00Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
"files": [
@@ -7146,7 +7288,7 @@
]
},
"Microsoft.CodeAnalysis.Common/1.3.0": {
- "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==",
+ "sha512": "hVgAQZDvOO8LpuhAO557wlqwivTSTstAIIknHTK8y62utH9PgdwEey0TDzJRanReEMTFR3bzdvoFXOe2/X6BGw==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Common/1.3.0",
"files": [
@@ -7162,7 +7304,7 @@
]
},
"Microsoft.CodeAnalysis.CSharp/1.3.0": {
- "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==",
+ "sha512": "8fqBJ4I+IH71mTs+F2w9U/UpJz2pbuO+9XicOxN1pUWU6UZlPgRMwS8e+rcnJp5sgz7tXrB2JoCoP3JuKTHBvg==",
"type": "package",
"path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
"files": [
@@ -7178,7 +7320,7 @@
]
},
"Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
- "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==",
+ "sha512": "yfjw7wLtMSV6HjE2/j3vQp+ZtEbR4cMof7cbcWXPah/8XbMVueIS9GOp9HjxWOLTTQWz6uHxeetk36JCeKOR/Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0",
"files": [
@@ -7193,12 +7335,12 @@
"lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml"
]
},
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "Microsoft.CSharp/4.3.0": {
+ "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"type": "package",
- "path": "Microsoft.CSharp/4.0.1",
+ "path": "Microsoft.CSharp/4.3.0",
"files": [
- "Microsoft.CSharp.4.0.1.nupkg.sha512",
+ "Microsoft.CSharp.4.3.0.nupkg.sha512",
"Microsoft.CSharp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7281,6 +7423,22 @@
"runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
]
},
+ "Microsoft.DiaSymReader.Native/1.4.0": {
+ "sha512": "6HpEBMxIi9KJHKnF2ISRy3HsxhRYL1/CdnXGBqSWOUE8uaY5gthzStdQdbPVFxsKCNwsYcfRc11RXjLVvGF5bQ==",
+ "type": "package",
+ "path": "Microsoft.DiaSymReader.Native/1.4.0",
+ "files": [
+ "Microsoft.DiaSymReader.Native.1.4.0.nupkg.sha512",
+ "Microsoft.DiaSymReader.Native.nuspec",
+ "build/Microsoft.DiaSymReader.Native.props",
+ "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll",
+ "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll",
+ "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
+ ]
+ },
"Microsoft.DotNet.InternalAbstractions/1.0.0": {
"sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==",
"type": "package",
@@ -7292,6 +7450,17 @@
"lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
]
},
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "sha512": "Bl6KYfbFSIW3QIRHAp931iR5h01qHjKghdpAtncwbzNUs0+IUZ+XfwkIU0sQsR33ufGvi3u4dZMIYYFysjpHAA==",
+ "type": "package",
+ "path": "Microsoft.DotNet.PlatformAbstractions/1.1.0",
+ "files": [
+ "Microsoft.DotNet.PlatformAbstractions.1.1.0.nupkg.sha512",
+ "Microsoft.DotNet.PlatformAbstractions.nuspec",
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll",
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll"
+ ]
+ },
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
"sha512": "wnWw5KsKinG2wWxdoQIJXZlMFvPNhL7WmIyW9q6xrZFUi/uld5PC3ksq2QDZepF148FUjCIyTP+TnRwU3RJqUg==",
"type": "package",
@@ -7303,12 +7472,12 @@
"lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll"
]
},
- "Microsoft.EntityFrameworkCore/1.0.1": {
- "sha512": "bprn1t+6muzkNzh64Art4w20L1FKDFac/Tx4h+4d7Sd9ivRqAaec6MqU700CFo6h6CHjAjWeqzYjQFroCouECQ==",
+ "Microsoft.EntityFrameworkCore/1.1.0": {
+ "sha512": "S00vr6pLeoCMbm1PsXNZIceCAA/TUX83W3f2PcLFLGrx2QnGo5aqhtYjHvBhOVKJXZmt52EKEdORoTZVZ/swww==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.dll",
"lib/net451/Microsoft.EntityFrameworkCore.xml",
@@ -7316,12 +7485,12 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml"
]
},
- "Microsoft.EntityFrameworkCore.InMemory/1.0.1": {
- "sha512": "vzlJO6R49b2pat3bkt6+9kGIYGvu48U3gOMIgcdAHbGUbBi0RNOG3XH06pVNfdPF1QVZJdB/VuiwJIY4a3GUqg==",
+ "Microsoft.EntityFrameworkCore.InMemory/1.1.0": {
+ "sha512": "b7rNBaQ2DhJkcElVxC1bwQNO21zD9K16YaNOjdH+TBWf7xkN8TPYbCPU1hL3IlnrBz3p5XKZSoDs9W1T64oALQ==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.InMemory/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore.InMemory/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.InMemory.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.InMemory.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.InMemory.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.InMemory.dll",
"lib/net451/Microsoft.EntityFrameworkCore.InMemory.xml",
@@ -7329,12 +7498,12 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.InMemory.xml"
]
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.1": {
- "sha512": "2LZ746BTMSoAHsqsxFAVYVzo/ziS682z2evAxDnwwg1Fw27MuxqEjl38YWz5OE1TchmtEPxWWVcup+sL6rjPXg==",
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
+ "sha512": "5LkSh1GHK/ZbI/2N6YxyofFKaAVe5/RBN38G6UQzOQVgfJxzucpJVyZt1mGHBkJ4yTlr4WQS9Wr3Ppa5X0opbw==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.Relational/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore.Relational/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.Relational.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.Relational.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.Relational.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.dll",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.xml",
@@ -7342,12 +7511,12 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml"
]
},
- "Microsoft.EntityFrameworkCore.SqlServer/1.0.1": {
- "sha512": "L2G/T2mRUzHN9IrUBh6uz5s0oISR3qmMajAqi+poG1O3swxfxWsvo+dzGcbhyieJN4tT756mw1hzXzfJ8vDx0w==",
+ "Microsoft.EntityFrameworkCore.SqlServer/1.1.0": {
+ "sha512": "3Cg6izj0vvFBG4qenxeUMmFvhdW6bUBH9OqqK1s+f7IvEpgRuxz5vb1e5H15PodzxUziXOLG6je69JMC0Axuig==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.SqlServer/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore.SqlServer/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.SqlServer.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.SqlServer.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.SqlServer.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll",
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.xml",
@@ -7355,23 +7524,23 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.xml"
]
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
- "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==",
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
+ "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
]
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
- "sha512": "6+7zTufCnZ+tfrUo7RbIRR3LB0BxwOwxfXuo0IbLyIvgoToGpWuz5wYEDfCYNOvpig9tY8FA0I1uRHYmITMXMQ==",
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
+ "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Memory/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Memory.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Memory.nuspec",
"lib/net451/Microsoft.Extensions.Caching.Memory.dll",
"lib/net451/Microsoft.Extensions.Caching.Memory.xml",
@@ -7379,45 +7548,45 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml"
]
},
- "Microsoft.Extensions.Configuration/1.0.0": {
- "sha512": "hR4yYebruRp6qyFnV3RW4qrnEb0J1LnMmQbj50AUA423V8dMs4E3YAohsyRyGBFnpbJ+KKzieSG/n2A6T0klZQ==",
+ "Microsoft.Extensions.Configuration/1.1.0": {
+ "sha512": "iqp8UepCsS902j0kPO/d7hrd9PSyK7l84UFlpqdV8QY+/pMUY5k8wlAIuN6mWdW97HI8a8BJyvjhJbJps2GwZw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration/1.0.0",
+ "path": "Microsoft.Extensions.Configuration/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.xml"
]
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
- "sha512": "nJ+Et/rnDMDmGhxvFAKdN3va7y+YDPICv1nUEP8I4IKgOkWwr/dCZHMqxVhJFrkbW9ux8Kd7erC4mvxfZh0WnA==",
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
+ "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
]
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
- "sha512": "kK8QuBcPQtmKJCkC9enc1uMRFa++mPTuVNm2K5jDVXcAYKRBcFSbdEBvIe1JIgA6dEsAQeqjfHfKSaUJ8f5NFQ==",
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
+ "sha512": "1dTFEL493MfC5O7MNaElQBhX4txb9ivSmTMwB3qDqEJHXnnUdgThTChn32FjhLIA6Fn7YXjqkZzAB/LdZEKupw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Binder/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Binder/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Binder.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Binder.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Binder.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.xml"
]
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
- "sha512": "A0yqS98VtPNlFkFI7YBlwkAekUHE/9mMeNc+K4RmgTjCrskuk6pX3LGhDU7aD5CPYc9Px7M2To/2u4xDSnRikg==",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
+ "sha512": "7AWmPQoX4Kx0Kf4VAig5yKbCziHjO6F2povXeToOaWuZnKahi5qXCG7wrWtATFrheOQLfkrqxxLyarTP3J1mnA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
@@ -7425,12 +7594,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.xml"
]
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
- "sha512": "MO7XtmLiqnpgVTX34uzFPvIS7jPmBUGLN0MP5MsYu6CqYTIs90ULjtrV5TegH5mTqKTXWjZRGXL26R6apTyc4w==",
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
+ "sha512": "jZRdMHops4npC8qKFEmqw6QODfA5h50sUYBIyB31DICzYSp+IQyvf5yb1zwW2x1EFuUEMv+aWZi1WDDc7JPdqA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.FileExtensions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.FileExtensions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.FileExtensions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.FileExtensions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.FileExtensions.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll",
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml",
@@ -7438,12 +7607,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.xml"
]
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
- "sha512": "KRyEOe5/Xi3qyDMdEVh++e2pQRsI6C3wzINVExOcu9lOsFmXK/k4qOf244fyo59rnn6s5xKnIW3WbhxWS1hu2w==",
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
+ "sha512": "QmHQbrOoVxXblM2x9NzGPbX3XpQGTCXiO6jZghx4KqUxPfJMS0VgBlgOUnLAz7sJyx3GvhUG6SEX6Xz70dpwDw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Json/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Json/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Json.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Json.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Json.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.Json.dll",
"lib/net451/Microsoft.Extensions.Configuration.Json.xml",
@@ -7451,80 +7620,82 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.xml"
]
},
- "Microsoft.Extensions.Configuration.UserSecrets/1.0.0": {
- "sha512": "2d4ycB89yzoDR40kfoK7iSCrW67mExz4RLm84JFDcgOoMYr1K4vgWjfL2YUjXqjKVNBi6USwhIDkCKXRYWLQ2Q==",
+ "Microsoft.Extensions.Configuration.UserSecrets/1.1.0": {
+ "sha512": "dwnc4zAXjdh+j/T08UXwhfobzQms3Ta0j3mCGOavRsbO5f2PA929kfQTjaMxPDdFZ6MFP0eeEjgPorf3tpTqVw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.UserSecrets/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.UserSecrets/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.UserSecrets.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.UserSecrets.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.UserSecrets.nuspec",
+ "build/netstandard1.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
"lib/net451/Microsoft.Extensions.Configuration.UserSecrets.dll",
"lib/net451/Microsoft.Extensions.Configuration.UserSecrets.xml",
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.UserSecrets.dll",
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.UserSecrets.xml"
+ "lib/netstandard1.5/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netstandard1.5/Microsoft.Extensions.Configuration.UserSecrets.xml"
]
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
- "sha512": "zdtkiZNV6LB8xtpmfyUjP/9N9ZCL/ydQ+0bfjun38fbrk+MDEm9M2yeLzRdq+OIt5xExw/KU04wFaVwJ1bhQPg==",
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
+ "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
]
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
- "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==",
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
+ "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
]
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==",
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
+ "sha512": "TG7dJ8GY1Myz9lZ8DJL4i6D05ncJQBi5CjBMXMdJ4edKxaW+vP2DndDd1jJabdMdmVRdGrvybzqkB+A6Df7eDw==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyModel/1.0.0",
+ "path": "Microsoft.Extensions.DependencyModel/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyModel.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyModel.nuspec",
"lib/net451/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
]
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
- "sha512": "4jsqTxG3py/hYSsOtZMkNJ2/CQqPdpwyK7bDUkrwHgqowCFSmx/C+R4IzQ+2AK2Up1fVcu+ldC0gktwidL828A==",
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
+ "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
]
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
- "sha512": "4nbDQfagNr1eILXSFZbTNuAKuZ6SsOyK6ySTMryo67ECi8+EcZBQ12E0aXcxX/aT3v+3pbWSt71NXlEm8tKIxw==",
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
+ "sha512": "S6vQ4HcjYKAmPqyuGNDQ1ILBaTx7SnDvfg/Dby+s55dXNI2WA/blkeIufbDm0MukALsukWya9mdbe7upWj8U5g==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Composite/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Composite/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Composite.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Composite.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Composite.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.xml"
]
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
- "sha512": "Ej5hGWtK3xM9YU+B2O8EdlMcJf5utbDQs9ecnfvwhENQeeNU7iI2jjnRB2d7V6o9SQZmNHPzdPvaNb3PlSMz+Q==",
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
+ "sha512": "ckyGwMGd4v1nE70wZ7ytax+Ef9WHQ6IcE4apLYG4um6Dfcw/Y6QJY0Fcv3Ck9WK/Uj0YMxHnNCZH6MBp6boeEw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Physical/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Physical/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Physical.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Physical.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Physical.nuspec",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.xml",
@@ -7532,36 +7703,36 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml"
]
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
- "sha512": "scXp1Y+hmhQKLe57Z7cSjsAEFtE4zSHHydkg1SpvG56nWwWQVpVcRAbRZsv1qIBR5/vNB4LA9xiOKnvKO/Halg==",
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
+ "sha512": "/NKs5LrUCUARfFbGik/ML5L2YnN33XTf+TUyghjhCzl9HlvLA4l6s3bW+xsbCU0GEmI/MottEEhiDa1dLJJh4A==",
"type": "package",
- "path": "Microsoft.Extensions.FileSystemGlobbing/1.0.0",
+ "path": "Microsoft.Extensions.FileSystemGlobbing/1.1.0",
"files": [
- "Microsoft.Extensions.FileSystemGlobbing.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileSystemGlobbing.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileSystemGlobbing.nuspec",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.xml",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml"
]
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
- "sha512": "nxGoN8o+4clQk103krYRqS5FVVCZc3Tlc09AYj4W8gZ9Q5Jxa2BLW7ss+ogKU/hvNSg2NkJyQTfi9SegGU6ssQ==",
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
+ "sha512": "KAuadrKH0hLZGXfLO/+L6bv4vIeOYpQTjglR5Tu4hm9TJ8sVcPf11qIoU+BXSwalXiaJuazSI9fxbyoIVBsX4A==",
"type": "package",
- "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0",
+ "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0",
"files": [
- "Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Globalization.CultureInfoCache.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Globalization.CultureInfoCache.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml"
]
},
- "Microsoft.Extensions.Localization/1.0.0": {
- "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==",
+ "Microsoft.Extensions.Localization/1.1.0": {
+ "sha512": "1DWqIC1k383XaQ3h+WxyKYmerLHDYH7TY7mDcglylG3Wq+zlX3/UUhUEKO0Ft8RKCLxLh/LhIa9NBvM3cYzLIg==",
"type": "package",
- "path": "Microsoft.Extensions.Localization/1.0.0",
+ "path": "Microsoft.Extensions.Localization/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.nuspec",
"lib/net451/Microsoft.Extensions.Localization.dll",
"lib/net451/Microsoft.Extensions.Localization.xml",
@@ -7569,45 +7740,45 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
]
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
- "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==",
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
+ "sha512": "8KkP9veQupIfAEQFLLQFTo75s2fVKOM9SWeHhdSSUD35uD8DX1zOXAUsuaXwQY8cyt6mSUR5zuUEkgbZXnUKCA==",
"type": "package",
- "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Localization.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging/1.0.0": {
- "sha512": "0mDuASVrd/nMeBYIJSK+9lT3TSmWxUXP/ipVB1pF1ApMN5fqGCckPTNwmOfT4Z9wPkXGnhbwFTGrxZvbzTWxOg==",
+ "Microsoft.Extensions.Logging/1.1.0": {
+ "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
"type": "package",
- "path": "Microsoft.Extensions.Logging/1.0.0",
+ "path": "Microsoft.Extensions.Logging/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
]
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
- "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==",
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
+ "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Abstractions.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
- "sha512": "GN4gFFONP12KbFEG9rNFpXuz6D2Tybcm8+c1wilaQ1eSl9zVX0gVRrKw/YRwxdwbM3eK7nWfRRqJaQPzOjtLnA==",
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
+ "sha512": "MkFjLvtMdYN1g3NesmkeuQ56f/LuQS46PvjhbF1rUoH9L1ZM3/uteuTknVDUryeWlh18oh6ew7Xo9H50KWPAog==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Console/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Console/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Console.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Console.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Console.nuspec",
"lib/net451/Microsoft.Extensions.Logging.Console.dll",
"lib/net451/Microsoft.Extensions.Logging.Console.xml",
@@ -7615,12 +7786,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.xml"
]
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
- "sha512": "V8fP8pGJxieGa1DAYOF1RX+cCGGqdOGNoAQUzxmy27+qNzbHB/cUXc7mCZT72jPZMB4U12zSVWlIt26GMsUIOg==",
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
+ "sha512": "6Kg1PyEbQjd37ZeWkrseJNvb99iUCdXRAjUqFd2zxW9ZCwjn9h+aSC2bMbyERvC+n6lImp053jqRBsotIrMiXw==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Debug/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Debug/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Debug.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Debug.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Debug.nuspec",
"lib/net451/Microsoft.Extensions.Logging.Debug.dll",
"lib/net451/Microsoft.Extensions.Logging.Debug.xml",
@@ -7628,12 +7799,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.xml"
]
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
- "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==",
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
+ "sha512": "8tg7DpFubtj98Lf+N+zpu5VXe9EHCPrqcukpsjC9BSfcnC0Oq8CUZKYUsLScS2pnqEkSNHwuHoWRtJ6xhMO/xg==",
"type": "package",
- "path": "Microsoft.Extensions.ObjectPool/1.0.0",
+ "path": "Microsoft.Extensions.ObjectPool/1.1.0",
"files": [
- "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.ObjectPool.1.1.0.nupkg.sha512",
"Microsoft.Extensions.ObjectPool.nuspec",
"lib/net451/Microsoft.Extensions.ObjectPool.dll",
"lib/net451/Microsoft.Extensions.ObjectPool.xml",
@@ -7641,23 +7812,23 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
]
},
- "Microsoft.Extensions.Options/1.0.0": {
- "sha512": "SdP3yPKF++JTkoa91pBDiE70uQkR/gdXWzOnMPbSj+eOqY1vgY+b8RVl+gh7TrJ2wlCK2QqnQtvCQlPPZRK36w==",
+ "Microsoft.Extensions.Options/1.1.0": {
+ "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
"type": "package",
- "path": "Microsoft.Extensions.Options/1.0.0",
+ "path": "Microsoft.Extensions.Options/1.1.0",
"files": [
- "Microsoft.Extensions.Options.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Options.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Options.dll",
"lib/netstandard1.0/Microsoft.Extensions.Options.xml"
]
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
- "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==",
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
+ "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
"type": "package",
- "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0",
+ "path": "Microsoft.Extensions.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.PlatformAbstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.PlatformAbstractions.nuspec",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
@@ -7665,12 +7836,12 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
]
},
- "Microsoft.Extensions.Primitives/1.0.0": {
- "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==",
+ "Microsoft.Extensions.Primitives/1.1.0": {
+ "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
"type": "package",
- "path": "Microsoft.Extensions.Primitives/1.0.0",
+ "path": "Microsoft.Extensions.Primitives/1.1.0",
"files": [
- "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Primitives.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
@@ -7687,94 +7858,94 @@
"lib/netstandard1.6/Microsoft.Extensions.Testing.Abstractions.dll"
]
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
- "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==",
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
+ "sha512": "YnUfcLe/FYL3Mft5HPv7dSSKfZZCZwLG2GQfv3vuxdY4AbWOYLqq/3wIPCNIrgMXvzralWdkESNsb9iw5gKdpg==",
"type": "package",
- "path": "Microsoft.Extensions.WebEncoders/1.0.0",
+ "path": "Microsoft.Extensions.WebEncoders/1.1.0",
"files": [
- "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.WebEncoders.1.1.0.nupkg.sha512",
"Microsoft.Extensions.WebEncoders.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
]
},
- "Microsoft.Net.Http.Headers/1.0.0": {
- "sha512": "1lr92itF1fKR2oEQ6gk1IUsuCgp7UMlf/b1sjlAyuDeUnttj39ra59GQHYpomglJX1UVNpi1/cSBbEsXoNeIhw==",
+ "Microsoft.Net.Http.Headers/1.1.0": {
+ "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
"type": "package",
- "path": "Microsoft.Net.Http.Headers/1.0.0",
+ "path": "Microsoft.Net.Http.Headers/1.1.0",
"files": [
- "Microsoft.Net.Http.Headers.1.0.0.nupkg.sha512",
+ "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
"Microsoft.Net.Http.Headers.nuspec",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
]
},
- "Microsoft.NETCore.App/1.0.1": {
- "sha512": "M3iH7u95LntTkJtI/DqN/96MRlb8Wa0SjnXldxHA4FjlvEqghOhwK087bDZAZaTN9C4YHckvaYH3ka9eYWZZZw==",
+ "Microsoft.NETCore.App/1.1.0": {
+ "sha512": "DFec+OUojDVocn1GxAL9uJg4qwsgkvKiQpv6BKd9ljGezvc9p6GpFv51IIakiujkVW/wBtQ0xlfjVSgS1UG/uw==",
"type": "package",
- "path": "Microsoft.NETCore.App/1.0.1",
+ "path": "Microsoft.NETCore.App/1.1.0",
"files": [
- "Microsoft.NETCore.App.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.App.1.1.0.nupkg.sha512",
"Microsoft.NETCore.App.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netcoreapp1.0/_._"
]
},
- "Microsoft.NETCore.DotNetHost/1.0.1": {
- "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==",
+ "Microsoft.NETCore.DotNetHost/1.1.0": {
+ "sha512": "1xk/a9uXjJWDQqXw8l4067aoNwUfugq4UVQQinlIM2W4posm0+wcW+bi3uKuyufsjG6KBhlCqKuFBqa5DXO6ug==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHost/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHost/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHost.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHost.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
- "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==",
+ "Microsoft.NETCore.DotNetHostPolicy/1.1.0": {
+ "sha512": "xa5FjffmB4QMfWIdwrW1cUKX6UD1VEePyzDcMqV8b/d9onZLJwIamPIRmDpN5lTlvdCnyUOI+5ZqZEjQIqSqxQ==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHostPolicy/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHostPolicy.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHostPolicy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
- "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==",
+ "Microsoft.NETCore.DotNetHostResolver/1.1.0": {
+ "sha512": "xf7RRVJ4M1w1Hg9TTzTH4g+zFqGtu6uXBjpcyy+o5UYrRj44dtJkmlnc1OnoKQFU0pZ8i9C8eNbSeqq/p6n19w==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHostResolver/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHostResolver.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHostResolver.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Jit/1.0.4": {
- "sha512": "IcHTGj+vTFcOu7/flwNg+CWIfTsxqHWgj08MKOtYwS5k0EuLvx6PrYsn7vHCV0SUTk1zbQ1l0EJj1UdxTMyx4w==",
+ "Microsoft.NETCore.Jit/1.1.0": {
+ "sha512": "Zsrh7C1ncfJe1tLGExgHrdal8I0U7qBHeLkpjbxd6M8uPtR8ck+R1Gynyjn01M3VO1Px416WvrJ4rxQFeR3jTQ==",
"type": "package",
- "path": "Microsoft.NETCore.Jit/1.0.4",
+ "path": "Microsoft.NETCore.Jit/1.1.0",
"files": [
- "Microsoft.NETCore.Jit.1.0.4.nupkg.sha512",
+ "Microsoft.NETCore.Jit.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Jit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Platforms/1.0.1": {
- "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==",
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"type": "package",
- "path": "Microsoft.NETCore.Platforms/1.0.1",
+ "path": "Microsoft.NETCore.Platforms/1.1.0",
"files": [
- "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Platforms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7782,24 +7953,24 @@
"runtime.json"
]
},
- "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
- "sha512": "r4/aP7VYcJ+W/rJVFU+jAdjF4KrsHRDYQJ+p8weUP5n65yLzWXlQTVY6OsR560aV5EF7jc65dqsNXIryUCrEkQ==",
+ "Microsoft.NETCore.Runtime.CoreCLR/1.1.0": {
+ "sha512": "dwvlgs9yX8Y1phaXqNJC8qOgEeZfsM8mVB4vprv7OOhttjXoiaiYQAEYa4D4fbiqTjx/gD6/fVPJ/aSmk5byhg==",
"type": "package",
- "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4",
+ "path": "Microsoft.NETCore.Runtime.CoreCLR/1.1.0",
"files": [
- "Microsoft.NETCore.Runtime.CoreCLR.1.0.4.nupkg.sha512",
+ "Microsoft.NETCore.Runtime.CoreCLR.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Targets/1.0.1": {
- "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"type": "package",
- "path": "Microsoft.NETCore.Targets/1.0.1",
+ "path": "Microsoft.NETCore.Targets/1.1.0",
"files": [
- "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Targets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7808,7 +7979,7 @@
]
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
- "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==",
+ "sha512": "jH+MpPZ4afpEBEUxOHuV6kNwIFu21ECEP7UlwcYaM2oORy7mWIm/iJbXSml4Z6ayoIgzc4xHrx8g5tDxzy9Cfw==",
"type": "package",
"path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
"files": [
@@ -7819,12 +7990,12 @@
"runtime.json"
]
},
- "Microsoft.VisualBasic/10.0.1": {
- "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==",
+ "Microsoft.VisualBasic/10.1.0": {
+ "sha512": "jgBfelga8QHZDTtUBtLNgcDPuXzaplCeXLqQcf5qB4jeVdPpX1AtnZnGeHbbi2tmp+P96hgI+KhXbUN567K60Q==",
"type": "package",
- "path": "Microsoft.VisualBasic/10.0.1",
+ "path": "Microsoft.VisualBasic/10.1.0",
"files": [
- "Microsoft.VisualBasic.10.0.1.nupkg.sha512",
+ "Microsoft.VisualBasic.10.1.0.nupkg.sha512",
"Microsoft.VisualBasic.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7834,6 +8005,8 @@
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
+ "ref/MonoAndroid10/Microsoft.VisualBasic.dll",
+ "ref/MonoTouch10/Microsoft.VisualBasic.dll",
"ref/net45/_._",
"ref/netcore50/Microsoft.VisualBasic.dll",
"ref/netcore50/Microsoft.VisualBasic.xml",
@@ -7859,26 +8032,31 @@
"ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
- "ref/wpa81/_._"
+ "ref/wpa81/_._",
+ "ref/xamarinios10/Microsoft.VisualBasic.dll",
+ "ref/xamarintvos10/Microsoft.VisualBasic.dll",
+ "ref/xamarinwatchos10/Microsoft.VisualBasic.dll"
]
},
- "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-rc2-final": {
- "sha512": "NM/mukki+sxjRIg6yve48iD0/Y+bb89vGpAVvFNt8+jUpoVz5JBm03q5T3t+vKFiZNjJUWmwsP8vYATIpbk10Q==",
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.1.0": {
+ "sha512": "iVJCfMpPqZE2QaEAGT5MoEYM65l59rDSNERnZQmJDOiE+itZZ6ZP5wh+Lh9Lv0Nt1SbgvXdN3z39MM435ITldA==",
"type": "package",
- "path": "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-rc2-final",
+ "path": "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.1.0",
"files": [
- "Microsoft.VisualStudio.Web.BrowserLink.Loader.14.0.0-rc2-final.nupkg.sha512",
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader.14.1.0.nupkg.sha512",
"Microsoft.VisualStudio.Web.BrowserLink.Loader.nuspec",
"lib/net451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll",
- "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll"
+ "lib/net451/Microsoft.VisualStudio.Web.BrowserLink.Loader.xml",
+ "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll",
+ "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.xml"
]
},
- "Microsoft.Win32.Primitives/4.0.1": {
- "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"type": "package",
- "path": "Microsoft.Win32.Primitives/4.0.1",
+ "path": "Microsoft.Win32.Primitives/4.3.0",
"files": [
- "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
+ "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
"Microsoft.Win32.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7909,12 +8087,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "Microsoft.Win32.Registry/4.0.0": {
- "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
+ "Microsoft.Win32.Registry/4.3.0": {
+ "sha512": "Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==",
"type": "package",
- "path": "Microsoft.Win32.Registry/4.0.0",
+ "path": "Microsoft.Win32.Registry/4.3.0",
"files": [
- "Microsoft.Win32.Registry.4.0.0.nupkg.sha512",
+ "Microsoft.Win32.Registry.4.3.0.nupkg.sha512",
"Microsoft.Win32.Registry.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7937,12 +8115,12 @@
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
]
},
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
+ "NETStandard.Library/1.6.1": {
+ "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"type": "package",
- "path": "NETStandard.Library/1.6.0",
+ "path": "NETStandard.Library/1.6.1",
"files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
+ "NETStandard.Library.1.6.1.nupkg.sha512",
"NETStandard.Library.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
@@ -8090,12 +8268,12 @@
"lib/portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10/nunit.framework.xml"
]
},
- "NUnit.Portable.Agent/3.4.0-beta-2": {
- "sha512": "ybpAVygz7TMj5FKvR/xnYncDOwwZ7omHFbwVRBVMHee5N8AIP2gebNVWPY4DoHFoJwtE2eZ/oBQBtf3/hiLx5w==",
+ "NUnit.Portable.Agent/3.4.0-beta-3": {
+ "sha512": "BcgxOFtivkK8+eu5krwxxTWw6RtASfp7q/nQ18Z5a2rEvDHZz9h+U2fJjIrw4P9CtqbzZwNuGHprUnhoVqlZrw==",
"type": "package",
- "path": "NUnit.Portable.Agent/3.4.0-beta-2",
+ "path": "NUnit.Portable.Agent/3.4.0-beta-3",
"files": [
- "NUnit.Portable.Agent.3.4.0-beta-2.nupkg.sha512",
+ "NUnit.Portable.Agent.3.4.0-beta-3.nupkg.sha512",
"NUnit.Portable.Agent.nuspec",
"lib/net45/NUnit.Portable.Agent.dll",
"lib/netstandard1.3/NUnit.Portable.Agent.dll"
@@ -8120,107 +8298,253 @@
"lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml"
]
},
- "runtime.native.System/4.0.0": {
- "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "type": "package",
+ "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
"type": "package",
- "path": "runtime.native.System/4.0.0",
+ "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "type": "package",
+ "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "type": "package",
+ "path": "runtime.native.System/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.4.0.0.nupkg.sha512",
+ "runtime.native.System.4.3.0.nupkg.sha512",
"runtime.native.System.nuspec"
]
},
- "runtime.native.System.Data.SqlClient.sni/4.0.0": {
- "sha512": "DcMVtYwugo1LOc9MVchInxlLNoFe/+21MsEQU9yIZX561chzxDlFDWowWF+Kc262PyD3eLkDab1JyJrs73Qtkg==",
+ "runtime.native.System.Data.SqlClient.sni/4.3.0": {
+ "sha512": "rX1bLxiHjj+ivd4bL9RwCvKM7agWHceLrAFsPQryTX0ZZ1J7x6vSz779YgMih0S4yD/GTvr7+dajBVutzJVvBg==",
"type": "package",
- "path": "runtime.native.System.Data.SqlClient.sni/4.0.0",
+ "path": "runtime.native.System.Data.SqlClient.sni/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
- "runtime.native.System.Data.SqlClient.sni.4.0.0.nupkg.sha512",
+ "runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
"runtime.native.System.Data.SqlClient.sni.nuspec"
]
},
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
+ "path": "runtime.native.System.IO.Compression/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512",
+ "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
"runtime.native.System.IO.Compression.nuspec"
]
},
- "runtime.native.System.Net.Http/4.0.1": {
- "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
+ "runtime.native.System.Net.Http/4.3.0": {
+ "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"type": "package",
- "path": "runtime.native.System.Net.Http/4.0.1",
+ "path": "runtime.native.System.Net.Http/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Http.nuspec"
]
},
- "runtime.native.System.Net.Security/4.0.1": {
- "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==",
+ "runtime.native.System.Net.Security/4.3.0": {
+ "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
"type": "package",
- "path": "runtime.native.System.Net.Security/4.0.1",
+ "path": "runtime.native.System.Net.Security/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Security.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Security.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Security.nuspec"
]
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "type": "package",
+ "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.Apple.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
"type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
+ "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.nuspec"
+ "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
+ ]
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "type": "package",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "type": "package",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
+ ]
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "type": "package",
+ "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "type": "package",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1": {
- "sha512": "My20HZqJbDS4rWmdOcJ3TPf9iX6M/sTF2nBSUHBvfWp1iNip3eMS+K65oQgsLRxX6h21ic3YED06c2ye2sL7FQ==",
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
+ "sha512": "j42JRgYOMi6B86attv8F3eDBISh+kzoKxLsu0zaq1ioY+je64chWd8fybvk9yPzayO3Dh1czhmf5B7rbafLRQA==",
"type": "package",
- "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1",
+ "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0",
"files": [
+ "OpenCoreFxSyncInfo.txt",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.0.1.nupkg.sha512",
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
"runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.nuspec",
"runtimes/win7-x64/native/sni.dll"
]
},
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1": {
- "sha512": "ykiYCf/0hIc0xm+g6bVX8nw9St5Ool+r4US+B+56Lv/GFnDG5G9BK4n7WkrwEpuWV3XjMn38oHgHOnNMzBVNKA==",
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
+ "sha512": "4cXRTIcttvIreAoqK/5hzTtzepeggac+m5A0rzH+9zLtnFh2J0rLuGeJR4KjNLyKqPzO0kjqrs5lkRJEKX8HAA==",
"type": "package",
- "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1",
+ "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0",
"files": [
+ "OpenCoreFxSyncInfo.txt",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.0.1.nupkg.sha512",
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
"runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.nuspec",
"runtimes/win7-x86/native/sni.dll"
]
},
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
+ "System.AppContext/4.3.0": {
+ "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
"type": "package",
- "path": "System.AppContext/4.1.0",
+ "path": "System.AppContext/4.3.0",
"files": [
- "System.AppContext.4.1.0.nupkg.sha512",
+ "System.AppContext.4.3.0.nupkg.sha512",
"System.AppContext.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8268,12 +8592,12 @@
"runtimes/aot/lib/netcore50/System.AppContext.dll"
]
},
- "System.Buffers/4.0.0": {
- "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==",
+ "System.Buffers/4.3.0": {
+ "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
"type": "package",
- "path": "System.Buffers/4.0.0",
+ "path": "System.Buffers/4.3.0",
"files": [
- "System.Buffers.4.0.0.nupkg.sha512",
+ "System.Buffers.4.3.0.nupkg.sha512",
"System.Buffers.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8281,12 +8605,12 @@
"lib/netstandard1.1/System.Buffers.dll"
]
},
- "System.Collections/4.0.11": {
- "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"type": "package",
- "path": "System.Collections/4.0.11",
+ "path": "System.Collections/4.3.0",
"files": [
- "System.Collections.4.0.11.nupkg.sha512",
+ "System.Collections.4.3.0.nupkg.sha512",
"System.Collections.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8347,12 +8671,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Concurrent/4.0.12": {
- "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"type": "package",
- "path": "System.Collections.Concurrent/4.0.12",
+ "path": "System.Collections.Concurrent/4.3.0",
"files": [
- "System.Collections.Concurrent.4.0.12.nupkg.sha512",
+ "System.Collections.Concurrent.4.3.0.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8413,12 +8737,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Immutable/1.2.0": {
- "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
+ "System.Collections.Immutable/1.3.0": {
+ "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
"type": "package",
- "path": "System.Collections.Immutable/1.2.0",
+ "path": "System.Collections.Immutable/1.3.0",
"files": [
- "System.Collections.Immutable.1.2.0.nupkg.sha512",
+ "System.Collections.Immutable.1.3.0.nupkg.sha512",
"System.Collections.Immutable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8428,12 +8752,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
]
},
- "System.Collections.NonGeneric/4.0.1": {
- "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"type": "package",
- "path": "System.Collections.NonGeneric/4.0.1",
+ "path": "System.Collections.NonGeneric/4.3.0",
"files": [
- "System.Collections.NonGeneric.4.0.1.nupkg.sha512",
+ "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
"System.Collections.NonGeneric.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8465,12 +8789,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Specialized/4.0.1": {
- "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
+ "System.Collections.Specialized/4.3.0": {
+ "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"type": "package",
- "path": "System.Collections.Specialized/4.0.1",
+ "path": "System.Collections.Specialized/4.3.0",
"files": [
- "System.Collections.Specialized.4.0.1.nupkg.sha512",
+ "System.Collections.Specialized.4.3.0.nupkg.sha512",
"System.Collections.Specialized.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8502,12 +8826,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel/4.0.1": {
- "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
+ "System.ComponentModel/4.3.0": {
+ "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"type": "package",
- "path": "System.ComponentModel/4.0.1",
+ "path": "System.ComponentModel/4.3.0",
"files": [
- "System.ComponentModel.4.0.1.nupkg.sha512",
+ "System.ComponentModel.4.3.0.nupkg.sha512",
"System.ComponentModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8559,12 +8883,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Annotations/4.1.0": {
- "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==",
+ "System.ComponentModel.Annotations/4.3.0": {
+ "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
"type": "package",
- "path": "System.ComponentModel.Annotations/4.1.0",
+ "path": "System.ComponentModel.Annotations/4.3.0",
"files": [
- "System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
"System.ComponentModel.Annotations.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8636,12 +8960,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Primitives/4.1.0": {
- "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
+ "System.ComponentModel.Primitives/4.3.0": {
+ "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"type": "package",
- "path": "System.ComponentModel.Primitives/4.1.0",
+ "path": "System.ComponentModel.Primitives/4.3.0",
"files": [
- "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Primitives.4.3.0.nupkg.sha512",
"System.ComponentModel.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8673,12 +8997,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.TypeConverter/4.1.0": {
- "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"type": "package",
- "path": "System.ComponentModel.TypeConverter/4.1.0",
+ "path": "System.ComponentModel.TypeConverter/4.3.0",
"files": [
- "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
+ "System.ComponentModel.TypeConverter.4.3.0.nupkg.sha512",
"System.ComponentModel.TypeConverter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8724,12 +9048,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"type": "package",
- "path": "System.Console/4.0.0",
+ "path": "System.Console/4.3.0",
"files": [
- "System.Console.4.0.0.nupkg.sha512",
+ "System.Console.4.3.0.nupkg.sha512",
"System.Console.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8760,12 +9084,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Data.Common/4.1.0": {
- "sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==",
+ "System.Data.Common/4.3.0": {
+ "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
"type": "package",
- "path": "System.Data.Common/4.1.0",
+ "path": "System.Data.Common/4.3.0",
"files": [
- "System.Data.Common.4.1.0.nupkg.sha512",
+ "System.Data.Common.4.3.0.nupkg.sha512",
"System.Data.Common.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8809,12 +9133,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Data.SqlClient/4.1.0": {
- "sha512": "yqMZgzzKHdG84QmA/PPZUORaoisfvztvFqyPs7dPafJhNxlS7STf9OMCFrP/tITQCqImkm1+X4d2oiWOT2oTKg==",
+ "System.Data.SqlClient/4.3.0": {
+ "sha512": "XmWg+/uUcME++m/vsRzxq1fo0GvlYzFfZM5fCqIIDT+O7AwDdpfd1LkRXmcxeTJQTCgx5AN3Y3t5qSz5XxQLVw==",
"type": "package",
- "path": "System.Data.SqlClient/4.1.0",
+ "path": "System.Data.SqlClient/4.3.0",
"files": [
- "System.Data.SqlClient.4.1.0.nupkg.sha512",
+ "System.Data.SqlClient.4.3.0.nupkg.sha512",
"System.Data.SqlClient.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8862,12 +9186,12 @@
"runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll"
]
},
- "System.Diagnostics.Contracts/4.0.1": {
- "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
+ "System.Diagnostics.Contracts/4.3.0": {
+ "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
"type": "package",
- "path": "System.Diagnostics.Contracts/4.0.1",
+ "path": "System.Diagnostics.Contracts/4.3.0",
"files": [
- "System.Diagnostics.Contracts.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
"System.Diagnostics.Contracts.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8920,12 +9244,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
]
},
- "System.Diagnostics.Debug/4.0.11": {
- "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
- "path": "System.Diagnostics.Debug/4.0.11",
+ "path": "System.Diagnostics.Debug/4.3.0",
"files": [
- "System.Diagnostics.Debug.4.0.11.nupkg.sha512",
+ "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8986,12 +9310,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
- "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
"type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.0.0",
+ "path": "System.Diagnostics.DiagnosticSource/4.3.0",
"files": [
- "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512",
+ "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
"System.Diagnostics.DiagnosticSource.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9006,7 +9330,7 @@
]
},
"System.Diagnostics.FileVersionInfo/4.0.0": {
- "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==",
+ "sha512": "VtXkqPMWpaXDFEvbuhroVemeTaaU/j6C3yu6rd+JFLg5AvHAZJb8hUpxwJCM7OFrUpeKmv3A7ZTME8hFYWL6pA==",
"type": "package",
"path": "System.Diagnostics.FileVersionInfo/4.0.0",
"files": [
@@ -9045,12 +9369,12 @@
"runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll"
]
},
- "System.Diagnostics.Process/4.1.0": {
- "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
+ "System.Diagnostics.Process/4.3.0": {
+ "sha512": "J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==",
"type": "package",
- "path": "System.Diagnostics.Process/4.1.0",
+ "path": "System.Diagnostics.Process/4.3.0",
"files": [
- "System.Diagnostics.Process.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Process.4.3.0.nupkg.sha512",
"System.Diagnostics.Process.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9100,12 +9424,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Diagnostics.StackTrace/4.0.1": {
- "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==",
+ "System.Diagnostics.StackTrace/4.3.0": {
+ "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
"type": "package",
- "path": "System.Diagnostics.StackTrace/4.0.1",
+ "path": "System.Diagnostics.StackTrace/4.3.0",
"files": [
- "System.Diagnostics.StackTrace.4.0.1.nupkg.sha512",
+ "System.Diagnostics.StackTrace.4.3.0.nupkg.sha512",
"System.Diagnostics.StackTrace.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9138,12 +9462,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
]
},
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "System.Diagnostics.Tools/4.3.0": {
+ "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
+ "path": "System.Diagnostics.Tools/4.3.0",
"files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9193,12 +9517,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Tracing/4.1.0": {
- "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"type": "package",
- "path": "System.Diagnostics.Tracing/4.1.0",
+ "path": "System.Diagnostics.Tracing/4.3.0",
"files": [
- "System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9281,12 +9605,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Dynamic.Runtime/4.0.11": {
- "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "System.Dynamic.Runtime/4.3.0": {
+ "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"type": "package",
- "path": "System.Dynamic.Runtime/4.0.11",
+ "path": "System.Dynamic.Runtime/4.3.0",
"files": [
- "System.Dynamic.Runtime.4.0.11.nupkg.sha512",
+ "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
"System.Dynamic.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9350,12 +9674,12 @@
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
]
},
- "System.Globalization/4.0.11": {
- "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"type": "package",
- "path": "System.Globalization/4.0.11",
+ "path": "System.Globalization/4.3.0",
"files": [
- "System.Globalization.4.0.11.nupkg.sha512",
+ "System.Globalization.4.3.0.nupkg.sha512",
"System.Globalization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9416,12 +9740,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Calendars/4.0.1": {
- "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
+ "System.Globalization.Calendars/4.3.0": {
+ "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"type": "package",
- "path": "System.Globalization.Calendars/4.0.1",
+ "path": "System.Globalization.Calendars/4.3.0",
"files": [
- "System.Globalization.Calendars.4.0.1.nupkg.sha512",
+ "System.Globalization.Calendars.4.3.0.nupkg.sha512",
"System.Globalization.Calendars.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9452,12 +9776,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Extensions/4.0.1": {
- "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"type": "package",
- "path": "System.Globalization.Extensions/4.0.1",
+ "path": "System.Globalization.Extensions/4.3.0",
"files": [
- "System.Globalization.Extensions.4.0.1.nupkg.sha512",
+ "System.Globalization.Extensions.4.3.0.nupkg.sha512",
"System.Globalization.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9504,12 +9828,12 @@
"lib/netstandard1.0/System.Interactive.Async.xml"
]
},
- "System.IO/4.1.0": {
- "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"type": "package",
- "path": "System.IO/4.1.0",
+ "path": "System.IO/4.3.0",
"files": [
- "System.IO.4.1.0.nupkg.sha512",
+ "System.IO.4.3.0.nupkg.sha512",
"System.IO.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9583,12 +9907,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
+ "System.IO.Compression/4.3.0": {
+ "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"type": "package",
- "path": "System.IO.Compression/4.1.0",
+ "path": "System.IO.Compression/4.3.0",
"files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
+ "System.IO.Compression.4.3.0.nupkg.sha512",
"System.IO.Compression.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9652,12 +9976,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
]
},
- "System.IO.Compression.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
"type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
+ "path": "System.IO.Compression.ZipFile/4.3.0",
"files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
+ "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
"System.IO.Compression.ZipFile.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9689,12 +10013,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem/4.0.1": {
- "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"type": "package",
- "path": "System.IO.FileSystem/4.0.1",
+ "path": "System.IO.FileSystem/4.3.0",
"files": [
- "System.IO.FileSystem.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.4.3.0.nupkg.sha512",
"System.IO.FileSystem.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9725,12 +10049,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Primitives/4.0.1": {
- "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"type": "package",
- "path": "System.IO.FileSystem.Primitives/4.0.1",
+ "path": "System.IO.FileSystem.Primitives/4.3.0",
"files": [
- "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9762,12 +10086,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Watcher/4.0.0": {
- "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==",
+ "System.IO.FileSystem.Watcher/4.3.0": {
+ "sha512": "37IDFU2w6LJ4FrohcVlV1EXviUmAOJIbejVgOUtNaPQyeZW2D/0QSkH8ykehoOd19bWfxp3RRd0xj+yRRIqLhw==",
"type": "package",
- "path": "System.IO.FileSystem.Watcher/4.0.0",
+ "path": "System.IO.FileSystem.Watcher/4.3.0",
"files": [
- "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
+ "System.IO.FileSystem.Watcher.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Watcher.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9803,12 +10127,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.IO.MemoryMappedFiles/4.0.0": {
- "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==",
+ "System.IO.MemoryMappedFiles/4.3.0": {
+ "sha512": "mz2JJFxCQLdMzXVOPyVibDKDKFZey66YHgQy8M1/vUCQzMSrbiXhpsyV04vSlBeqQUdM7wTL2WG+X3GZALKsIQ==",
"type": "package",
- "path": "System.IO.MemoryMappedFiles/4.0.0",
+ "path": "System.IO.MemoryMappedFiles/4.3.0",
"files": [
- "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512",
+ "System.IO.MemoryMappedFiles.4.3.0.nupkg.sha512",
"System.IO.MemoryMappedFiles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9843,12 +10167,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
]
},
- "System.IO.Pipes/4.0.0": {
- "sha512": "L9QVhk8hIEix5KNA0kW58Ha+Y1dNGqqqIhAaJkhcGCWeQzUmN0njzI7SG/XAazpMecboOdFFlH3pH/qbwXLJAg==",
+ "System.IO.Pipes/4.3.0": {
+ "sha512": "wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==",
"type": "package",
- "path": "System.IO.Pipes/4.0.0",
+ "path": "System.IO.Pipes/4.3.0",
"files": [
- "System.IO.Pipes.4.0.0.nupkg.sha512",
+ "System.IO.Pipes.4.3.0.nupkg.sha512",
"System.IO.Pipes.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9871,12 +10195,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.IO.UnmanagedMemoryStream/4.0.1": {
- "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==",
+ "System.IO.UnmanagedMemoryStream/4.3.0": {
+ "sha512": "tS89nK7pw8ebkkEfWujA05+ZReHKzz39W+bcX1okVR0GJCJuzPyfYfQZyiLSrjp121BB5J4uewZQiUTKri2pSQ==",
"type": "package",
- "path": "System.IO.UnmanagedMemoryStream/4.0.1",
+ "path": "System.IO.UnmanagedMemoryStream/4.3.0",
"files": [
- "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
+ "System.IO.UnmanagedMemoryStream.4.3.0.nupkg.sha512",
"System.IO.UnmanagedMemoryStream.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9908,12 +10232,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq/4.1.0": {
- "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"type": "package",
- "path": "System.Linq/4.1.0",
+ "path": "System.Linq/4.3.0",
"files": [
- "System.Linq.4.1.0.nupkg.sha512",
+ "System.Linq.4.3.0.nupkg.sha512",
"System.Linq.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9978,12 +10302,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"type": "package",
- "path": "System.Linq.Expressions/4.1.0",
+ "path": "System.Linq.Expressions/4.3.0",
"files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
+ "System.Linq.Expressions.4.3.0.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10060,12 +10384,12 @@
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
]
},
- "System.Linq.Parallel/4.0.1": {
- "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==",
+ "System.Linq.Parallel/4.3.0": {
+ "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==",
"type": "package",
- "path": "System.Linq.Parallel/4.0.1",
+ "path": "System.Linq.Parallel/4.3.0",
"files": [
- "System.Linq.Parallel.4.0.1.nupkg.sha512",
+ "System.Linq.Parallel.4.3.0.nupkg.sha512",
"System.Linq.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10116,7 +10440,7 @@
]
},
"System.Linq.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
+ "sha512": "RXVSHwhbqT4pZdCm+wISM7DGJ2wCkFyRGjMlXkUfnl1t9G4QOv+vasX6ovGb7pfszDH2h1K4b5zf5OpVdc6U/A==",
"type": "package",
"path": "System.Linq.Queryable/4.0.1",
"files": [
@@ -10172,12 +10496,69 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "System.Linq.Queryable/4.3.0",
+ "files": [
+ "System.Linq.Queryable.4.3.0.nupkg.sha512",
+ "System.Linq.Queryable.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._"
+ ]
+ },
+ "System.Net.Http/4.3.0": {
+ "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
"type": "package",
- "path": "System.Net.Http/4.1.0",
+ "path": "System.Net.Http/4.3.0",
"files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
+ "System.Net.Http.4.3.0.nupkg.sha512",
"System.Net.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10252,12 +10633,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
]
},
- "System.Net.NameResolution/4.0.0": {
- "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
+ "System.Net.NameResolution/4.3.0": {
+ "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
"type": "package",
- "path": "System.Net.NameResolution/4.0.0",
+ "path": "System.Net.NameResolution/4.3.0",
"files": [
- "System.Net.NameResolution.4.0.0.nupkg.sha512",
+ "System.Net.NameResolution.4.3.0.nupkg.sha512",
"System.Net.NameResolution.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10292,12 +10673,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
]
},
- "System.Net.Primitives/4.0.11": {
- "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"type": "package",
- "path": "System.Net.Primitives/4.0.11",
+ "path": "System.Net.Primitives/4.3.0",
"files": [
- "System.Net.Primitives.4.0.11.nupkg.sha512",
+ "System.Net.Primitives.4.3.0.nupkg.sha512",
"System.Net.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10369,12 +10750,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Requests/4.0.11": {
- "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==",
+ "System.Net.Requests/4.3.0": {
+ "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
"type": "package",
- "path": "System.Net.Requests/4.0.11",
+ "path": "System.Net.Requests/4.3.0",
"files": [
- "System.Net.Requests.4.0.11.nupkg.sha512",
+ "System.Net.Requests.4.3.0.nupkg.sha512",
"System.Net.Requests.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10450,12 +10831,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
]
},
- "System.Net.Security/4.0.0": {
- "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==",
+ "System.Net.Security/4.3.0": {
+ "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
"type": "package",
- "path": "System.Net.Security/4.0.0",
+ "path": "System.Net.Security/4.3.0",
"files": [
- "System.Net.Security.4.0.0.nupkg.sha512",
+ "System.Net.Security.4.3.0.nupkg.sha512",
"System.Net.Security.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10490,12 +10871,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Net.Sockets/4.1.0": {
- "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
+ "System.Net.Sockets/4.3.0": {
+ "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
"type": "package",
- "path": "System.Net.Sockets/4.1.0",
+ "path": "System.Net.Sockets/4.3.0",
"files": [
- "System.Net.Sockets.4.1.0.nupkg.sha512",
+ "System.Net.Sockets.4.3.0.nupkg.sha512",
"System.Net.Sockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10526,12 +10907,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebHeaderCollection/4.0.1": {
- "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==",
+ "System.Net.WebHeaderCollection/4.3.0": {
+ "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
"type": "package",
- "path": "System.Net.WebHeaderCollection/4.0.1",
+ "path": "System.Net.WebHeaderCollection/4.3.0",
"files": [
- "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
+ "System.Net.WebHeaderCollection.4.3.0.nupkg.sha512",
"System.Net.WebHeaderCollection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10563,12 +10944,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebSockets/4.0.0": {
- "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
+ "System.Net.WebSockets/4.3.0": {
+ "sha512": "u6fFNY5q4T8KerUAVbya7bR6b7muBuSTAersyrihkcmE5QhEOiH3t5rh4il15SexbVlpXFHGuMwr/m8fDrnkQg==",
"type": "package",
- "path": "System.Net.WebSockets/4.0.0",
+ "path": "System.Net.WebSockets/4.3.0",
"files": [
- "System.Net.WebSockets.4.0.0.nupkg.sha512",
+ "System.Net.WebSockets.4.3.0.nupkg.sha512",
"System.Net.WebSockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10600,12 +10981,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Numerics.Vectors/4.1.1": {
- "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==",
+ "System.Numerics.Vectors/4.3.0": {
+ "sha512": "uAIqmwiQPPXdCz59MQcyHwsH2MzIv24VGCS54kP/1GzTRTuU3hazmiPnGUTlKFia4B1DnbLWjTHoGyTI5BMCTQ==",
"type": "package",
- "path": "System.Numerics.Vectors/4.1.1",
+ "path": "System.Numerics.Vectors/4.3.0",
"files": [
- "System.Numerics.Vectors.4.1.1.nupkg.sha512",
+ "System.Numerics.Vectors.4.3.0.nupkg.sha512",
"System.Numerics.Vectors.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10633,12 +11014,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"type": "package",
- "path": "System.ObjectModel/4.0.12",
+ "path": "System.ObjectModel/4.3.0",
"files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
+ "System.ObjectModel.4.3.0.nupkg.sha512",
"System.ObjectModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10701,12 +11082,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection/4.1.0": {
- "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"type": "package",
- "path": "System.Reflection/4.1.0",
+ "path": "System.Reflection/4.3.0",
"files": [
- "System.Reflection.4.1.0.nupkg.sha512",
+ "System.Reflection.4.3.0.nupkg.sha512",
"System.Reflection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10780,12 +11161,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.DispatchProxy/4.0.1": {
- "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==",
+ "System.Reflection.DispatchProxy/4.3.0": {
+ "sha512": "vFln4g7zbLRyJbioExbMaW4BGuE2urDE2IKQk02x1y1uhQWntD+4rcYA4xQGJ19PlMdYPMWExHVQj3zKDODBFw==",
"type": "package",
- "path": "System.Reflection.DispatchProxy/4.0.1",
+ "path": "System.Reflection.DispatchProxy/4.3.0",
"files": [
- "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
+ "System.Reflection.DispatchProxy.4.3.0.nupkg.sha512",
"System.Reflection.DispatchProxy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10816,20 +11197,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
]
},
- "System.Reflection.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"type": "package",
- "path": "System.Reflection.Emit/4.0.1",
+ "path": "System.Reflection.Emit/4.3.0",
"files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.4.3.0.nupkg.sha512",
"System.Reflection.Emit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.dll",
"lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/net45/_._",
"ref/netstandard1.1/System.Reflection.Emit.dll",
@@ -10846,20 +11231,28 @@
"ref/xamarinmac20/_._"
]
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.0.1",
+ "path": "System.Reflection.Emit.ILGeneration/4.3.0",
"files": [
- "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
"System.Reflection.Emit.ILGeneration.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
@@ -10874,23 +11267,35 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.0.1",
+ "path": "System.Reflection.Emit.Lightweight/4.3.0",
"files": [
- "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
"System.Reflection.Emit.Lightweight.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.Lightweight.dll",
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
@@ -10905,15 +11310,19 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Extensions/4.0.1": {
- "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"type": "package",
- "path": "System.Reflection.Extensions/4.0.1",
+ "path": "System.Reflection.Extensions/4.3.0",
"files": [
- "System.Reflection.Extensions.4.0.1.nupkg.sha512",
+ "System.Reflection.Extensions.4.3.0.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10963,12 +11372,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.Metadata/1.3.0": {
- "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
+ "System.Reflection.Metadata/1.4.1": {
+ "sha512": "tc2ZyJgweHCLci5oQGuhQn9TD0Ii9DReXkHtZm3aAGp8xe40rpRjiTbMXOtZU+fr0BOQ46goE9+qIqRGjR9wGg==",
"type": "package",
- "path": "System.Reflection.Metadata/1.3.0",
+ "path": "System.Reflection.Metadata/1.4.1",
"files": [
- "System.Reflection.Metadata.1.3.0.nupkg.sha512",
+ "System.Reflection.Metadata.1.4.1.nupkg.sha512",
"System.Reflection.Metadata.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10978,12 +11387,12 @@
"lib/portable-net45+win8/System.Reflection.Metadata.xml"
]
},
- "System.Reflection.Primitives/4.0.1": {
- "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"type": "package",
- "path": "System.Reflection.Primitives/4.0.1",
+ "path": "System.Reflection.Primitives/4.3.0",
"files": [
- "System.Reflection.Primitives.4.0.1.nupkg.sha512",
+ "System.Reflection.Primitives.4.3.0.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11033,12 +11442,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.TypeExtensions/4.1.0": {
- "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"type": "package",
- "path": "System.Reflection.TypeExtensions/4.1.0",
+ "path": "System.Reflection.TypeExtensions/4.3.0",
"files": [
- "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512",
+ "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11085,24 +11494,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
- "System.Resources.Reader/4.0.0": {
- "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==",
+ "System.Resources.Reader/4.3.0": {
+ "sha512": "AeSwdrdgsRnGRJDofYEJPlotJm6gDDg6WJ1/1lX2Yq8bPwicba7lanPi7adK0SE58zgN5PcGg/h0tuZS+IRAdw==",
"type": "package",
- "path": "System.Resources.Reader/4.0.0",
+ "path": "System.Resources.Reader/4.3.0",
"files": [
- "System.Resources.Reader.4.0.0.nupkg.sha512",
+ "System.Resources.Reader.4.3.0.nupkg.sha512",
"System.Resources.Reader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Resources.Reader.dll"
]
},
- "System.Resources.ResourceManager/4.0.1": {
- "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"type": "package",
- "path": "System.Resources.ResourceManager/4.0.1",
+ "path": "System.Resources.ResourceManager/4.3.0",
"files": [
- "System.Resources.ResourceManager.4.0.1.nupkg.sha512",
+ "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11152,12 +11561,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime/4.1.0": {
- "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"type": "package",
- "path": "System.Runtime/4.1.0",
+ "path": "System.Runtime/4.3.0",
"files": [
- "System.Runtime.4.1.0.nupkg.sha512",
+ "System.Runtime.4.3.0.nupkg.sha512",
"System.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11242,12 +11651,25 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Extensions/4.1.0": {
- "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "sha512": "rcnXA1U9W3QUtMSGoyoNHH6w4V5Rxa/EKXmzpORUYlDAlDB34hIQoU57ATXl8xHa83VvzRm6PcElEizgUd7U5w==",
+ "type": "package",
+ "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
+ "files": [
+ "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
+ "System.Runtime.CompilerServices.Unsafe.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"type": "package",
- "path": "System.Runtime.Extensions/4.1.0",
+ "path": "System.Runtime.Extensions/4.3.0",
"files": [
- "System.Runtime.Extensions.4.1.0.nupkg.sha512",
+ "System.Runtime.Extensions.4.3.0.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11321,12 +11743,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Handles/4.0.1": {
- "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"type": "package",
- "path": "System.Runtime.Handles/4.0.1",
+ "path": "System.Runtime.Handles/4.3.0",
"files": [
- "System.Runtime.Handles.4.0.1.nupkg.sha512",
+ "System.Runtime.Handles.4.3.0.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11357,12 +11779,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices/4.1.0": {
- "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"type": "package",
- "path": "System.Runtime.InteropServices/4.1.0",
+ "path": "System.Runtime.InteropServices/4.3.0",
"files": [
- "System.Runtime.InteropServices.4.1.0.nupkg.sha512",
+ "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11370,6 +11792,7 @@
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
@@ -11381,6 +11804,7 @@
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
@@ -11392,6 +11816,7 @@
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
@@ -11445,18 +11870,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
"type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0",
+ "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
"files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.0.0.nupkg.sha512",
+ "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.RuntimeInformation.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/xamarinios10/_._",
@@ -11477,17 +11903,23 @@
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
]
},
- "System.Runtime.Loader/4.0.0": {
- "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
"type": "package",
- "path": "System.Runtime.Loader/4.0.0",
+ "path": "System.Runtime.Loader/4.3.0",
"files": [
- "System.Runtime.Loader.4.0.0.nupkg.sha512",
+ "System.Runtime.Loader.4.3.0.nupkg.sha512",
"System.Runtime.Loader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net462/_._",
"lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/netstandard1.5/System.Runtime.Loader.dll",
"ref/netstandard1.5/System.Runtime.Loader.xml",
"ref/netstandard1.5/de/System.Runtime.Loader.xml",
@@ -11501,12 +11933,12 @@
"ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
]
},
- "System.Runtime.Numerics/4.0.1": {
- "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
+ "System.Runtime.Numerics/4.3.0": {
+ "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"type": "package",
- "path": "System.Runtime.Numerics/4.0.1",
+ "path": "System.Runtime.Numerics/4.3.0",
"files": [
- "System.Runtime.Numerics.4.0.1.nupkg.sha512",
+ "System.Runtime.Numerics.4.3.0.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11556,12 +11988,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"type": "package",
- "path": "System.Runtime.Serialization.Primitives/4.1.1",
+ "path": "System.Runtime.Serialization.Primitives/4.3.0",
"files": [
- "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
+ "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
"System.Runtime.Serialization.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11627,12 +12059,12 @@
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
]
},
- "System.Security.Claims/4.0.1": {
- "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==",
+ "System.Security.Claims/4.3.0": {
+ "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
"type": "package",
- "path": "System.Security.Claims/4.0.1",
+ "path": "System.Security.Claims/4.3.0",
"files": [
- "System.Security.Claims.4.0.1.nupkg.sha512",
+ "System.Security.Claims.4.3.0.nupkg.sha512",
"System.Security.Claims.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11664,12 +12096,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
- "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.2.0",
+ "path": "System.Security.Cryptography.Algorithms/4.3.0",
"files": [
- "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11694,6 +12126,7 @@
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
@@ -11702,12 +12135,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
]
},
- "System.Security.Cryptography.Cng/4.2.0": {
- "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
"type": "package",
- "path": "System.Security.Cryptography.Cng/4.2.0",
+ "path": "System.Security.Cryptography.Cng/4.3.0",
"files": [
- "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Cng.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11728,12 +12161,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
]
},
- "System.Security.Cryptography.Csp/4.0.0": {
- "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"type": "package",
- "path": "System.Security.Cryptography.Csp/4.0.0",
+ "path": "System.Security.Cryptography.Csp/4.3.0",
"files": [
- "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Csp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11758,12 +12191,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
]
},
- "System.Security.Cryptography.Encoding/4.0.0": {
- "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"type": "package",
- "path": "System.Security.Cryptography.Encoding/4.0.0",
+ "path": "System.Security.Cryptography.Encoding/4.3.0",
"files": [
- "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11797,12 +12230,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
]
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
- "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
"type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.0.0",
+ "path": "System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
- "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
"System.Security.Cryptography.OpenSsl.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11811,12 +12244,12 @@
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
]
},
- "System.Security.Cryptography.Primitives/4.0.0": {
- "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"type": "package",
- "path": "System.Security.Cryptography.Primitives/4.0.0",
+ "path": "System.Security.Cryptography.Primitives/4.3.0",
"files": [
- "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11838,12 +12271,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.1.0",
+ "path": "System.Security.Cryptography.X509Certificates/4.3.0",
"files": [
- "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512",
+ "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11892,12 +12325,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
]
},
- "System.Security.Principal/4.0.1": {
- "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==",
+ "System.Security.Principal/4.3.0": {
+ "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
"type": "package",
- "path": "System.Security.Principal/4.0.1",
+ "path": "System.Security.Principal/4.3.0",
"files": [
- "System.Security.Principal.4.0.1.nupkg.sha512",
+ "System.Security.Principal.4.3.0.nupkg.sha512",
"System.Security.Principal.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11949,12 +12382,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Principal.Windows/4.0.0": {
- "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==",
+ "System.Security.Principal.Windows/4.3.0": {
+ "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
"type": "package",
- "path": "System.Security.Principal.Windows/4.0.0",
+ "path": "System.Security.Principal.Windows/4.3.0",
"files": [
- "System.Security.Principal.Windows.4.0.0.nupkg.sha512",
+ "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
"System.Security.Principal.Windows.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11976,12 +12409,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
]
},
- "System.Text.Encoding/4.0.11": {
- "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"type": "package",
- "path": "System.Text.Encoding/4.0.11",
+ "path": "System.Text.Encoding/4.3.0",
"files": [
- "System.Text.Encoding.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.4.3.0.nupkg.sha512",
"System.Text.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12042,12 +12475,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encoding.CodePages/4.0.1": {
- "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
+ "System.Text.Encoding.CodePages/4.3.0": {
+ "sha512": "IRiEFUa5b/Gs5Egg8oqBVoywhtOeaO2KOx3j0RfcYY/raxqBuEK7NXRDgOwtYM8qbi+7S4RPXUbNt+ZxyY0/NQ==",
"type": "package",
- "path": "System.Text.Encoding.CodePages/4.0.1",
+ "path": "System.Text.Encoding.CodePages/4.3.0",
"files": [
- "System.Text.Encoding.CodePages.4.0.1.nupkg.sha512",
+ "System.Text.Encoding.CodePages.4.3.0.nupkg.sha512",
"System.Text.Encoding.CodePages.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12079,12 +12512,12 @@
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
]
},
- "System.Text.Encoding.Extensions/4.0.11": {
- "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"type": "package",
- "path": "System.Text.Encoding.Extensions/4.0.11",
+ "path": "System.Text.Encoding.Extensions/4.3.0",
"files": [
- "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
"System.Text.Encoding.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12145,12 +12578,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encodings.Web/4.0.0": {
- "sha512": "TWZnuiJgPDAEEUfobD7njXvSVR2Toz+jvKWds6yL4oSztmKQfnWzucczjzA+6Dv1bktBdY71sZW1YN0X6m9chQ==",
+ "System.Text.Encodings.Web/4.3.0": {
+ "sha512": "ilLTKoirqw+Mbt+6x1MOxZKEwflasdP5WNuo5m5rKSXtAqazlEDqdyBH1XbvENuDQUtKNeP48CI1dyDNlEAeOA==",
"type": "package",
- "path": "System.Text.Encodings.Web/4.0.0",
+ "path": "System.Text.Encodings.Web/4.3.0",
"files": [
- "System.Text.Encodings.Web.4.0.0.nupkg.sha512",
+ "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
"System.Text.Encodings.Web.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12158,12 +12591,12 @@
"lib/netstandard1.0/System.Text.Encodings.Web.xml"
]
},
- "System.Text.RegularExpressions/4.1.0": {
- "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "System.Text.RegularExpressions/4.3.0": {
+ "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"type": "package",
- "path": "System.Text.RegularExpressions/4.1.0",
+ "path": "System.Text.RegularExpressions/4.3.0",
"files": [
- "System.Text.RegularExpressions.4.1.0.nupkg.sha512",
+ "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
"System.Text.RegularExpressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12196,6 +12629,7 @@
"ref/netcore50/ru/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
@@ -12239,12 +12673,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading/4.0.11": {
- "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"type": "package",
- "path": "System.Threading/4.0.11",
+ "path": "System.Threading/4.3.0",
"files": [
- "System.Threading.4.0.11.nupkg.sha512",
+ "System.Threading.4.3.0.nupkg.sha512",
"System.Threading.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12308,12 +12742,12 @@
"runtimes/aot/lib/netcore50/System.Threading.dll"
]
},
- "System.Threading.Overlapped/4.0.1": {
- "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==",
+ "System.Threading.Overlapped/4.3.0": {
+ "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
"type": "package",
- "path": "System.Threading.Overlapped/4.0.1",
+ "path": "System.Threading.Overlapped/4.3.0",
"files": [
- "System.Threading.Overlapped.4.0.1.nupkg.sha512",
+ "System.Threading.Overlapped.4.3.0.nupkg.sha512",
"System.Threading.Overlapped.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12336,12 +12770,12 @@
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
]
},
- "System.Threading.Tasks/4.0.11": {
- "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"type": "package",
- "path": "System.Threading.Tasks/4.0.11",
+ "path": "System.Threading.Tasks/4.3.0",
"files": [
- "System.Threading.Tasks.4.0.11.nupkg.sha512",
+ "System.Threading.Tasks.4.3.0.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12402,27 +12836,29 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Tasks.Dataflow/4.6.0": {
- "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==",
+ "System.Threading.Tasks.Dataflow/4.7.0": {
+ "sha512": "wcKLDI8tN5KpcMcTQwXfcLHrFdfINIxDBOZS3rE8QqOds/0fRhCkR+IEfQokxT7s/Yluqk+LG/ZqZdQmA/xgCw==",
"type": "package",
- "path": "System.Threading.Tasks.Dataflow/4.6.0",
+ "path": "System.Threading.Tasks.Dataflow/4.7.0",
"files": [
- "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
+ "System.Threading.Tasks.Dataflow.4.7.0.nupkg.sha512",
"System.Threading.Tasks.Dataflow.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
- "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
+ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll"
]
},
- "System.Threading.Tasks.Extensions/4.0.0": {
- "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"type": "package",
- "path": "System.Threading.Tasks.Extensions/4.0.0",
+ "path": "System.Threading.Tasks.Extensions/4.3.0",
"files": [
- "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512",
+ "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12432,12 +12868,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
]
},
- "System.Threading.Tasks.Parallel/4.0.1": {
- "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==",
+ "System.Threading.Tasks.Parallel/4.3.0": {
+ "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
"type": "package",
- "path": "System.Threading.Tasks.Parallel/4.0.1",
+ "path": "System.Threading.Tasks.Parallel/4.3.0",
"files": [
- "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
+ "System.Threading.Tasks.Parallel.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12487,12 +12923,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Thread/4.0.0": {
- "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
+ "System.Threading.Thread/4.3.0": {
+ "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
"type": "package",
- "path": "System.Threading.Thread/4.0.0",
+ "path": "System.Threading.Thread/4.3.0",
"files": [
- "System.Threading.Thread.4.0.0.nupkg.sha512",
+ "System.Threading.Thread.4.3.0.nupkg.sha512",
"System.Threading.Thread.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12525,12 +12961,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.ThreadPool/4.0.10": {
- "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
+ "System.Threading.ThreadPool/4.3.0": {
+ "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
"type": "package",
- "path": "System.Threading.ThreadPool/4.0.10",
+ "path": "System.Threading.ThreadPool/4.3.0",
"files": [
- "System.Threading.ThreadPool.4.0.10.nupkg.sha512",
+ "System.Threading.ThreadPool.4.3.0.nupkg.sha512",
"System.Threading.ThreadPool.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12563,12 +12999,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Timer/4.0.1": {
- "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "System.Threading.Timer/4.3.0": {
+ "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
"type": "package",
- "path": "System.Threading.Timer/4.0.1",
+ "path": "System.Threading.Timer/4.3.0",
"files": [
- "System.Threading.Timer.4.0.1.nupkg.sha512",
+ "System.Threading.Timer.4.3.0.nupkg.sha512",
"System.Threading.Timer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12616,18 +13052,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.ReaderWriter/4.0.11": {
- "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "System.Xml.ReaderWriter/4.3.0": {
+ "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"type": "package",
- "path": "System.Xml.ReaderWriter/4.0.11",
+ "path": "System.Xml.ReaderWriter/4.3.0",
"files": [
- "System.Xml.ReaderWriter.4.0.11.nupkg.sha512",
+ "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
"System.Xml.ReaderWriter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
+ "lib/net46/System.Xml.ReaderWriter.dll",
"lib/netcore50/System.Xml.ReaderWriter.dll",
"lib/netstandard1.3/System.Xml.ReaderWriter.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
@@ -12641,6 +13078,7 @@
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
+ "ref/net46/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.xml",
"ref/netcore50/de/System.Xml.ReaderWriter.xml",
@@ -12684,12 +13122,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "System.Xml.XDocument/4.3.0": {
+ "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"type": "package",
- "path": "System.Xml.XDocument/4.0.11",
+ "path": "System.Xml.XDocument/4.3.0",
"files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
+ "System.Xml.XDocument.4.3.0.nupkg.sha512",
"System.Xml.XDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12753,7 +13191,7 @@
]
},
"System.Xml.XmlDocument/4.0.1": {
- "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
+ "sha512": "QUdzLPVLBXg+3hQiTgLSy6lnMIN4Pj6+kRU2GJCwMooXHJvHp2PUjBg5Ms3r+ewPcu3dewET6v0a9UqPaUrTaw==",
"type": "package",
"path": "System.Xml.XmlDocument/4.0.1",
"files": [
@@ -12790,7 +13228,7 @@
]
},
"System.Xml.XPath/4.0.1": {
- "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
+ "sha512": "drxlpwgSyGH1S1lsW5pqBCQ7TLdAKjVl+G1F1HYAVDFdRBtAHCORwW2/IbMCidAb8jxjJPBTyUkcTrEedIXvoQ==",
"type": "package",
"path": "System.Xml.XPath/4.0.1",
"files": [
@@ -12827,7 +13265,7 @@
]
},
"System.Xml.XPath.XDocument/4.0.1": {
- "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==",
+ "sha512": "9beITE7Jz3Q0vTBbs7OeYVI57jpJJP5s5O7l6s5OnfOoY87o4lau9HbXARVaZ5leWeDPch/xvw7tO4oEBa2r2w==",
"type": "package",
"path": "System.Xml.XPath.XDocument/4.0.1",
"files": [
@@ -12883,37 +13321,37 @@
"path": "../ApplicationParts.Web/project.json",
"msbuildProject": "../ApplicationParts.Web/ApplicationParts.Web.xproj"
},
- "MyTested.AspNetCore.Mvc.Abstractions/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Abstractions/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Abstractions/MyTested.AspNetCore.Mvc.Abstractions.xproj"
},
- "MyTested.AspNetCore.Mvc.Configuration/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Configuration/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Configuration/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Configuration/MyTested.AspNetCore.Mvc.Configuration.xproj"
},
- "MyTested.AspNetCore.Mvc.Controllers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Controllers/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Controllers/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Controllers/MyTested.AspNetCore.Mvc.Controllers.xproj"
},
- "MyTested.AspNetCore.Mvc.Http/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Http/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Http/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Http/MyTested.AspNetCore.Mvc.Http.xproj"
},
- "MyTested.AspNetCore.Mvc.Licensing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Licensing/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Licensing/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Licensing/MyTested.AspNetCore.Mvc.Licensing.xproj"
},
- "MyTested.AspNetCore.Mvc.Routing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Routing/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Routing/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Routing/MyTested.AspNetCore.Mvc.Routing.xproj"
},
- "MyTested.AspNetCore.Mvc.ViewActionResults/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewActionResults/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.ViewActionResults/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.ViewActionResults/MyTested.AspNetCore.Mvc.ViewActionResults.xproj"
@@ -12923,15 +13361,16 @@
"": [
"ApplicationParts.Controllers",
"ApplicationParts.Web",
- "Microsoft.EntityFrameworkCore.InMemory >= 1.0.1",
- "MyTested.AspNetCore.Mvc.Controllers >= 1.0.0",
- "MyTested.AspNetCore.Mvc.Routing >= 1.0.0",
- "MyTested.AspNetCore.Mvc.ViewActionResults >= 1.0.0",
+ "Microsoft.DotNet.InternalAbstractions >= 1.0.0",
+ "Microsoft.EntityFrameworkCore.InMemory >= 1.1.0",
+ "MyTested.AspNetCore.Mvc.Controllers >= 1.1.0",
+ "MyTested.AspNetCore.Mvc.Routing >= 1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewActionResults >= 1.1.0",
"NUnit >= 3.4.1",
"dotnet-test-nunit >= 3.4.0-*"
],
- ".NETCoreApp,Version=v1.0": [
- "Microsoft.NETCore.App >= 1.0.1"
+ ".NETCoreApp,Version=v1.1": [
+ "Microsoft.NETCore.App >= 1.1.0"
],
".NETFramework,Version=v4.5.1": []
},
diff --git a/samples/ApplicationParts/ApplicationParts.Web/project.json b/samples/ApplicationParts/ApplicationParts.Web/project.json
index 9a3f0d624..42134e5da 100644
--- a/samples/ApplicationParts/ApplicationParts.Web/project.json
+++ b/samples/ApplicationParts/ApplicationParts.Web/project.json
@@ -2,55 +2,40 @@
"userSecretsId": "aspnet-ApplicationParts.Web-c273a372-79ef-490d-b0e1-a7fb8f2dacc7",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Diagnostics": "1.0.0",
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
"Microsoft.AspNetCore.Razor.Tools": {
- "version": "1.0.0-preview2-final",
+ "version": "1.1.0-preview4-final",
"type": "build"
},
- "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
- "Microsoft.AspNetCore.StaticFiles": "1.0.0",
- "Microsoft.EntityFrameworkCore.SqlServer": "1.0.1",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
+ "Microsoft.AspNetCore.StaticFiles": "1.1.0",
+ "Microsoft.EntityFrameworkCore.SqlServer": "1.1.0",
"Microsoft.EntityFrameworkCore.Tools": {
- "version": "1.0.0-preview2-final",
+ "version": "1.1.0-preview4-final",
"type": "build"
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Logging.Console": "1.0.0",
- "Microsoft.Extensions.Logging.Debug": "1.0.0",
- "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0-rc2-final",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Logging.Console": "1.1.0",
+ "Microsoft.Extensions.Logging.Debug": "1.1.0",
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.1.0",
"ApplicationParts.Controllers": "*"
},
"tools": {
- "Microsoft.AspNetCore.Razor.Tools": {
- "version": "1.0.0-preview2-final",
- "imports": "portable-net45+win8+dnxcore50"
- },
- "Microsoft.AspNetCore.Server.IISIntegration.Tools": {
- "version": "1.0.0-preview2-final",
- "imports": "portable-net45+win8+dnxcore50"
- },
- "Microsoft.EntityFrameworkCore.Tools": {
- "version": "1.0.0-preview2-final",
- "imports": [
- "portable-net45+win8+dnxcore50",
- "portable-net45+win8"
- ]
- },
- "Microsoft.Extensions.SecretManager.Tools": {
- "version": "1.0.0-preview2-final",
- "imports": "portable-net45+win8+dnxcore50"
- },
+ "Microsoft.AspNetCore.Razor.Tools": "1.1.0-preview4-final",
+ "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final",
+ "Microsoft.EntityFrameworkCore.Tools": "1.1.0-preview4-final",
+ "Microsoft.Extensions.SecretManager.Tools": "1.1.0-preview4-final",
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
- "version": "1.0.0-preview2-final",
+ "version": "1.1.0-preview4-final",
"imports": [
"portable-net45+win8+dnxcore50",
"portable-net45+win8"
@@ -59,10 +44,10 @@
},
"frameworks": {
- "netcoreapp1.0": {
+ "netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.0.1",
+ "version": "1.1.0",
"type": "platform"
}
}
diff --git a/samples/ApplicationParts/ApplicationParts.Web/project.lock.json b/samples/ApplicationParts/ApplicationParts.Web/project.lock.json
index 42f4cc80f..b30ee3203 100644
--- a/samples/ApplicationParts/ApplicationParts.Web/project.lock.json
+++ b/samples/ApplicationParts/ApplicationParts.Web/project.lock.json
@@ -2,8 +2,8 @@
"locked": false,
"version": 2,
"targets": {
- ".NETCoreApp,Version=v1.0": {
- "Libuv/1.9.0": {
+ ".NETCoreApp,Version=v1.1": {
+ "Libuv/1.9.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
@@ -43,13 +43,15 @@
}
}
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -58,16 +60,16 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
- "System.Net.Http": "4.1.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.dll": {}
@@ -76,12 +78,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
@@ -90,12 +93,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Claims": "4.0.1"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
@@ -104,13 +108,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
@@ -119,15 +124,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
@@ -136,13 +136,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
@@ -151,22 +149,19 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
@@ -175,13 +170,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
@@ -190,20 +183,20 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.StackTrace": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Metadata": "1.3.0"
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.StackTrace": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.dll": {}
@@ -212,10 +205,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -224,12 +217,12 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
@@ -238,43 +231,43 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Console": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.StackTrace": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.StackTrace": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {}
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {}
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -283,11 +276,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -296,12 +290,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -310,16 +303,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
@@ -328,15 +321,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Globalization.Extensions": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -345,14 +338,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.IO.FileSystem": "4.0.1"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -361,19 +354,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebSockets": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0",
+ "System.Net.WebSockets": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -382,12 +371,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
@@ -396,13 +386,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
}
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
+ "Microsoft.AspNetCore.Identity/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.dll": {}
@@ -411,12 +401,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.dll": {}
}
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Identity": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.AspNetCore.Identity": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
@@ -425,36 +416,29 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
@@ -463,19 +447,20 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
@@ -484,15 +469,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -501,10 +485,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -513,21 +498,22 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -536,11 +522,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -549,12 +536,13 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0",
- "System.ComponentModel.Annotations": "4.1.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.Annotations": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
@@ -563,11 +551,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -576,13 +565,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -591,15 +581,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -608,16 +598,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -626,13 +614,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -641,19 +631,20 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Buffers": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -662,16 +653,11 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Threading": "4.0.11",
- "System.Threading.Thread": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
@@ -680,18 +666,29 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Design/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
+ "Microsoft.Extensions.CommandLineUtils": "1.0.0",
+ "Microsoft.Extensions.DependencyInjection": "1.0.0",
+ "Microsoft.NETCore.App": "1.1.0",
+ "Newtonsoft.Json": "9.0.1"
+ },
+ "compile": {
+ "lib/netcoreapp1.0/Microsoft.AspNetCore.Razor.Design.dll": {}
+ },
+ "runtime": {
+ "lib/netcoreapp1.0/Microsoft.AspNetCore.Razor.Design.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
@@ -700,17 +697,15 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview2-final": {
+ "Microsoft.AspNetCore.Razor.Tools/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
+ "Microsoft.AspNetCore.Razor.Design": "1.1.0-preview4-final",
"Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121",
"Microsoft.DotNet.ProjectModel.Loader": "1.0.0-preview2-003121",
- "Microsoft.Extensions.CommandLineUtils": "1.0.0",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "Microsoft.NETCore.App": "1.0.0",
- "Newtonsoft.Json": "9.0.1",
- "System.Diagnostics.Process": "4.1.0",
+ "Microsoft.NETCore.App": "1.1.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.1.1"
},
"compile": {
@@ -720,16 +715,28 @@
"lib/netcoreapp1.0/dotnet-razor-tooling.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
@@ -738,13 +745,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -753,16 +758,17 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Principal.Windows": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
@@ -771,30 +777,18 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
}
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Numerics.Vectors": "4.1.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "System.Threading.Timer": "4.0.1"
+ "Libuv": "1.9.1",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
@@ -803,14 +797,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
}
},
- "Microsoft.AspNetCore.StaticFiles/1.0.0": {
+ "Microsoft.AspNetCore.StaticFiles/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.dll": {}
@@ -819,15 +814,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -913,25 +907,25 @@
"lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.0/Microsoft.CSharp.dll": {}
@@ -940,6 +934,35 @@
"lib/netstandard1.3/Microsoft.CSharp.dll": {}
}
},
+ "Microsoft.DiaSymReader.Native/1.4.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll": {
+ "assetType": "native",
+ "rid": "win-x86"
+ },
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll": {
+ "assetType": "native",
+ "rid": "win"
+ },
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll": {
+ "assetType": "native",
+ "rid": "win"
+ },
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll": {
+ "assetType": "native",
+ "rid": "win"
+ },
+ "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll": {
+ "assetType": "native",
+ "rid": "win8-arm"
+ }
+ }
+ },
"Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121": {
"type": "package",
"dependencies": {
@@ -957,7 +980,7 @@
"lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll": {}
}
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
"System.AppContext": "4.1.0",
@@ -970,10 +993,10 @@
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
},
"compile": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
}
},
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
@@ -1012,21 +1035,18 @@
"lib/netstandard1.6/Microsoft.DotNet.ProjectModel.Loader.dll": {}
}
},
- "Microsoft.EntityFrameworkCore/1.0.1": {
+ "Microsoft.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Remotion.Linq": "2.1.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.Collections.Immutable": "1.2.0",
- "System.ComponentModel.Annotations": "4.1.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.ComponentModel.Annotations": "4.3.0",
"System.Interactive.Async": "3.0.0",
- "System.Linq.Queryable": "4.0.1",
- "System.ObjectModel": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0"
+ "System.Linq.Queryable": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
@@ -1035,45 +1055,29 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Design/1.0.0-preview2-final": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design.Core": "1.0.0-preview2-final",
- "Microsoft.Extensions.CommandLineUtils": "1.0.0",
- "Microsoft.NETCore.App": "1.0.0"
- },
- "compile": {
- "lib/netcoreapp1.0/Microsoft.EntityFrameworkCore.Design.dll": {}
- },
- "runtime": {
- "lib/netcoreapp1.0/Microsoft.EntityFrameworkCore.Design.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Design.Core/1.0.0-preview2-final": {
+ "Microsoft.EntityFrameworkCore.Design/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational.Design": "1.0.0",
- "System.AppContext": "4.1.0",
- "System.Collections.NonGeneric": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational.Design": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Collections.NonGeneric": "4.3.0"
},
"compile": {
- "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.Core.dll": {}
+ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.Core.dll": {}
+ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.1": {
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.EntityFrameworkCore": "1.0.1",
- "System.Data.Common": "4.1.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Data.Common": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
@@ -1082,10 +1086,11 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational.Design/1.0.0": {
+ "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0"
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
@@ -1094,12 +1099,13 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.SqlServer/1.0.1": {
+ "Microsoft.EntityFrameworkCore.SqlServer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "1.0.1",
- "System.Data.SqlClient": "4.1.0",
- "System.Threading.Thread": "4.0.0"
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Data.SqlClient": "4.3.0",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
@@ -1108,30 +1114,23 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final": {
+ "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121",
- "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121",
- "Microsoft.EntityFrameworkCore.Design": "1.0.0-preview2-final",
- "Microsoft.Extensions.CommandLineUtils": "1.0.0",
- "Microsoft.NETCore.App": "1.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.EntityFrameworkCore.Design": "1.1.0"
},
"compile": {
- "lib/netcoreapp1.0/dotnet-ef.dll": {}
+ "lib/netstandard1.3/_._": {}
},
"runtime": {
- "lib/netcoreapp1.0/dotnet-ef.dll": {}
+ "lib/netstandard1.3/_._": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -1140,14 +1139,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Linq": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -1172,17 +1170,11 @@
"lib/netstandard1.3/Microsoft.Extensions.CommandLineUtils.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0": {
+ "Microsoft.Extensions.Configuration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
@@ -1191,11 +1183,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -1204,10 +1196,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
@@ -1216,12 +1209,13 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.AppContext": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
@@ -1230,15 +1224,15 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Dynamic.Runtime": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
@@ -1247,27 +1241,24 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "Microsoft.Extensions.Configuration.UserSecrets/1.0.0": {
+ "Microsoft.Extensions.Configuration.UserSecrets/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Json": "1.0.0"
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ "lib/netstandard1.5/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
+ "lib/netstandard1.5/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -1276,16 +1267,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -1294,10 +1280,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
@@ -1310,12 +1296,11 @@
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -1324,10 +1309,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -1336,16 +1322,13 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.IO.FileSystem.Watcher": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -1354,14 +1337,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
@@ -1370,12 +1349,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -1384,15 +1361,15 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Resources.Reader": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Resources.Reader": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
@@ -1401,12 +1378,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -1415,12 +1391,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -1429,18 +1405,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -1449,14 +1417,12 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Console": "4.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
@@ -1465,11 +1431,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
}
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Diagnostics.Debug": "4.0.11"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
@@ -1478,13 +1444,10 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
@@ -1493,20 +1456,13 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -1515,15 +1471,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.AppContext": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
@@ -1532,11 +1484,11 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -1545,12 +1497,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -1559,17 +1512,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -1578,50 +1527,51 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.App/1.0.1": {
+ "Microsoft.NETCore.App/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.CSharp": "4.0.1",
+ "Libuv": "1.9.1",
+ "Microsoft.CSharp": "4.3.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
"Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
- "Microsoft.NETCore.DotNetHostPolicy": "1.0.1",
- "Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
- "Microsoft.VisualBasic": "10.0.1",
- "NETStandard.Library": "1.6.0",
- "System.Buffers": "4.0.0",
- "System.Collections.Immutable": "1.2.0",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Annotations": "4.1.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Process": "4.1.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.IO.MemoryMappedFiles": "4.0.0",
- "System.IO.UnmanagedMemoryStream": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Linq.Parallel": "4.0.1",
- "System.Linq.Queryable": "4.0.1",
- "System.Net.NameResolution": "4.0.0",
- "System.Net.Requests": "4.0.11",
- "System.Net.Security": "4.0.0",
- "System.Net.WebHeaderCollection": "4.0.1",
- "System.Numerics.Vectors": "4.1.1",
- "System.Reflection.DispatchProxy": "4.0.1",
- "System.Reflection.Metadata": "1.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.Reader": "4.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Threading.Tasks.Dataflow": "4.6.0",
- "System.Threading.Tasks.Extensions": "4.0.0",
- "System.Threading.Tasks.Parallel": "4.0.1",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10"
+ "Microsoft.DiaSymReader.Native": "1.4.0",
+ "Microsoft.NETCore.DotNetHostPolicy": "1.1.0",
+ "Microsoft.NETCore.Runtime.CoreCLR": "1.1.0",
+ "Microsoft.VisualBasic": "10.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Annotations": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Process": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO.FileSystem.Watcher": "4.3.0",
+ "System.IO.MemoryMappedFiles": "4.3.0",
+ "System.IO.UnmanagedMemoryStream": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Linq.Parallel": "4.3.0",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Net.Requests": "4.3.0",
+ "System.Net.Security": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Reflection.DispatchProxy": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.Reader": "4.3.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Threading.Tasks.Dataflow": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Tasks.Parallel": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
},
"compile": {
"lib/netcoreapp1.0/_._": {}
@@ -1630,25 +1580,25 @@
"lib/netcoreapp1.0/_._": {}
}
},
- "Microsoft.NETCore.DotNetHost/1.0.1": {
+ "Microsoft.NETCore.DotNetHost/1.1.0": {
"type": "package"
},
- "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
+ "Microsoft.NETCore.DotNetHostPolicy/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.DotNetHostResolver": "1.0.1"
+ "Microsoft.NETCore.DotNetHostResolver": "1.1.0"
}
},
- "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
+ "Microsoft.NETCore.DotNetHostResolver/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.DotNetHost": "1.0.1"
+ "Microsoft.NETCore.DotNetHost": "1.1.0"
}
},
- "Microsoft.NETCore.Jit/1.0.4": {
+ "Microsoft.NETCore.Jit/1.1.0": {
"type": "package"
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1657,14 +1607,14 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
+ "Microsoft.NETCore.Runtime.CoreCLR/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Jit": "1.0.4",
+ "Microsoft.NETCore.Jit": "1.1.0",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1"
}
},
- "Microsoft.NETCore.Targets/1.0.1": {
+ "Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1676,25 +1626,25 @@
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
- "Microsoft.VisualBasic/10.0.1": {
+ "Microsoft.VisualBasic/10.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.1/Microsoft.VisualBasic.dll": {}
@@ -1703,19 +1653,18 @@
"lib/netstandard1.3/Microsoft.VisualBasic.dll": {}
}
},
- "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-rc2-final": {
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0-rc2-final",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final",
- "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027",
- "Microsoft.Win32.Registry": "4.0.0-rc2-24027",
- "System.Collections": "4.0.11-rc2-24027",
- "System.Net.Sockets": "4.1.0-rc2-24027",
- "System.Runtime.Loader": "4.0.0-rc2-24027",
- "System.Text.Encoding": "4.0.11-rc2-24027",
- "System.Threading": "4.0.11-rc2-24027"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
+ "Microsoft.Win32.Registry": "4.0.0",
+ "System.Collections": "4.0.11",
+ "System.Net.Sockets": "4.1.0",
+ "System.Runtime.Loader": "4.0.0",
+ "System.Text.Encoding": "4.0.11",
+ "System.Threading": "4.0.11"
},
"compile": {
"lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
@@ -1724,28 +1673,28 @@
"lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
}
},
- "Microsoft.Win32.Primitives/4.0.1": {
+ "Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
- "Microsoft.Win32.Registry/4.0.0": {
+ "Microsoft.Win32.Registry/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
@@ -1761,53 +1710,53 @@
}
}
},
- "NETStandard.Library/1.6.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Console": "4.0.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.Compression.ZipFile": "4.0.1",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/9.0.1": {
@@ -2072,11 +2021,38 @@
"lib/netstandard1.0/Remotion.Linq.dll": {}
}
},
- "runtime.native.System/4.0.0": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "debian.8-x64"
+ }
+ }
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.23-x64"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.24-x64"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2085,18 +2061,18 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Data.SqlClient.sni/4.0.0": {
+ "runtime.native.System.Data.SqlClient.sni/4.3.0": {
"type": "package",
"dependencies": {
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.0.1",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.0.1"
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.3.0",
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.3.0"
}
},
- "runtime.native.System.IO.Compression/4.1.0": {
+ "runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2105,11 +2081,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Http/4.0.1": {
+ "runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2118,11 +2094,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Security/4.0.1": {
+ "runtime.native.System.Net.Security/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2131,11 +2107,31 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2144,7 +2140,79 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1": {
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.13.2-x64"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.42.1-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "rhel.7-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.14.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.10-x64"
+ }
+ }
+ },
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/win7-x64/native/sni.dll": {
@@ -2153,7 +2221,7 @@
}
}
},
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1": {
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/win7-x86/native/sni.dll": {
@@ -2162,10 +2230,10 @@
}
}
},
- "System.AppContext/4.1.0": {
+ "System.AppContext/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.AppContext.dll": {}
@@ -2174,14 +2242,14 @@
"lib/netstandard1.6/System.AppContext.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -2190,30 +2258,30 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.dll": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -2222,17 +2290,17 @@
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
@@ -2241,15 +2309,15 @@
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
}
},
- "System.Collections.NonGeneric/4.0.1": {
+ "System.Collections.NonGeneric/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -2258,16 +2326,16 @@
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
- "System.Collections.Specialized/4.0.1": {
+ "System.Collections.Specialized/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -2276,10 +2344,10 @@
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.dll": {}
@@ -2288,20 +2356,20 @@
"lib/netstandard1.3/System.ComponentModel.dll": {}
}
},
- "System.ComponentModel.Annotations/4.1.0": {
+ "System.ComponentModel.Annotations/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
@@ -2310,12 +2378,12 @@
"lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
@@ -2324,24 +2392,24 @@
"lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
@@ -2350,30 +2418,30 @@
"lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Console/4.0.0": {
+ "System.Console/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Console.dll": {}
}
},
- "System.Data.Common/4.1.0": {
+ "System.Data.Common/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
@@ -2382,65 +2450,65 @@
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
- "System.Data.SqlClient/4.1.0": {
+ "System.Data.SqlClient/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Data.Common": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Pipes": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Security": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.CodePages": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Data.SqlClient.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Data.Common": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.Pipes": "4.0.0",
- "System.Linq": "4.1.0",
- "System.Net.NameResolution": "4.0.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Security": "4.0.0",
- "System.Net.Sockets": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.CodePages": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "runtime.native.System.Data.SqlClient.sni": "4.0.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Data.SqlClient.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Diagnostics.Contracts/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
@@ -2449,25 +2517,25 @@
"lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
@@ -2503,30 +2571,30 @@
}
}
},
- "System.Diagnostics.Process/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0"
+ "System.Diagnostics.Process/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Diagnostics.Process.dll": {}
@@ -2546,15 +2614,13 @@
}
}
},
- "System.Diagnostics.StackTrace/4.0.1": {
+ "System.Diagnostics.StackTrace/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "1.2.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.IO.FileSystem": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
@@ -2563,46 +2629,45 @@
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
}
},
- "System.Dynamic.Runtime/4.0.11": {
+ "System.Dynamic.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
@@ -2611,38 +2676,38 @@
"lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.dll": {}
}
},
- "System.Globalization.Calendars/4.0.1": {
+ "System.Globalization.Calendars/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
- "System.Globalization.Extensions/4.0.1": {
+ "System.Globalization.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
@@ -2677,36 +2742,37 @@
"lib/netstandard1.0/System.Interactive.Async.dll": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.IO.dll": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.IO.Compression": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.dll": {}
@@ -2722,18 +2788,18 @@
}
}
},
- "System.IO.Compression.ZipFile/4.0.1": {
+ "System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -2742,26 +2808,26 @@
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
- "System.IO.FileSystem/4.0.1": {
+ "System.IO.FileSystem/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1": {
+ "System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -2770,25 +2836,25 @@
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0": {
+ "System.IO.FileSystem.Watcher/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
@@ -2808,22 +2874,22 @@
}
}
},
- "System.IO.MemoryMappedFiles/4.0.0": {
+ "System.IO.MemoryMappedFiles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.IO.UnmanagedMemoryStream": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.IO.UnmanagedMemoryStream": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
@@ -2839,27 +2905,28 @@
}
}
},
- "System.IO.Pipes/4.0.0": {
+ "System.IO.Pipes/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -2875,16 +2942,18 @@
}
}
},
- "System.IO.UnmanagedMemoryStream/4.0.1": {
+ "System.IO.UnmanagedMemoryStream/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
@@ -2893,14 +2962,14 @@
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.dll": {}
@@ -2909,26 +2978,26 @@
"lib/netstandard1.6/System.Linq.dll": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -2937,19 +3006,19 @@
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
}
},
- "System.Linq.Parallel/4.0.1": {
+ "System.Linq.Parallel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Linq.Parallel.dll": {}
@@ -2958,17 +3027,17 @@
"lib/netstandard1.3/System.Linq.Parallel.dll": {}
}
},
- "System.Linq.Queryable/4.0.1": {
+ "System.Linq.Queryable/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Linq.Queryable.dll": {}
@@ -2977,35 +3046,35 @@
"lib/netstandard1.3/System.Linq.Queryable.dll": {}
}
},
- "System.Net.Http/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Http.dll": {}
@@ -3021,23 +3090,23 @@
}
}
},
- "System.Net.NameResolution/4.0.0": {
+ "System.Net.NameResolution/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
@@ -3053,34 +3122,34 @@
}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
- "System.Net.Requests/4.0.11": {
+ "System.Net.Requests/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebHeaderCollection": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Requests.dll": {}
@@ -3096,37 +3165,37 @@
}
}
},
- "System.Net.Security/4.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Security": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Security/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Security": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Security.dll": {}
@@ -3142,27 +3211,27 @@
}
}
},
- "System.Net.Sockets/4.1.0": {
+ "System.Net.Sockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
- "System.Net.WebHeaderCollection/4.0.1": {
+ "System.Net.WebHeaderCollection/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
@@ -3171,13 +3240,13 @@
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
- "System.Net.WebSockets/4.0.0": {
+ "System.Net.WebSockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
@@ -3186,13 +3255,13 @@
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
- "System.Numerics.Vectors/4.1.1": {
+ "System.Numerics.Vectors/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
@@ -3201,14 +3270,14 @@
"lib/netstandard1.0/System.Numerics.Vectors.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.ObjectModel.dll": {}
@@ -3217,32 +3286,32 @@
"lib/netstandard1.3/System.ObjectModel.dll": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.dll": {}
}
},
- "System.Reflection.DispatchProxy/4.0.1": {
+ "System.Reflection.DispatchProxy/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
@@ -3251,14 +3320,14 @@
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
}
},
- "System.Reflection.Emit/4.0.1": {
+ "System.Reflection.Emit/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
@@ -3267,12 +3336,12 @@
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -3281,13 +3350,13 @@
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
+ "System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -3296,36 +3365,37 @@
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Extensions.dll": {}
}
},
- "System.Reflection.Metadata/1.3.0": {
+ "System.Reflection.Metadata/1.4.1": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Immutable": "1.2.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
@@ -3334,22 +3404,22 @@
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Primitives.dll": {}
}
},
- "System.Reflection.TypeExtensions/4.1.0": {
+ "System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -3358,14 +3428,14 @@
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
}
},
- "System.Resources.Reader/4.0.0": {
+ "System.Resources.Reader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Resources.Reader.dll": {}
@@ -3374,79 +3444,94 @@
"lib/netstandard1.0/System.Resources.Reader.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.dll": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
- "System.Runtime.Handles/4.0.1": {
+ "System.Runtime.Handles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
@@ -3458,12 +3543,12 @@
}
}
},
- "System.Runtime.Loader/4.0.0": {
+ "System.Runtime.Loader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -3472,13 +3557,13 @@
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.Numerics.dll": {}
@@ -3487,11 +3572,11 @@
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
+ "System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
@@ -3500,16 +3585,16 @@
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "System.Security.Claims/4.0.1": {
+ "System.Security.Claims/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
@@ -3518,27 +3603,32 @@
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
+ "System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "unix"
@@ -3549,20 +3639,20 @@
}
}
},
- "System.Security.Cryptography.Cng/4.2.0": {
+ "System.Security.Cryptography.Cng/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -3578,22 +3668,22 @@
}
}
},
- "System.Security.Cryptography.Csp/4.0.0": {
+ "System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -3609,21 +3699,21 @@
}
}
},
- "System.Security.Cryptography.Encoding/4.0.0": {
+ "System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
@@ -3639,22 +3729,22 @@
}
}
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -3669,16 +3759,16 @@
}
}
},
- "System.Security.Cryptography.Primitives/4.0.0": {
+ "System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
@@ -3687,34 +3777,34 @@
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Cng": "4.2.0",
- "System.Security.Cryptography.Csp": "4.0.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
@@ -3730,10 +3820,10 @@
}
}
},
- "System.Security.Principal/4.0.1": {
+ "System.Security.Principal/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Security.Principal.dll": {}
@@ -3742,23 +3832,23 @@
"lib/netstandard1.0/System.Security.Principal.dll": {}
}
},
- "System.Security.Principal.Windows/4.0.0": {
+ "System.Security.Principal.Windows/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
@@ -3774,32 +3864,32 @@
}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.dll": {}
}
},
- "System.Text.Encoding.CodePages/4.0.1": {
+ "System.Text.Encoding.CodePages/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -3815,28 +3905,28 @@
}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -3845,28 +3935,23 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.dll": {}
@@ -3875,13 +3960,13 @@
"lib/netstandard1.3/System.Threading.dll": {}
}
},
- "System.Threading.Overlapped/4.0.1": {
+ "System.Threading.Overlapped/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -3897,31 +3982,31 @@
}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Tasks.dll": {}
}
},
- "System.Threading.Tasks.Dataflow/4.6.0": {
+ "System.Threading.Tasks.Dataflow/4.7.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
@@ -3930,12 +4015,12 @@
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
@@ -3944,17 +4029,17 @@
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
}
},
- "System.Threading.Tasks.Parallel/4.0.1": {
+ "System.Threading.Tasks.Parallel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
@@ -3963,10 +4048,10 @@
"lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
}
},
- "System.Threading.Thread/4.0.0": {
+ "System.Threading.Thread/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Thread.dll": {}
@@ -3975,11 +4060,11 @@
"lib/netstandard1.3/System.Threading.Thread.dll": {}
}
},
- "System.Threading.ThreadPool/4.0.10": {
+ "System.Threading.ThreadPool/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
@@ -3988,35 +4073,35 @@
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -4025,21 +4110,21 @@
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -4115,9 +4200,9 @@
"dependencies": {
"ApplicationParts.Models": "1.0.0",
"ApplicationParts.Services": "1.0.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "NETStandard.Library": "1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"netstandard1.6/ApplicationParts.Controllers.dll": {}
@@ -4130,9 +4215,9 @@
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "NETStandard.Library": "1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"netstandard1.6/ApplicationParts.Models.dll": {}
@@ -4145,7 +4230,7 @@
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "NETStandard.Library": "1.6.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"netstandard1.6/ApplicationParts.Services.dll": {}
@@ -4156,7 +4241,7 @@
}
},
".NETFramework,Version=v4.5.1": {
- "Libuv/1.9.0": {
+ "Libuv/1.9.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
@@ -4196,13 +4281,15 @@
}
}
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -4211,15 +4298,16 @@
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Net.Http"
@@ -4231,12 +4319,13 @@
"lib/net451/Microsoft.AspNetCore.Authentication.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
@@ -4245,11 +4334,12 @@
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
@@ -4258,13 +4348,14 @@
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
@@ -4273,8 +4364,11 @@
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
},
@@ -4282,10 +4376,11 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
@@ -4294,15 +4389,16 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Security",
@@ -4316,8 +4412,11 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
},
@@ -4325,18 +4424,19 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Reflection.Metadata": "1.3.0"
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Diagnostics.dll": {}
@@ -4345,10 +4445,10 @@
"lib/net451/Microsoft.AspNetCore.Diagnostics.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -4357,11 +4457,12 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Configuration",
@@ -4374,23 +4475,23 @@
"lib/net451/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.dll": {}
@@ -4399,15 +4500,16 @@
"lib/net451/Microsoft.AspNetCore.Hosting.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -4416,11 +4518,12 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -4429,12 +4532,11 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -4443,15 +4545,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
@@ -4460,11 +4563,13 @@
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -4473,13 +4578,14 @@
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -4488,10 +4594,11 @@
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -4500,12 +4607,13 @@
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {}
@@ -4514,12 +4622,13 @@
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {}
}
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
+ "Microsoft.AspNetCore.Identity/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Identity.dll": {}
@@ -4528,11 +4637,12 @@
"lib/net451/Microsoft.AspNetCore.Identity.dll": {}
}
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Identity": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0"
+ "Microsoft.AspNetCore.Identity": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
@@ -4541,36 +4651,27 @@
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "9.0.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
@@ -4579,19 +4680,20 @@
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
@@ -4600,11 +4702,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -4613,10 +4716,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -4625,20 +4729,22 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -4647,11 +4753,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -4660,11 +4767,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.ComponentModel.DataAnnotations"
@@ -4676,11 +4784,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -4689,13 +4798,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -4704,13 +4814,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -4719,12 +4830,13 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -4733,13 +4845,15 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -4748,18 +4862,19 @@
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0"
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -4768,8 +4883,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
},
@@ -4777,11 +4895,40 @@
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Design/1.1.0-preview4-final": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
+ "Microsoft.Extensions.CommandLineUtils": "1.0.0",
+ "Microsoft.Extensions.DependencyInjection": "1.0.0",
+ "Newtonsoft.Json": "9.0.1"
+ },
+ "frameworkAssemblies": [
+ "System.Runtime"
+ ],
+ "compile": {
+ "lib/net451/Microsoft.AspNetCore.Razor.Design.exe": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNetCore.Razor.Design.exe": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win7-x64/lib/net451/Microsoft.AspNetCore.Razor.Design.exe": {
+ "assetType": "runtime",
+ "rid": "win7-x64"
+ },
+ "runtimes/win7-x86/lib/net451/Microsoft.AspNetCore.Razor.Design.exe": {
+ "assetType": "runtime",
+ "rid": "win7-x86"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Xml",
@@ -4794,40 +4941,41 @@
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview2-final": {
+ "Microsoft.AspNetCore.Razor.Tools/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
+ "Microsoft.AspNetCore.Razor.Design": "1.1.0-preview4-final",
"Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121",
- "Microsoft.Extensions.CommandLineUtils": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "Newtonsoft.Json": "9.0.1"
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0"
},
"compile": {
"lib/net451/dotnet-razor-tooling.exe": {}
},
"runtime": {
"lib/net451/dotnet-razor-tooling.exe": {}
+ }
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "1.1.0"
},
- "runtimeTargets": {
- "runtimes/win7-x64/lib/net451/dotnet-razor-tooling.exe": {
- "assetType": "runtime",
- "rid": "win7-x64"
- },
- "runtimes/win7-x86/lib/net451/dotnet-razor-tooling.exe": {
- "assetType": "runtime",
- "rid": "win7-x86"
- }
+ "compile": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
+ "Microsoft.AspNetCore.Routing/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
@@ -4836,10 +4984,11 @@
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -4848,15 +4997,16 @@
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
@@ -4865,16 +5015,16 @@
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
}
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Numerics.Vectors": "4.1.1",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "Libuv": "1.9.1",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {}
@@ -4883,14 +5033,15 @@
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {}
}
},
- "Microsoft.AspNetCore.StaticFiles/1.0.0": {
+ "Microsoft.AspNetCore.StaticFiles/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.StaticFiles.dll": {}
@@ -4899,12 +5050,14 @@
"lib/net451/Microsoft.AspNetCore.StaticFiles.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -4945,7 +5098,7 @@
"lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"Microsoft.CSharp"
@@ -4973,13 +5126,13 @@
"lib/net451/Microsoft.DotNet.Cli.Utils.dll": {}
}
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
"type": "package",
"compile": {
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
}
},
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
@@ -4998,14 +5151,15 @@
"lib/net451/Microsoft.DotNet.ProjectModel.dll": {}
}
},
- "Microsoft.EntityFrameworkCore/1.0.1": {
+ "Microsoft.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Remotion.Linq": "2.1.1",
- "System.Collections.Immutable": "1.2.0",
+ "System.Collections.Immutable": "1.3.0",
"System.Interactive.Async": "3.0.0"
},
"frameworkAssemblies": [
@@ -5018,47 +5172,26 @@
"lib/net451/Microsoft.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Design/1.0.0-preview2-final": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design.Core": "1.0.0-preview2-final",
- "Microsoft.Extensions.CommandLineUtils": "1.0.0"
- },
- "compile": {
- "lib/net451/_._": {}
- },
- "runtime": {
- "lib/net451/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win7-x64/lib/net451/Microsoft.EntityFrameworkCore.Design.exe": {
- "assetType": "runtime",
- "rid": "win7-x64"
- },
- "runtimes/win7-x86/lib/net451/Microsoft.EntityFrameworkCore.Design.exe": {
- "assetType": "runtime",
- "rid": "win7-x86"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Design.Core/1.0.0-preview2-final": {
+ "Microsoft.EntityFrameworkCore.Design/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational.Design": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational.Design": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
- "lib/net451/Microsoft.EntityFrameworkCore.Design.Core.dll": {}
+ "lib/net451/Microsoft.EntityFrameworkCore.Design.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.EntityFrameworkCore.Design.Core.dll": {}
+ "lib/net451/Microsoft.EntityFrameworkCore.Design.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.1": {
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "1.0.1",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"frameworkAssemblies": [
"System.Data",
@@ -5071,10 +5204,11 @@
"lib/net451/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational.Design/1.0.0": {
+ "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0"
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
@@ -5083,10 +5217,11 @@
"lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.SqlServer/1.0.1": {
+ "Microsoft.EntityFrameworkCore.SqlServer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "1.0.1"
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
@@ -5095,25 +5230,23 @@
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final": {
+ "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "1.0.0-preview2-final"
+ "Microsoft.EntityFrameworkCore.Design": "1.1.0"
},
"compile": {
- "lib/net451/Microsoft.EntityFrameworkCore.Tools.dll": {}
+ "lib/net451/_._": {}
},
"runtime": {
- "lib/net451/Microsoft.EntityFrameworkCore.Tools.dll": {}
+ "lib/net451/_._": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -5122,12 +5255,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -5145,17 +5279,11 @@
"lib/net451/Microsoft.Extensions.CommandLineUtils.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0": {
+ "Microsoft.Extensions.Configuration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
@@ -5164,11 +5292,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -5177,10 +5305,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
@@ -5189,11 +5318,12 @@
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
@@ -5202,11 +5332,12 @@
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -5216,10 +5347,11 @@
"lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "Microsoft.Extensions.Configuration.UserSecrets/1.0.0": {
+ "Microsoft.Extensions.Configuration.UserSecrets/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Json": "1.0.0"
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
@@ -5228,15 +5360,11 @@
"lib/net451/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -5245,16 +5373,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -5263,10 +5386,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -5276,12 +5399,11 @@
"lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -5290,10 +5412,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -5302,11 +5425,12 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -5315,21 +5439,22 @@
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -5338,13 +5463,14 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Localization.dll": {}
@@ -5353,12 +5479,11 @@
"lib/net451/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -5367,12 +5492,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -5381,18 +5506,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -5401,12 +5518,12 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Logging.Console.dll": {}
@@ -5415,10 +5532,11 @@
"lib/net451/Microsoft.Extensions.Logging.Console.dll": {}
}
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Logging.Debug.dll": {}
@@ -5427,8 +5545,11 @@
"lib/net451/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
},
@@ -5436,20 +5557,13 @@
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -5458,8 +5572,11 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
@@ -5467,11 +5584,11 @@
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -5480,12 +5597,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -5494,17 +5612,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -5513,7 +5627,7 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -5522,55 +5636,54 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-rc2-final": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0-rc2-final",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final",
- "Microsoft.NETCore.Platforms": "1.0.1-rc2-24027"
- },
- "compile": {
- "lib/net451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
- },
- "runtime": {
- "lib/net451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
- }
- },
- "NETStandard.Library/1.6.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.0.0"
+ },
+ "compile": {
+ "lib/net451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
+ }
+ },
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/9.0.1": {
@@ -5809,7 +5922,7 @@
"lib/net45/Remotion.Linq.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -5818,7 +5931,7 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -5831,7 +5944,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5843,7 +5956,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
@@ -5852,7 +5965,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5864,36 +5977,7 @@
"lib/net45/_._": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
- "type": "package",
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.ComponentModel.Primitives.dll": {}
- },
- "runtime": {
- "lib/net45/System.ComponentModel.Primitives.dll": {}
- }
- },
- "System.ComponentModel.TypeConverter/4.1.0": {
- "type": "package",
- "dependencies": {
- "System.ComponentModel.Primitives": "4.1.0"
- },
- "frameworkAssemblies": [
- "System",
- "mscorlib"
- ],
- "compile": {
- "ref/net45/System.ComponentModel.TypeConverter.dll": {}
- },
- "runtime": {
- "lib/net45/System.ComponentModel.TypeConverter.dll": {}
- }
- },
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5902,7 +5986,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5914,7 +5998,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
@@ -5923,7 +6007,7 @@
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5935,7 +6019,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5944,7 +6028,7 @@
"lib/net45/_._": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5966,7 +6050,7 @@
"lib/net45/System.Interactive.Async.dll": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5978,7 +6062,7 @@
"lib/net45/_._": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.IO.Compression"
@@ -5990,7 +6074,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -6002,7 +6086,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -6026,7 +6110,7 @@
"lib/net45/_._": {}
}
},
- "System.Net.Http/4.1.0": {
+ "System.Net.Http/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Net.Http"
@@ -6038,7 +6122,7 @@
"lib/net45/_._": {}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6050,7 +6134,7 @@
"lib/net45/_._": {}
}
},
- "System.Numerics.Vectors/4.1.1": {
+ "System.Numerics.Vectors/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
@@ -6059,7 +6143,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6071,7 +6155,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6080,7 +6164,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6089,10 +6173,10 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Metadata/1.3.0": {
+ "System.Reflection.Metadata/1.4.1": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "1.2.0"
+ "System.Collections.Immutable": "1.3.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
@@ -6101,7 +6185,7 @@
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6110,7 +6194,7 @@
"lib/net45/_._": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6119,7 +6203,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6133,7 +6217,16 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6145,7 +6238,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6158,7 +6251,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
@@ -6177,7 +6270,7 @@
}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Numerics"
@@ -6189,19 +6282,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "type": "package",
- "frameworkAssemblies": [
- "System.Runtime.Serialization"
- ],
- "compile": {
- "ref/net45/_._": {}
- },
- "runtime": {
- "lib/net45/_._": {}
- }
- },
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6210,7 +6291,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6219,7 +6300,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -6228,7 +6309,7 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6240,7 +6321,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6253,7 +6334,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -6265,7 +6346,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
@@ -6274,7 +6355,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"compile": {
"ref/net451/_._": {}
@@ -6283,7 +6364,7 @@
"lib/net451/_._": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Xml"
@@ -6295,7 +6376,7 @@
"lib/net45/_._": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Xml.Linq"
@@ -6313,9 +6394,9 @@
"dependencies": {
"ApplicationParts.Models": "1.0.0",
"ApplicationParts.Services": "1.0.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "NETStandard.Library": "1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"net451/ApplicationParts.Controllers.dll": {}
@@ -6328,9 +6409,9 @@
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "NETStandard.Library": "1.6.0"
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"net451/ApplicationParts.Models.dll": {}
@@ -6343,7 +6424,7 @@
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "NETStandard.Library": "1.6.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"net451/ApplicationParts.Services.dll": {}
@@ -6355,12 +6436,12 @@
}
},
"libraries": {
- "Libuv/1.9.0": {
- "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==",
+ "Libuv/1.9.1": {
+ "sha512": "uqX2Frwf9PW8MaY7PRNY6HM5BpW1D8oj1EdqzrmbEFD5nH63Yat3aEjN/tws6Tw6Fk7LwmLBvtUh32tTeTaHiA==",
"type": "package",
- "path": "Libuv/1.9.0",
+ "path": "Libuv/1.9.1",
"files": [
- "Libuv.1.9.0.nupkg.sha512",
+ "Libuv.1.9.1.nupkg.sha512",
"Libuv.nuspec",
"License.txt",
"runtimes/debian-x64/native/libuv.so",
@@ -6373,12 +6454,12 @@
"runtimes/win7-x86/native/libuv.dll"
]
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
- "sha512": "MMevi8HnI5GxtNOS9ZqZLuNafltbngXsOrNqyykFveMWFN5a3AfAB7I0qU77tBS9B/N3boRQuyT9AR0BsCQbaw==",
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
+ "sha512": "6HM8/rsSGAQybSZ9sNP2f0Xqh507OJu3kvqRksXeHUXV72yuwFpnauGkfIMSt+gwPSvyk8qGqZB2m4sKCUomhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Antiforgery/1.0.1",
+ "path": "Microsoft.AspNetCore.Antiforgery/1.1.0",
"files": [
- "Microsoft.AspNetCore.Antiforgery.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Antiforgery.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Antiforgery.nuspec",
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
"lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
@@ -6386,12 +6467,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
]
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
- "sha512": "3af/pZSoaIkZPjGPTlpvIXKDA4NCN6O7++iSO4N2rnKjC5OFHnCX5CLzRxO6721kqovIssRPo84q1HvT4IL6GQ==",
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
+ "sha512": "zapEpMe6NM7S2pNYtR1OMQSHLrDPjRASIt7lktBTt6w6+0ocSxwiIoNyRiBys1VbhGJQnE9jNWjj5VpMJbnB9A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.xml",
@@ -6399,12 +6480,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.xml"
]
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
- "sha512": "zWhEmMwAqLnQIn3eWGlfioBkKngLB/cEqhqw+jAPPrelH8nNNCnHKIoC6ZQf5oSPmpTX9vZU7XEOrpXHFxSQGw==",
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
+ "sha512": "0u+Aj0a8PmqUcU0A3ugWH1lE/8jBiww5zjCHTw5RZCTRc6/0M/AVxENDUXcBJXxsVAIkTUXi6iKY8zhFmvLWcw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.Cookies/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.Cookies/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.Cookies.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.Cookies.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.Cookies.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.xml",
@@ -6412,12 +6493,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.xml"
]
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
- "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==",
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
+ "sha512": "dqveE6pqsnzkab2vw+aFExFYeCikF/T+GKZW9ki8dwJuN7M2+jJcgWtYAv83q7NjBARVh2xH8xf0ahzeuXL/WQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authorization/1.0.0",
+ "path": "Microsoft.AspNetCore.Authorization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authorization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authorization.nuspec",
"lib/net451/Microsoft.AspNetCore.Authorization.dll",
"lib/net451/Microsoft.AspNetCore.Authorization.xml",
@@ -6425,12 +6506,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
]
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
- "sha512": "fC8lWOU3+ltkbgQyD1P7eRQ66fGfZkPNU2UkwOI8tyF5FUsd8nRTfzvsO4mSyQfgmgfk2Hc8TGzx/okevZwXkg==",
+ "Microsoft.AspNetCore.Cors/1.1.0": {
+ "sha512": "GtBPVpgjHIO8R+0xXyh9BHTYq4+XKpwfuy9Uo2Iza4mYzfQI06CsJh5p+qkjIxQzroIXN5XNGNnVS9dURR0zBA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cors/1.0.0",
+ "path": "Microsoft.AspNetCore.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cors.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Cors.xml",
@@ -6438,12 +6519,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
- "sha512": "0btvxwOqYNpKTUQrD7LA3p6Wi0vrhfWGBVqIKPS1KtEdkCv3QoVgFO4eJYuClGDS9NXhqk7TWh46/8x8wtZHaw==",
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
+ "sha512": "Oy0pgxQkusvQwIrwbHvGVZhwk59qRVKxcer6HsWw0jCEq2LoQ7mj7x7DovE5ub8UvffLYWx77NMF5uwPtkl8KA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.Internal/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.Internal.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.Internal.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.Internal.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
@@ -6451,12 +6532,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
- "sha512": "OUBTk5RS7b3+Q9Z7F1jAL9JzdWlkITNpUw8EO5Yu1sP4Rq2jaidXKLiEw7oKFbD1Wmcee2s+U/UyHQfy/og7Sw==",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
+ "sha512": "cVlVvsH4/9G6AjrlXVO6unCzuFHnDCGRhPJNufOCclxpwImZUdhi+EIh09gSaCJ55gme2/Vn0ycig0cF9gKcbg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.KeyDerivation.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.KeyDerivation.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
@@ -6464,12 +6545,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml"
]
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
- "sha512": "gt4URT+8ljPk0ePspLqOGPJBm+s6iMvsZqweplhf7wiZSjFiG1uYBNpQ/0dFY7wSx3NMRjekyXzCjvkGAV570g==",
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
+ "sha512": "wu8pk94CExaLvwwDSnXkTtsdL8mRxbLH8uCKbbPqbtIstSM6bOw/454OvOYKf61BB+It//ItJJYdZTy2j8Kelw==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.xml",
@@ -6477,12 +6558,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
]
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
- "sha512": "h5ycDgkqmRdManmYMQVJgzNI7YtVp2X2/os1cKmdfrpfq+m9L8bMKhbd7PCksoLci+aYTOSn45khPl+hpPb9ug==",
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
+ "sha512": "WW6qKPh9A5lNh/bFlXIMttlbLmm2K0O3kyZuFIlL4ShOMyhrJeCHoWPWQ+S5eUBdcuOnd9sPwhlmI5Nvb3NjMA==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
@@ -6490,12 +6571,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics/1.0.0": {
- "sha512": "nGmsbmax1PsMyOzeE+4UyA7dZZ4SlRa5j4eMbt1HArvUaec3Z7ldb7fASyCrC/tlpfKf9Jeruv1qy+yGyjUeQw==",
+ "Microsoft.AspNetCore.Diagnostics/1.1.0": {
+ "sha512": "7UE18ZDvn41VDLVcArv+Wb2CtwmjnPZZNFLIOBUkdffwoDfVh5llfG7e7auKjLPh6GmwB183kWMENUokxEf1gg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.nuspec",
"lib/net451/Microsoft.AspNetCore.Diagnostics.dll",
"lib/net451/Microsoft.AspNetCore.Diagnostics.xml",
@@ -6503,23 +6584,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
- "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
+ "sha512": "OTLXdoqnhxGzjBewpKiil8C8RzaLMCiWjGDIkr/5kdTNhD0LGT1Dobqprqbg9nKpS99ykJisOguFDTtxpoeSFg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0": {
- "sha512": "2GE71Fc6RtjL3w+sydgaWMiGrZJfwbCcy+OZR2ax8jpzdO9E/BzXCRquMUrwP9VinTUk0NKe8b8r/6dAtg2uBA==",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0": {
+ "sha512": "vpbsk4zX7u0gvmAfdHB1E0oQXLKBouOqRXVllIQbUlo0OIzChXysOJlgvwxkepCRgP5TcF+81D19/6cHnkZ8lQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll",
"lib/net451/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml",
@@ -6527,25 +6608,27 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml"
]
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
- "sha512": "0M7ZRAxTmGHOQV3B5Lm30VBg33uxxkPIKAxMc/C9yFBMPWPfk6V1uvb2ZL5eEPlo9/MZooITyMcGBQUHiakFjg==",
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
+ "sha512": "yNiCwtCi1mYfTjLyHWQt4A3QRd84ok8XxuTP4wSnr6aT3bIzI7upstGe7diaEDirmku10qnISC/8CsMTG4xd4w==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.xml",
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll",
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml"
+ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml",
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll",
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
- "sha512": "8r6qOl1jYyC523ZKM1QNl+6ijIoYWELWm0tpEWqtTIOg9DytHJWshB7usgqiuRmfHXM0EUziR6ouFY7iP7Tuzw==",
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
+ "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
@@ -6553,12 +6636,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
- "sha512": "sHZyhQEoW15T9E36rfdm5Ux6a6RZB0KNM79ccf2IplWASqmlRGhX4ydU3dzQRLhkHpLx16fnWOL0KScsO6BevQ==",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
+ "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
@@ -6566,23 +6649,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
- "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==",
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
+ "sha512": "+zN+RCEAJwzeFfsGIRkNn7NQ0/hrLEKHeKQNegqMRTr42JhuJZfPE+Negz7W/WkgFB3ZQQd9QTth9I3BDlsHzQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Html.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Html.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Html.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http/1.0.0": {
- "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==",
+ "Microsoft.AspNetCore.Http/1.1.0": {
+ "sha512": "N5ejgXmkUH/CQA+lz18HQb9cDZdA365Tm128yYyP34N46uiR9NswEDravug2DXrRiTo+2hOwPT1Tvby3Cdf6lQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http/1.0.0",
+ "path": "Microsoft.AspNetCore.Http/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.dll",
"lib/net451/Microsoft.AspNetCore.Http.xml",
@@ -6590,12 +6673,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
]
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
- "sha512": "OJHlqdJOWKKBfsiVdX4Z4KCNuqvBIu6+1MVKuejRDyHnGyMkNHNoP/dtVzhPqvJXaJg9N4HlD0XNc6GDCFVffg==",
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
+ "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
@@ -6603,12 +6686,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
- "sha512": "GlvCPRpnw2jjHLdbGf/C28NQZLMeX1mugv5BS1a3FCQOJYyuwQZil4JwblR0frLyVrUVoJQ7UXRNZIzEVlO5XA==",
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
+ "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Extensions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Extensions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Extensions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
@@ -6616,12 +6699,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
]
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
- "sha512": "6x7zgfbTo1gL9xMEb7EMO2ES/48bqwnWyfH09z+ubWhnzxdhHls8rtqstPylu5FPD9nid6Vo2pgDm5vufRAy5Q==",
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
+ "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Features/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Features.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Features.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Features.dll",
"lib/net451/Microsoft.AspNetCore.Http.Features.xml",
@@ -6629,12 +6712,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
]
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
- "sha512": "gHpdaaAzhaTWJZuJVo3ler2zzdQWrm8wnsoSjcNtoZZdTOkwImndRwK8o4GYoM18dfmfNheM7i4EENI7XHM/lA==",
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
+ "sha512": "nvNbiYTQZhOWIT9zjhbzIMJTRwcJXGx8DqzMRKcrlGeRNG9ysa3M/hEBrxAp8NKIJeVtnp/n46MhLgmx0CLJWw==",
"type": "package",
- "path": "Microsoft.AspNetCore.HttpOverrides/1.0.0",
+ "path": "Microsoft.AspNetCore.HttpOverrides/1.1.0",
"files": [
- "Microsoft.AspNetCore.HttpOverrides.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.HttpOverrides.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.HttpOverrides.nuspec",
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll",
"lib/net451/Microsoft.AspNetCore.HttpOverrides.xml",
@@ -6642,12 +6725,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.xml"
]
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
- "sha512": "qQXsxDocbx3xMPBVBZ2Es6vw5QalV+z9mGXUPbn/XRbjY1viwQjVToE7BrCanqr7q97ds0ciI2AgQhvny0kkqw==",
+ "Microsoft.AspNetCore.Identity/1.1.0": {
+ "sha512": "M2W5Y0Nd1GLY0M4TYph6zptPp7dhdrMALx1CP4g8iCU5G148j2rRTwMd3o5699+8M8Brtx5cOGiSThadVFKMuQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Identity/1.0.0",
+ "path": "Microsoft.AspNetCore.Identity/1.1.0",
"files": [
- "Microsoft.AspNetCore.Identity.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Identity.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Identity.nuspec",
"lib/net451/Microsoft.AspNetCore.Identity.dll",
"lib/net451/Microsoft.AspNetCore.Identity.xml",
@@ -6655,12 +6738,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.xml"
]
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
- "sha512": "+TX5cTpqRqqjWRHM0BHM02pLv0a5jo+Ai73aLQKKqZOZT/GJgvIyTM1sLeY2ybbfNaEzps8AMFb0r3KzRY11yA==",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
+ "sha512": "ZFZmB6PxNw2dnER96m6iTVLaG5SWH/95reGVgGzwwATxRMzIEMmFdRWNCgSpKUdHsPEyDg9Xd9FLRHFiQsG9jw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0",
+ "path": "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
@@ -6668,23 +6751,25 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml"
]
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
- "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==",
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
+ "sha512": "/mADp5Q1I3oeptoCF8mmAFDMGvlDCLSBatsKCXxk5vQYZUyzOLxoiHgW5QowgIdwnd3AHPmFDib5vm8U2B6q7g==",
"type": "package",
- "path": "Microsoft.AspNetCore.JsonPatch/1.0.0",
+ "path": "Microsoft.AspNetCore.JsonPatch/1.1.0",
"files": [
- "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.JsonPatch.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.JsonPatch.nuspec",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml"
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.xml"
]
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
- "sha512": "DF/maMd9f6ZPoTlU8n6/AGm3fpZNPiiip34bPrBQuloX2a5O0KwyV72qKhJhJNqmVVnDnTu8XYT16ysoFXRxQA==",
+ "Microsoft.AspNetCore.Localization/1.1.0": {
+ "sha512": "Px52xLst9/G4dyGt3fSTIZU3aZoz0IOVoInW/M1WRCOM5DzCkLzPYXOHMpQkc8ZVx7YZmHnB8p9IrvNNyjPO6A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Localization/1.0.0",
+ "path": "Microsoft.AspNetCore.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Localization.xml",
@@ -6692,12 +6777,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
- "sha512": "Perrv2s4hzMbYR/kanzUqcfzxXLo6CThoilhMg7UQXeXEvOtpbDKx0HGimN/pt6Dy2wt3WOQAjAiM1Z8KoRgaA==",
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
+ "sha512": "TDcIjBQRfYAkbcvlU+lMHC0RpuTTSzULEdA0+HvoGgHz6y0Q4wo8CEAWpaRjvt3y3mneuq56d6CReMleFDDd5Q==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.xml",
@@ -6705,12 +6790,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
- "sha512": "Xa9XOA/NEIGSUSyAtc0rQrTRJKcxN8rzvBy0QJn2tRAXVeXc0Lbx4/1ia9kxyn3ygbjhF6bO90ZnC3Z3a2cq5g==",
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
+ "sha512": "r0OA3N1Onua8AcTtFYpK03K3WdwJBL3iFW4XzfMA49ZmAKGf1ARAlrt6Q8WCdBI7nFDJCc1/bdMJ0ozWaq9rhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Abstractions.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
@@ -6718,12 +6803,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
- "sha512": "ntjDDV+g6eveL67fsvGIY7BqZmaR2XYlZpsrXxzjSWKSYBzDfWaUJna5dsPty0hOwz7DCMNbWYrpD+XEr+H0jA==",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
+ "sha512": "cS2ZVqnh9Db3JU5zgw0SRKSYJ/0aYfLDeYRpgJGwjwMsMNa9pw4JK1H3NLkhs7zRAtoet6asXMEZwqFtO/STbw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ApiExplorer.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ApiExplorer.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
@@ -6731,12 +6816,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
- "sha512": "TfUFH0HYbL3DCGkWE24gUDnHoa3pCr4b6xbUiQTnqIbIXdL79qW8mTtfD+RHmAN5bsf1J1fndJJ84/jKri+kiw==",
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
+ "sha512": "6Gxoe6MJPbc9yVx7IEkDlzfNRzQ+JSvlVmFvugoNbpWAefU2F8d76aj7oiGewucXVI8c7oZ1Q0+rx7059j7/fA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Core/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Core/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Core.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Core.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Core.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
@@ -6744,12 +6829,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
- "sha512": "s3Pabc4x5K1xtCpNv/oVAuFyj2Lq+z+qYkmrRqbnqVt+8V39FoW3znPjbVCNu5CjrYSQL2fm3irJ3pM7WLsI/g==",
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
+ "sha512": "0E+RHtEsYwzkbXvLVC81Vu8Mtp24BC9RMuN8RGjeWzwRHDeZaY9erGtoei/2GiFj+3DpqvCzFsRhKp/yVCzrOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Cors/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Cors.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.xml",
@@ -6757,12 +6842,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.xml"
]
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
- "sha512": "y3QkHvOI+vopfhncU9NpUH2MvtZ2Z0EfnApb92jqbmfWL1wd5Np3SHrFSXgI4zVLlM38dMa/QU2SYM3e4T7fFQ==",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
+ "sha512": "kV7IfXeoehKpX0zPrjZ/B1RKnHSKQfmOnXKxupGXuNY64Ly2JgJh+XAxPLQtYy2jUIwRG3PWNhVkWZIazq82wg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
@@ -6770,12 +6855,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
- "sha512": "wM12hSUlF0Eqed44psOYT4fY/RRjMx049A4bBUfqiGr1UFU54zTR8djRLW0dIp1w7Xv5WQ/bgG9jyqiaRbv6jg==",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
+ "sha512": "NHPfvDnqA21/2pa5Uxe7vfO2sZ1sTafSR/L1pGhQxjTUnVQ2k0X3M3wFKPpM9UH9co9Bx3KjV0AcurbfEaCQvA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
@@ -6783,12 +6868,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
- "sha512": "s6Q7l9UtJ/sYxvsbjXuA+5RdKQ70OSLQSLs+UAWrwMtHm9XKTr51gmcG1t1gkWN5f39WSkzJs2brB9fJkFcgvw==",
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
+ "sha512": "XDLAPLW5hdkO8h6Ki4Du/Dw5NUfIsiDDoyaHkzDL5gX5TxOot0bdw/QClIQ65SJqpjuvIZxZXrJV/MFDKwjZ2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Localization/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Localization.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.xml",
@@ -6796,12 +6881,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
- "sha512": "Rc1dkP5LZcuxicrmUTFMfrRF8+id9iVSOA3/DjhO036b7g7BBvknLHKtbbsQ59COB9D8fr9MwKF2Eb99TSCJvg==",
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
+ "sha512": "GKfZhs4I14auXrlOcUHyHVx1zOLt3MeVw2KcABFD8Y8jyVOELj/mnIucREBG73Us4HcT127qenBFkdkz6F/SOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.xml",
@@ -6809,12 +6894,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
- "sha512": "7A9D7ufew8iYmhK/3w05ZdTGGOi9oNzAqy0BJNNF2rm2n9uImquzPmmoCWXFnar7QawVzhXE+ZMSXRUH9n6Glg==",
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
+ "sha512": "9Qi+KEVkmGfXXjfsciKRVJU/EOVm2AYMZuaDiFCJslEll/OTzXnTlKerj4jFbxB3PB1VRqwPL/HIawRGUouruA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.Host.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.Host.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.Host.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.xml",
@@ -6822,12 +6907,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.xml"
]
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
- "sha512": "QadZAsqoIc2D5zceTdLtNnyJALkdhoTIiqvlDlO0SgyPBisyUe4gDEiygwSnLzm8NZ+kKSFhNuX+t+b1O2uIVw==",
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
+ "sha512": "qQz5KEv097INfR7T9Q9kiEi2MY3jdGthU9XW5N6UFrHgFGjMZwra/oCyu/9DsTueW+4zk0cCo5SCneXwHR9uRA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.TagHelpers.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.TagHelpers.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.TagHelpers.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
@@ -6835,12 +6920,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
- "sha512": "1zGeF76JEqvocxdM+H5n/vJunUUVNzKK4LmgnaFdrrCDTrI6MVdok+8TBBUbeI+uNk3ssrLnP3EcHIdvxl66gw==",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
+ "sha512": "Odd9+gRi4DCH3RalGZEdS0xLRcUh8LV9UTCnOVjGwotI1i6Fk2VSxtkAxrVRMd44BL0WfRqJFiTkCixxA2zFig==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
@@ -6848,12 +6933,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
]
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
- "sha512": "+vhlFn8n45hj1M91HYVm2ryLMZ+ZYR/OUdBVE8aUzkvkTVF+3UnNxSY3hAEugcgcbf9/XQTE+DDxEgN4LdYEjg==",
+ "Microsoft.AspNetCore.Razor/1.1.0": {
+ "sha512": "hChh+W6UG0C8aink3KWuX7flFuAiTPrCBfh68fbRJ1sLPk0ELmj6c3zm+VgNXaHEh2OpT/O0eN5XpS1rQ/FcbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Razor.xml",
@@ -6861,12 +6946,28 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.xml"
]
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
- "sha512": "hsq6xJeqDDb78akZuy79QE3kaCxcigD3vccbIaNrrz7JSXOzayfteF06ToK+J1SXSDRtrBj3XZZfrjiqIY/vCw==",
+ "Microsoft.AspNetCore.Razor.Design/1.1.0-preview4-final": {
+ "sha512": "30zfJaiVGlFK4AlYvddJ7dysfwryfGkAYEYm760VEiKdCJ2kRrx0rlDWYDolWvr9Oh2A8iqSGwDwtVCG4W4qhA==",
+ "type": "package",
+ "path": "Microsoft.AspNetCore.Razor.Design/1.1.0-preview4-final",
+ "files": [
+ "Microsoft.AspNetCore.Razor.Design.1.1.0-preview4-final.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.Design.nuspec",
+ "lib/net451/Microsoft.AspNetCore.Razor.Design.exe",
+ "lib/net451/Microsoft.AspNetCore.Razor.Design.xml",
+ "lib/netcoreapp1.0/Microsoft.AspNetCore.Razor.Design.dll",
+ "lib/netcoreapp1.0/Microsoft.AspNetCore.Razor.Design.runtimeconfig.json",
+ "lib/netcoreapp1.0/Microsoft.AspNetCore.Razor.Design.xml",
+ "runtimes/win7-x64/lib/net451/Microsoft.AspNetCore.Razor.Design.exe",
+ "runtimes/win7-x86/lib/net451/Microsoft.AspNetCore.Razor.Design.exe"
+ ]
+ },
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
+ "sha512": "hQW8+DRFHCHmTzviW54umnBfX1vc9bv/390r62k85LQsUd5Lo59QQ+IyD5fe6o9g/h946IF8Yl25wd6dEk7YqA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor.Runtime/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor.Runtime/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.Runtime.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.Runtime.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.Runtime.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.xml",
@@ -6874,28 +6975,39 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.xml"
]
},
- "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview2-final": {
- "sha512": "gUFr7P3hVd7ILgY5Q5AnBHxatElop3kpn7uYX7kPVktvWMkL0HK2DKw66hqYTy5BNz41BTuxCn0Foa7aKwvTVA==",
+ "Microsoft.AspNetCore.Razor.Tools/1.1.0-preview4-final": {
+ "sha512": "elen0GMaXIUZjL7X61V6tvCm64vYw6NL+XDBIUguFXpx3PK4GXvYALLDK8zzjgUVSS0ChYBX3o4Xw20iQwXiJQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview2-final",
+ "path": "Microsoft.AspNetCore.Razor.Tools/1.1.0-preview4-final",
"files": [
- "Microsoft.AspNetCore.Razor.Tools.1.0.0-preview2-final.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.Tools.1.1.0-preview4-final.nupkg.sha512",
"Microsoft.AspNetCore.Razor.Tools.nuspec",
"lib/net451/dotnet-razor-tooling.exe",
"lib/net451/dotnet-razor-tooling.xml",
"lib/netcoreapp1.0/dotnet-razor-tooling.dll",
"lib/netcoreapp1.0/dotnet-razor-tooling.runtimeconfig.json",
- "lib/netcoreapp1.0/dotnet-razor-tooling.xml",
- "runtimes/win7-x64/lib/net451/dotnet-razor-tooling.exe",
- "runtimes/win7-x86/lib/net451/dotnet-razor-tooling.exe"
+ "lib/netcoreapp1.0/dotnet-razor-tooling.xml"
+ ]
+ },
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "sha512": "Mdj0FP6fP44sYaSRmhUBEpOXnN3kykpd0/8e48iEoSybId5x5XreIeDEEhTYF+r/QA7H8Y33fjVR1cP996OgDA==",
+ "type": "package",
+ "path": "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0",
+ "files": [
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.1.1.0.nupkg.sha512",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.nuspec",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
- "sha512": "NvFvRtYHXWjBbXz5/7F7JDNcdhrE+tG1/Q9R6LmMxFgu8tkl1bqtFZQbMy17FYFkmm8Fn/T81blRGE2nxCbDRA==",
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "sha512": "wrD6DOWc4/euIujz7trLrF3zGVMxOGKRPzYl4e2NFOE/uXz95EnNBHkNuN0Xcgx3xVcb08TMxkoFNT3A+WC0XA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing/1.0.0",
+ "path": "Microsoft.AspNetCore.Routing/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.dll",
"lib/net451/Microsoft.AspNetCore.Routing.xml",
@@ -6903,12 +7015,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
]
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
- "sha512": "Ne5CFiD1xCGSHrGICw7PsVnj7gijfkMfsw52AO6ingcUhE01dc87cJPpfGLnY22MIvqn11ECLbNZYmzFp/Rs+A==",
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
+ "sha512": "/kaFZW4AjHPOIMnqXHGl/KdHxUGOVm9z/U0t3JtKmK5OFnsfuLsUIH2QN2PtXNeOm1eh5Ux2XEyg6YRBgXfPgA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Routing.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
@@ -6916,12 +7028,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
- "sha512": "xmn6EivvL4Ymo7LP+Jc49WLcIiYsUiujZo0loEbAg473nY2dIHxcxncpFAKzPf/MzqN0qBtaXEP0igYJ813H3Q==",
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
+ "sha512": "Z/K/RsUUh6Cfc8W+uP0IeXu8NJP/7li+E3ep+u4t9McrDUdJMrfgfBSPC5SrrUkTZjrt9udQS6JLrB6v3b8pag==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.IISIntegration/1.0.0",
+ "path": "Microsoft.AspNetCore.Server.IISIntegration/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.IISIntegration.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.IISIntegration.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.IISIntegration.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll",
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.xml",
@@ -6929,12 +7041,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.xml"
]
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
- "sha512": "GrTVDsRR6j2WrrTuNsZkG1R8aV1UbsA8TKUD+MKVSpXIoEpQNryCT181Zu94CARowQwFQdW4Q1DwfO4FdAhXiQ==",
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
+ "sha512": "PbVYQUVxOwtrl9YCnw8ykXSufELVeEuASYahVh1F7B4LYVtcqwyV5+FhXlJkboGM4ozKMrdhB5w/tlLLcmHxNA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.Kestrel/1.0.1",
+ "path": "Microsoft.AspNetCore.Server.Kestrel/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.Kestrel.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.Kestrel.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.Kestrel.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll",
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.xml",
@@ -6942,12 +7054,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.xml"
]
},
- "Microsoft.AspNetCore.StaticFiles/1.0.0": {
- "sha512": "pXiUBJtpO0fIlGEg/ESykhbIZ2+I+9Y+3qXzN19zZDDF+tD88eATg3A5MHMXu/VmqaROLfvpGJmJ6uOLUGsBVQ==",
+ "Microsoft.AspNetCore.StaticFiles/1.1.0": {
+ "sha512": "6LQh5KChqjtPbHeDy91fvwoupL+dW9PYAOaj6ohULmEnR2c2y+IpsIxHADSDJ42hlJ5oFLG+t/xsdbdwQvEsgQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.StaticFiles/1.0.0",
+ "path": "Microsoft.AspNetCore.StaticFiles/1.1.0",
"files": [
- "Microsoft.AspNetCore.StaticFiles.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.StaticFiles.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.StaticFiles.nuspec",
"lib/net451/Microsoft.AspNetCore.StaticFiles.dll",
"lib/net451/Microsoft.AspNetCore.StaticFiles.xml",
@@ -6955,12 +7067,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.xml"
]
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
- "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==",
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
+ "sha512": "9w3aHPRUAx+1xOTcsZF6AJCS42viNqWeTcgIE1dmlK/G3NCFkes+MVxwvKt9U9pFIomxqRnD+MGRoBeruEKPbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.WebUtilities/1.0.0",
+ "path": "Microsoft.AspNetCore.WebUtilities/1.1.0",
"files": [
- "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.WebUtilities.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.WebUtilities.nuspec",
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
"lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
@@ -6969,7 +7081,7 @@
]
},
"Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
+ "sha512": "jICz4qN7C8Hq8d5UF0LzqeOTqJMuy21cRDCW8N8K3yiojIhQQ+hAwlcUp7yh4gJOcqh7iEWg/5jlZmXbefO00Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
"files": [
@@ -6985,7 +7097,7 @@
]
},
"Microsoft.CodeAnalysis.Common/1.3.0": {
- "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==",
+ "sha512": "hVgAQZDvOO8LpuhAO557wlqwivTSTstAIIknHTK8y62utH9PgdwEey0TDzJRanReEMTFR3bzdvoFXOe2/X6BGw==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Common/1.3.0",
"files": [
@@ -7001,7 +7113,7 @@
]
},
"Microsoft.CodeAnalysis.CSharp/1.3.0": {
- "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==",
+ "sha512": "8fqBJ4I+IH71mTs+F2w9U/UpJz2pbuO+9XicOxN1pUWU6UZlPgRMwS8e+rcnJp5sgz7tXrB2JoCoP3JuKTHBvg==",
"type": "package",
"path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
"files": [
@@ -7017,7 +7129,7 @@
]
},
"Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
- "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==",
+ "sha512": "yfjw7wLtMSV6HjE2/j3vQp+ZtEbR4cMof7cbcWXPah/8XbMVueIS9GOp9HjxWOLTTQWz6uHxeetk36JCeKOR/Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0",
"files": [
@@ -7032,12 +7144,12 @@
"lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml"
]
},
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "Microsoft.CSharp/4.3.0": {
+ "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"type": "package",
- "path": "Microsoft.CSharp/4.0.1",
+ "path": "Microsoft.CSharp/4.3.0",
"files": [
- "Microsoft.CSharp.4.0.1.nupkg.sha512",
+ "Microsoft.CSharp.4.3.0.nupkg.sha512",
"Microsoft.CSharp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7089,6 +7201,22 @@
"ref/xamarinwatchos10/_._"
]
},
+ "Microsoft.DiaSymReader.Native/1.4.0": {
+ "sha512": "6HpEBMxIi9KJHKnF2ISRy3HsxhRYL1/CdnXGBqSWOUE8uaY5gthzStdQdbPVFxsKCNwsYcfRc11RXjLVvGF5bQ==",
+ "type": "package",
+ "path": "Microsoft.DiaSymReader.Native/1.4.0",
+ "files": [
+ "Microsoft.DiaSymReader.Native.1.4.0.nupkg.sha512",
+ "Microsoft.DiaSymReader.Native.nuspec",
+ "build/Microsoft.DiaSymReader.Native.props",
+ "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll",
+ "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll",
+ "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
+ ]
+ },
"Microsoft.DotNet.Cli.Utils/1.0.0-preview2-003121": {
"sha512": "FLXqhQjkjj83Sh0TRlLEyMIMtAhDRJuPRWnDONtnCv5bozk1jPzflLEXYbk2xsnsOMpnYrUvKQbwUKUWyaXuFQ==",
"type": "package",
@@ -7100,15 +7228,15 @@
"lib/netstandard1.6/Microsoft.DotNet.Cli.Utils.dll"
]
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
- "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==",
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "sha512": "Bl6KYfbFSIW3QIRHAp931iR5h01qHjKghdpAtncwbzNUs0+IUZ+XfwkIU0sQsR33ufGvi3u4dZMIYYFysjpHAA==",
"type": "package",
- "path": "Microsoft.DotNet.InternalAbstractions/1.0.0",
+ "path": "Microsoft.DotNet.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.DotNet.InternalAbstractions.1.0.0.nupkg.sha512",
- "Microsoft.DotNet.InternalAbstractions.nuspec",
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll",
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
+ "Microsoft.DotNet.PlatformAbstractions.1.1.0.nupkg.sha512",
+ "Microsoft.DotNet.PlatformAbstractions.nuspec",
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll",
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll"
]
},
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
@@ -7132,12 +7260,12 @@
"lib/netstandard1.6/Microsoft.DotNet.ProjectModel.Loader.dll"
]
},
- "Microsoft.EntityFrameworkCore/1.0.1": {
- "sha512": "bprn1t+6muzkNzh64Art4w20L1FKDFac/Tx4h+4d7Sd9ivRqAaec6MqU700CFo6h6CHjAjWeqzYjQFroCouECQ==",
+ "Microsoft.EntityFrameworkCore/1.1.0": {
+ "sha512": "S00vr6pLeoCMbm1PsXNZIceCAA/TUX83W3f2PcLFLGrx2QnGo5aqhtYjHvBhOVKJXZmt52EKEdORoTZVZ/swww==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.dll",
"lib/net451/Microsoft.EntityFrameworkCore.xml",
@@ -7145,41 +7273,25 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml"
]
},
- "Microsoft.EntityFrameworkCore.Design/1.0.0-preview2-final": {
- "sha512": "RhyjntECuOVsrKjgFog9rv+V7oBsxBNxz5NviF7uHvDDQXLyHH3os/CewQxRNsve114AQH5RX/Bww6qAXlSORQ==",
+ "Microsoft.EntityFrameworkCore.Design/1.1.0": {
+ "sha512": "7hWqxlNYUocjRqljw6yi3bQpEjMyzNSBX+LqsUuo9cFqTu3uv2YVRyRobBmfvnXVNfRxB6EysMmTmhxApPhiNw==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.Design/1.0.0-preview2-final",
+ "path": "Microsoft.EntityFrameworkCore.Design/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.Design.1.0.0-preview2-final.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.Design.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.Design.nuspec",
- "lib/net451/_._",
- "lib/netcore50/_._",
- "lib/netcoreapp1.0/Microsoft.EntityFrameworkCore.Design.dll",
- "lib/netcoreapp1.0/Microsoft.EntityFrameworkCore.Design.runtimeconfig.json",
- "lib/netcoreapp1.0/Microsoft.EntityFrameworkCore.Design.xml",
- "runtimes/win7-x64/lib/net451/Microsoft.EntityFrameworkCore.Design.exe",
- "runtimes/win7-x86/lib/net451/Microsoft.EntityFrameworkCore.Design.exe"
- ]
- },
- "Microsoft.EntityFrameworkCore.Design.Core/1.0.0-preview2-final": {
- "sha512": "H3pHksGErQSEwWyvISlDYMslIXftS4XB2m0AvqBS08ECGHagh27mqm/oIyUetzzRad+C2V0zpguJmR14eMiRaA==",
- "type": "package",
- "path": "Microsoft.EntityFrameworkCore.Design.Core/1.0.0-preview2-final",
- "files": [
- "Microsoft.EntityFrameworkCore.Design.Core.1.0.0-preview2-final.nupkg.sha512",
- "Microsoft.EntityFrameworkCore.Design.Core.nuspec",
- "lib/net451/Microsoft.EntityFrameworkCore.Design.Core.dll",
- "lib/net451/Microsoft.EntityFrameworkCore.Design.Core.xml",
- "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.Core.dll",
- "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.Core.xml"
+ "lib/net451/Microsoft.EntityFrameworkCore.Design.dll",
+ "lib/net451/Microsoft.EntityFrameworkCore.Design.xml",
+ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll",
+ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.xml"
]
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.1": {
- "sha512": "2LZ746BTMSoAHsqsxFAVYVzo/ziS682z2evAxDnwwg1Fw27MuxqEjl38YWz5OE1TchmtEPxWWVcup+sL6rjPXg==",
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
+ "sha512": "5LkSh1GHK/ZbI/2N6YxyofFKaAVe5/RBN38G6UQzOQVgfJxzucpJVyZt1mGHBkJ4yTlr4WQS9Wr3Ppa5X0opbw==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.Relational/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore.Relational/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.Relational.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.Relational.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.Relational.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.dll",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.xml",
@@ -7187,12 +7299,12 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml"
]
},
- "Microsoft.EntityFrameworkCore.Relational.Design/1.0.0": {
- "sha512": "pw4EmGTp5U645is0Lyf0C6yU1uQGHVIZiRyxlDNNrRllL0ZjSFKTShv9qbE+fBpvvvArNp2HhDmP7d6vJAt0Dw==",
+ "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
+ "sha512": "fF0sVEUkoGeJutGIzwnYsJJ9o2hxEGJRpSaCxPq63rhSwn0hBmCwf9ET4QqYqO9Pc6+ODXenAQa095CWzuM4Kg==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.Relational.Design/1.0.0",
+ "path": "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.Relational.Design.1.0.0.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.Relational.Design.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.Relational.Design.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.dll",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.xml",
@@ -7200,12 +7312,12 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.xml"
]
},
- "Microsoft.EntityFrameworkCore.SqlServer/1.0.1": {
- "sha512": "L2G/T2mRUzHN9IrUBh6uz5s0oISR3qmMajAqi+poG1O3swxfxWsvo+dzGcbhyieJN4tT756mw1hzXzfJ8vDx0w==",
+ "Microsoft.EntityFrameworkCore.SqlServer/1.1.0": {
+ "sha512": "3Cg6izj0vvFBG4qenxeUMmFvhdW6bUBH9OqqK1s+f7IvEpgRuxz5vb1e5H15PodzxUziXOLG6je69JMC0Axuig==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.SqlServer/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore.SqlServer/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.SqlServer.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.SqlServer.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.SqlServer.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll",
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.xml",
@@ -7213,46 +7325,46 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.xml"
]
},
- "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final": {
- "sha512": "x+OkqEMERFJY9cAFBZsNPEmZEApAakay2yhE3CD+nyc+HtJDFbyX+spcnOxUjZ2w+YqAdzT6L3DzjlCbRLv9vQ==",
+ "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
+ "sha512": "n7g5JB4YxLYCl32XCmjXEHDF/9J/DSeNYGjxGAzG1xUi/IXOCWd6T3XyEnDXsub7iFDvpB2VgUlh6wHDqmTZgA==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final",
+ "path": "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final",
"files": [
- "Microsoft.EntityFrameworkCore.Tools.1.0.0-preview2-final.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.Tools.1.1.0-preview4-final.nupkg.sha512",
"Microsoft.EntityFrameworkCore.Tools.nuspec",
- "lib/net451/Microsoft.EntityFrameworkCore.Tools.dll",
- "lib/net451/Microsoft.EntityFrameworkCore.Tools.xml",
- "lib/netcore50/_._",
- "lib/netcoreapp1.0/dotnet-ef.dll",
- "lib/netcoreapp1.0/dotnet-ef.runtimeconfig.json",
- "lib/netcoreapp1.0/dotnet-ef.xml",
+ "lib/net451/_._",
+ "lib/netstandard1.3/_._",
"tools/EntityFrameworkCore.PowerShell2.psd1",
"tools/EntityFrameworkCore.PowerShell2.psm1",
"tools/EntityFrameworkCore.psd1",
"tools/EntityFrameworkCore.psm1",
- "tools/OperationHandlers.cs",
+ "tools/Microsoft.EntityFrameworkCore.Tools.dll",
"tools/about_EntityFrameworkCore.help.txt",
"tools/init.ps1",
- "tools/install.ps1"
+ "tools/install.ps1",
+ "tools/net451/ef.exe",
+ "tools/net451/ef.x86.exe",
+ "tools/netcoreapp1.0/ef.dll",
+ "tools/netcoreapp1.0/ef.runtimeconfig.json"
]
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
- "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==",
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
+ "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
]
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
- "sha512": "6+7zTufCnZ+tfrUo7RbIRR3LB0BxwOwxfXuo0IbLyIvgoToGpWuz5wYEDfCYNOvpig9tY8FA0I1uRHYmITMXMQ==",
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
+ "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Memory/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Memory.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Memory.nuspec",
"lib/net451/Microsoft.Extensions.Caching.Memory.dll",
"lib/net451/Microsoft.Extensions.Caching.Memory.xml",
@@ -7273,34 +7385,34 @@
"lib/netstandard1.3/Microsoft.Extensions.CommandLineUtils.xml"
]
},
- "Microsoft.Extensions.Configuration/1.0.0": {
- "sha512": "hR4yYebruRp6qyFnV3RW4qrnEb0J1LnMmQbj50AUA423V8dMs4E3YAohsyRyGBFnpbJ+KKzieSG/n2A6T0klZQ==",
+ "Microsoft.Extensions.Configuration/1.1.0": {
+ "sha512": "iqp8UepCsS902j0kPO/d7hrd9PSyK7l84UFlpqdV8QY+/pMUY5k8wlAIuN6mWdW97HI8a8BJyvjhJbJps2GwZw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration/1.0.0",
+ "path": "Microsoft.Extensions.Configuration/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.xml"
]
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
- "sha512": "nJ+Et/rnDMDmGhxvFAKdN3va7y+YDPICv1nUEP8I4IKgOkWwr/dCZHMqxVhJFrkbW9ux8Kd7erC4mvxfZh0WnA==",
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
+ "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
]
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
- "sha512": "A0yqS98VtPNlFkFI7YBlwkAekUHE/9mMeNc+K4RmgTjCrskuk6pX3LGhDU7aD5CPYc9Px7M2To/2u4xDSnRikg==",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
+ "sha512": "7AWmPQoX4Kx0Kf4VAig5yKbCziHjO6F2povXeToOaWuZnKahi5qXCG7wrWtATFrheOQLfkrqxxLyarTP3J1mnA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
@@ -7308,12 +7420,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.xml"
]
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
- "sha512": "MO7XtmLiqnpgVTX34uzFPvIS7jPmBUGLN0MP5MsYu6CqYTIs90ULjtrV5TegH5mTqKTXWjZRGXL26R6apTyc4w==",
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
+ "sha512": "jZRdMHops4npC8qKFEmqw6QODfA5h50sUYBIyB31DICzYSp+IQyvf5yb1zwW2x1EFuUEMv+aWZi1WDDc7JPdqA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.FileExtensions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.FileExtensions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.FileExtensions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.FileExtensions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.FileExtensions.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll",
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml",
@@ -7321,12 +7433,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.xml"
]
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
- "sha512": "KRyEOe5/Xi3qyDMdEVh++e2pQRsI6C3wzINVExOcu9lOsFmXK/k4qOf244fyo59rnn6s5xKnIW3WbhxWS1hu2w==",
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
+ "sha512": "QmHQbrOoVxXblM2x9NzGPbX3XpQGTCXiO6jZghx4KqUxPfJMS0VgBlgOUnLAz7sJyx3GvhUG6SEX6Xz70dpwDw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Json/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Json/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Json.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Json.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Json.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.Json.dll",
"lib/net451/Microsoft.Extensions.Configuration.Json.xml",
@@ -7334,80 +7446,82 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.xml"
]
},
- "Microsoft.Extensions.Configuration.UserSecrets/1.0.0": {
- "sha512": "2d4ycB89yzoDR40kfoK7iSCrW67mExz4RLm84JFDcgOoMYr1K4vgWjfL2YUjXqjKVNBi6USwhIDkCKXRYWLQ2Q==",
+ "Microsoft.Extensions.Configuration.UserSecrets/1.1.0": {
+ "sha512": "dwnc4zAXjdh+j/T08UXwhfobzQms3Ta0j3mCGOavRsbO5f2PA929kfQTjaMxPDdFZ6MFP0eeEjgPorf3tpTqVw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.UserSecrets/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.UserSecrets/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.UserSecrets.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.UserSecrets.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.UserSecrets.nuspec",
+ "build/netstandard1.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
"lib/net451/Microsoft.Extensions.Configuration.UserSecrets.dll",
"lib/net451/Microsoft.Extensions.Configuration.UserSecrets.xml",
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.UserSecrets.dll",
- "lib/netstandard1.3/Microsoft.Extensions.Configuration.UserSecrets.xml"
+ "lib/netstandard1.5/Microsoft.Extensions.Configuration.UserSecrets.dll",
+ "lib/netstandard1.5/Microsoft.Extensions.Configuration.UserSecrets.xml"
]
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
- "sha512": "zdtkiZNV6LB8xtpmfyUjP/9N9ZCL/ydQ+0bfjun38fbrk+MDEm9M2yeLzRdq+OIt5xExw/KU04wFaVwJ1bhQPg==",
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
+ "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
]
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
- "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==",
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
+ "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
]
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==",
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
+ "sha512": "TG7dJ8GY1Myz9lZ8DJL4i6D05ncJQBi5CjBMXMdJ4edKxaW+vP2DndDd1jJabdMdmVRdGrvybzqkB+A6Df7eDw==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyModel/1.0.0",
+ "path": "Microsoft.Extensions.DependencyModel/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyModel.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyModel.nuspec",
"lib/net451/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
]
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
- "sha512": "4jsqTxG3py/hYSsOtZMkNJ2/CQqPdpwyK7bDUkrwHgqowCFSmx/C+R4IzQ+2AK2Up1fVcu+ldC0gktwidL828A==",
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
+ "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
]
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
- "sha512": "4nbDQfagNr1eILXSFZbTNuAKuZ6SsOyK6ySTMryo67ECi8+EcZBQ12E0aXcxX/aT3v+3pbWSt71NXlEm8tKIxw==",
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
+ "sha512": "S6vQ4HcjYKAmPqyuGNDQ1ILBaTx7SnDvfg/Dby+s55dXNI2WA/blkeIufbDm0MukALsukWya9mdbe7upWj8U5g==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Composite/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Composite/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Composite.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Composite.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Composite.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.xml"
]
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
- "sha512": "Ej5hGWtK3xM9YU+B2O8EdlMcJf5utbDQs9ecnfvwhENQeeNU7iI2jjnRB2d7V6o9SQZmNHPzdPvaNb3PlSMz+Q==",
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
+ "sha512": "ckyGwMGd4v1nE70wZ7ytax+Ef9WHQ6IcE4apLYG4um6Dfcw/Y6QJY0Fcv3Ck9WK/Uj0YMxHnNCZH6MBp6boeEw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Physical/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Physical/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Physical.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Physical.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Physical.nuspec",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.xml",
@@ -7415,36 +7529,36 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml"
]
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
- "sha512": "scXp1Y+hmhQKLe57Z7cSjsAEFtE4zSHHydkg1SpvG56nWwWQVpVcRAbRZsv1qIBR5/vNB4LA9xiOKnvKO/Halg==",
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
+ "sha512": "/NKs5LrUCUARfFbGik/ML5L2YnN33XTf+TUyghjhCzl9HlvLA4l6s3bW+xsbCU0GEmI/MottEEhiDa1dLJJh4A==",
"type": "package",
- "path": "Microsoft.Extensions.FileSystemGlobbing/1.0.0",
+ "path": "Microsoft.Extensions.FileSystemGlobbing/1.1.0",
"files": [
- "Microsoft.Extensions.FileSystemGlobbing.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileSystemGlobbing.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileSystemGlobbing.nuspec",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.xml",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml"
]
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
- "sha512": "nxGoN8o+4clQk103krYRqS5FVVCZc3Tlc09AYj4W8gZ9Q5Jxa2BLW7ss+ogKU/hvNSg2NkJyQTfi9SegGU6ssQ==",
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
+ "sha512": "KAuadrKH0hLZGXfLO/+L6bv4vIeOYpQTjglR5Tu4hm9TJ8sVcPf11qIoU+BXSwalXiaJuazSI9fxbyoIVBsX4A==",
"type": "package",
- "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0",
+ "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0",
"files": [
- "Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Globalization.CultureInfoCache.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Globalization.CultureInfoCache.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml"
]
},
- "Microsoft.Extensions.Localization/1.0.0": {
- "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==",
+ "Microsoft.Extensions.Localization/1.1.0": {
+ "sha512": "1DWqIC1k383XaQ3h+WxyKYmerLHDYH7TY7mDcglylG3Wq+zlX3/UUhUEKO0Ft8RKCLxLh/LhIa9NBvM3cYzLIg==",
"type": "package",
- "path": "Microsoft.Extensions.Localization/1.0.0",
+ "path": "Microsoft.Extensions.Localization/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.nuspec",
"lib/net451/Microsoft.Extensions.Localization.dll",
"lib/net451/Microsoft.Extensions.Localization.xml",
@@ -7452,45 +7566,45 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
]
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
- "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==",
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
+ "sha512": "8KkP9veQupIfAEQFLLQFTo75s2fVKOM9SWeHhdSSUD35uD8DX1zOXAUsuaXwQY8cyt6mSUR5zuUEkgbZXnUKCA==",
"type": "package",
- "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Localization.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging/1.0.0": {
- "sha512": "0mDuASVrd/nMeBYIJSK+9lT3TSmWxUXP/ipVB1pF1ApMN5fqGCckPTNwmOfT4Z9wPkXGnhbwFTGrxZvbzTWxOg==",
+ "Microsoft.Extensions.Logging/1.1.0": {
+ "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
"type": "package",
- "path": "Microsoft.Extensions.Logging/1.0.0",
+ "path": "Microsoft.Extensions.Logging/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
]
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
- "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==",
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
+ "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Abstractions.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
- "sha512": "GN4gFFONP12KbFEG9rNFpXuz6D2Tybcm8+c1wilaQ1eSl9zVX0gVRrKw/YRwxdwbM3eK7nWfRRqJaQPzOjtLnA==",
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
+ "sha512": "MkFjLvtMdYN1g3NesmkeuQ56f/LuQS46PvjhbF1rUoH9L1ZM3/uteuTknVDUryeWlh18oh6ew7Xo9H50KWPAog==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Console/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Console/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Console.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Console.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Console.nuspec",
"lib/net451/Microsoft.Extensions.Logging.Console.dll",
"lib/net451/Microsoft.Extensions.Logging.Console.xml",
@@ -7498,12 +7612,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.xml"
]
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
- "sha512": "V8fP8pGJxieGa1DAYOF1RX+cCGGqdOGNoAQUzxmy27+qNzbHB/cUXc7mCZT72jPZMB4U12zSVWlIt26GMsUIOg==",
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
+ "sha512": "6Kg1PyEbQjd37ZeWkrseJNvb99iUCdXRAjUqFd2zxW9ZCwjn9h+aSC2bMbyERvC+n6lImp053jqRBsotIrMiXw==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Debug/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Debug/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Debug.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Debug.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Debug.nuspec",
"lib/net451/Microsoft.Extensions.Logging.Debug.dll",
"lib/net451/Microsoft.Extensions.Logging.Debug.xml",
@@ -7511,12 +7625,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.xml"
]
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
- "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==",
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
+ "sha512": "8tg7DpFubtj98Lf+N+zpu5VXe9EHCPrqcukpsjC9BSfcnC0Oq8CUZKYUsLScS2pnqEkSNHwuHoWRtJ6xhMO/xg==",
"type": "package",
- "path": "Microsoft.Extensions.ObjectPool/1.0.0",
+ "path": "Microsoft.Extensions.ObjectPool/1.1.0",
"files": [
- "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.ObjectPool.1.1.0.nupkg.sha512",
"Microsoft.Extensions.ObjectPool.nuspec",
"lib/net451/Microsoft.Extensions.ObjectPool.dll",
"lib/net451/Microsoft.Extensions.ObjectPool.xml",
@@ -7524,23 +7638,23 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
]
},
- "Microsoft.Extensions.Options/1.0.0": {
- "sha512": "SdP3yPKF++JTkoa91pBDiE70uQkR/gdXWzOnMPbSj+eOqY1vgY+b8RVl+gh7TrJ2wlCK2QqnQtvCQlPPZRK36w==",
+ "Microsoft.Extensions.Options/1.1.0": {
+ "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
"type": "package",
- "path": "Microsoft.Extensions.Options/1.0.0",
+ "path": "Microsoft.Extensions.Options/1.1.0",
"files": [
- "Microsoft.Extensions.Options.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Options.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Options.dll",
"lib/netstandard1.0/Microsoft.Extensions.Options.xml"
]
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
- "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==",
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
+ "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
"type": "package",
- "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0",
+ "path": "Microsoft.Extensions.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.PlatformAbstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.PlatformAbstractions.nuspec",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
@@ -7548,105 +7662,105 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
]
},
- "Microsoft.Extensions.Primitives/1.0.0": {
- "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==",
+ "Microsoft.Extensions.Primitives/1.1.0": {
+ "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
"type": "package",
- "path": "Microsoft.Extensions.Primitives/1.0.0",
+ "path": "Microsoft.Extensions.Primitives/1.1.0",
"files": [
- "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Primitives.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
]
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
- "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==",
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
+ "sha512": "YnUfcLe/FYL3Mft5HPv7dSSKfZZCZwLG2GQfv3vuxdY4AbWOYLqq/3wIPCNIrgMXvzralWdkESNsb9iw5gKdpg==",
"type": "package",
- "path": "Microsoft.Extensions.WebEncoders/1.0.0",
+ "path": "Microsoft.Extensions.WebEncoders/1.1.0",
"files": [
- "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.WebEncoders.1.1.0.nupkg.sha512",
"Microsoft.Extensions.WebEncoders.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
]
},
- "Microsoft.Net.Http.Headers/1.0.0": {
- "sha512": "1lr92itF1fKR2oEQ6gk1IUsuCgp7UMlf/b1sjlAyuDeUnttj39ra59GQHYpomglJX1UVNpi1/cSBbEsXoNeIhw==",
+ "Microsoft.Net.Http.Headers/1.1.0": {
+ "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
"type": "package",
- "path": "Microsoft.Net.Http.Headers/1.0.0",
+ "path": "Microsoft.Net.Http.Headers/1.1.0",
"files": [
- "Microsoft.Net.Http.Headers.1.0.0.nupkg.sha512",
+ "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
"Microsoft.Net.Http.Headers.nuspec",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
]
},
- "Microsoft.NETCore.App/1.0.1": {
- "sha512": "M3iH7u95LntTkJtI/DqN/96MRlb8Wa0SjnXldxHA4FjlvEqghOhwK087bDZAZaTN9C4YHckvaYH3ka9eYWZZZw==",
+ "Microsoft.NETCore.App/1.1.0": {
+ "sha512": "DFec+OUojDVocn1GxAL9uJg4qwsgkvKiQpv6BKd9ljGezvc9p6GpFv51IIakiujkVW/wBtQ0xlfjVSgS1UG/uw==",
"type": "package",
- "path": "Microsoft.NETCore.App/1.0.1",
+ "path": "Microsoft.NETCore.App/1.1.0",
"files": [
- "Microsoft.NETCore.App.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.App.1.1.0.nupkg.sha512",
"Microsoft.NETCore.App.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netcoreapp1.0/_._"
]
},
- "Microsoft.NETCore.DotNetHost/1.0.1": {
- "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==",
+ "Microsoft.NETCore.DotNetHost/1.1.0": {
+ "sha512": "1xk/a9uXjJWDQqXw8l4067aoNwUfugq4UVQQinlIM2W4posm0+wcW+bi3uKuyufsjG6KBhlCqKuFBqa5DXO6ug==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHost/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHost/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHost.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHost.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
- "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==",
+ "Microsoft.NETCore.DotNetHostPolicy/1.1.0": {
+ "sha512": "xa5FjffmB4QMfWIdwrW1cUKX6UD1VEePyzDcMqV8b/d9onZLJwIamPIRmDpN5lTlvdCnyUOI+5ZqZEjQIqSqxQ==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHostPolicy/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHostPolicy.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHostPolicy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
- "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==",
+ "Microsoft.NETCore.DotNetHostResolver/1.1.0": {
+ "sha512": "xf7RRVJ4M1w1Hg9TTzTH4g+zFqGtu6uXBjpcyy+o5UYrRj44dtJkmlnc1OnoKQFU0pZ8i9C8eNbSeqq/p6n19w==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHostResolver/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHostResolver.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHostResolver.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Jit/1.0.4": {
- "sha512": "IcHTGj+vTFcOu7/flwNg+CWIfTsxqHWgj08MKOtYwS5k0EuLvx6PrYsn7vHCV0SUTk1zbQ1l0EJj1UdxTMyx4w==",
+ "Microsoft.NETCore.Jit/1.1.0": {
+ "sha512": "Zsrh7C1ncfJe1tLGExgHrdal8I0U7qBHeLkpjbxd6M8uPtR8ck+R1Gynyjn01M3VO1Px416WvrJ4rxQFeR3jTQ==",
"type": "package",
- "path": "Microsoft.NETCore.Jit/1.0.4",
+ "path": "Microsoft.NETCore.Jit/1.1.0",
"files": [
- "Microsoft.NETCore.Jit.1.0.4.nupkg.sha512",
+ "Microsoft.NETCore.Jit.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Jit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Platforms/1.0.1": {
- "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==",
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"type": "package",
- "path": "Microsoft.NETCore.Platforms/1.0.1",
+ "path": "Microsoft.NETCore.Platforms/1.1.0",
"files": [
- "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Platforms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7654,24 +7768,24 @@
"runtime.json"
]
},
- "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
- "sha512": "r4/aP7VYcJ+W/rJVFU+jAdjF4KrsHRDYQJ+p8weUP5n65yLzWXlQTVY6OsR560aV5EF7jc65dqsNXIryUCrEkQ==",
+ "Microsoft.NETCore.Runtime.CoreCLR/1.1.0": {
+ "sha512": "dwvlgs9yX8Y1phaXqNJC8qOgEeZfsM8mVB4vprv7OOhttjXoiaiYQAEYa4D4fbiqTjx/gD6/fVPJ/aSmk5byhg==",
"type": "package",
- "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4",
+ "path": "Microsoft.NETCore.Runtime.CoreCLR/1.1.0",
"files": [
- "Microsoft.NETCore.Runtime.CoreCLR.1.0.4.nupkg.sha512",
+ "Microsoft.NETCore.Runtime.CoreCLR.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Targets/1.0.1": {
- "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"type": "package",
- "path": "Microsoft.NETCore.Targets/1.0.1",
+ "path": "Microsoft.NETCore.Targets/1.1.0",
"files": [
- "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Targets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7680,7 +7794,7 @@
]
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
- "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==",
+ "sha512": "jH+MpPZ4afpEBEUxOHuV6kNwIFu21ECEP7UlwcYaM2oORy7mWIm/iJbXSml4Z6ayoIgzc4xHrx8g5tDxzy9Cfw==",
"type": "package",
"path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
"files": [
@@ -7691,12 +7805,12 @@
"runtime.json"
]
},
- "Microsoft.VisualBasic/10.0.1": {
- "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==",
+ "Microsoft.VisualBasic/10.1.0": {
+ "sha512": "jgBfelga8QHZDTtUBtLNgcDPuXzaplCeXLqQcf5qB4jeVdPpX1AtnZnGeHbbi2tmp+P96hgI+KhXbUN567K60Q==",
"type": "package",
- "path": "Microsoft.VisualBasic/10.0.1",
+ "path": "Microsoft.VisualBasic/10.1.0",
"files": [
- "Microsoft.VisualBasic.10.0.1.nupkg.sha512",
+ "Microsoft.VisualBasic.10.1.0.nupkg.sha512",
"Microsoft.VisualBasic.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7706,6 +7820,8 @@
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
+ "ref/MonoAndroid10/Microsoft.VisualBasic.dll",
+ "ref/MonoTouch10/Microsoft.VisualBasic.dll",
"ref/net45/_._",
"ref/netcore50/Microsoft.VisualBasic.dll",
"ref/netcore50/Microsoft.VisualBasic.xml",
@@ -7731,26 +7847,31 @@
"ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
- "ref/wpa81/_._"
+ "ref/wpa81/_._",
+ "ref/xamarinios10/Microsoft.VisualBasic.dll",
+ "ref/xamarintvos10/Microsoft.VisualBasic.dll",
+ "ref/xamarinwatchos10/Microsoft.VisualBasic.dll"
]
},
- "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-rc2-final": {
- "sha512": "NM/mukki+sxjRIg6yve48iD0/Y+bb89vGpAVvFNt8+jUpoVz5JBm03q5T3t+vKFiZNjJUWmwsP8vYATIpbk10Q==",
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.1.0": {
+ "sha512": "iVJCfMpPqZE2QaEAGT5MoEYM65l59rDSNERnZQmJDOiE+itZZ6ZP5wh+Lh9Lv0Nt1SbgvXdN3z39MM435ITldA==",
"type": "package",
- "path": "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-rc2-final",
+ "path": "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.1.0",
"files": [
- "Microsoft.VisualStudio.Web.BrowserLink.Loader.14.0.0-rc2-final.nupkg.sha512",
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader.14.1.0.nupkg.sha512",
"Microsoft.VisualStudio.Web.BrowserLink.Loader.nuspec",
"lib/net451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll",
- "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll"
+ "lib/net451/Microsoft.VisualStudio.Web.BrowserLink.Loader.xml",
+ "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll",
+ "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.xml"
]
},
- "Microsoft.Win32.Primitives/4.0.1": {
- "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"type": "package",
- "path": "Microsoft.Win32.Primitives/4.0.1",
+ "path": "Microsoft.Win32.Primitives/4.3.0",
"files": [
- "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
+ "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
"Microsoft.Win32.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7781,12 +7902,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "Microsoft.Win32.Registry/4.0.0": {
- "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
+ "Microsoft.Win32.Registry/4.3.0": {
+ "sha512": "Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==",
"type": "package",
- "path": "Microsoft.Win32.Registry/4.0.0",
+ "path": "Microsoft.Win32.Registry/4.3.0",
"files": [
- "Microsoft.Win32.Registry.4.0.0.nupkg.sha512",
+ "Microsoft.Win32.Registry.4.3.0.nupkg.sha512",
"Microsoft.Win32.Registry.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7809,12 +7930,12 @@
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
]
},
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
+ "NETStandard.Library/1.6.1": {
+ "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"type": "package",
- "path": "NETStandard.Library/1.6.0",
+ "path": "NETStandard.Library/1.6.1",
"files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
+ "NETStandard.Library.1.6.1.nupkg.sha512",
"NETStandard.Library.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
@@ -8047,107 +8168,253 @@
"lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml"
]
},
- "runtime.native.System/4.0.0": {
- "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "type": "package",
+ "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
"type": "package",
- "path": "runtime.native.System/4.0.0",
+ "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "type": "package",
+ "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "type": "package",
+ "path": "runtime.native.System/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.4.0.0.nupkg.sha512",
+ "runtime.native.System.4.3.0.nupkg.sha512",
"runtime.native.System.nuspec"
]
},
- "runtime.native.System.Data.SqlClient.sni/4.0.0": {
- "sha512": "DcMVtYwugo1LOc9MVchInxlLNoFe/+21MsEQU9yIZX561chzxDlFDWowWF+Kc262PyD3eLkDab1JyJrs73Qtkg==",
+ "runtime.native.System.Data.SqlClient.sni/4.3.0": {
+ "sha512": "rX1bLxiHjj+ivd4bL9RwCvKM7agWHceLrAFsPQryTX0ZZ1J7x6vSz779YgMih0S4yD/GTvr7+dajBVutzJVvBg==",
"type": "package",
- "path": "runtime.native.System.Data.SqlClient.sni/4.0.0",
+ "path": "runtime.native.System.Data.SqlClient.sni/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
- "runtime.native.System.Data.SqlClient.sni.4.0.0.nupkg.sha512",
+ "runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
"runtime.native.System.Data.SqlClient.sni.nuspec"
]
},
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
+ "path": "runtime.native.System.IO.Compression/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512",
+ "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
"runtime.native.System.IO.Compression.nuspec"
]
},
- "runtime.native.System.Net.Http/4.0.1": {
- "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
+ "runtime.native.System.Net.Http/4.3.0": {
+ "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"type": "package",
- "path": "runtime.native.System.Net.Http/4.0.1",
+ "path": "runtime.native.System.Net.Http/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Http.nuspec"
]
},
- "runtime.native.System.Net.Security/4.0.1": {
- "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==",
+ "runtime.native.System.Net.Security/4.3.0": {
+ "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
"type": "package",
- "path": "runtime.native.System.Net.Security/4.0.1",
+ "path": "runtime.native.System.Net.Security/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Security.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Security.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Security.nuspec"
]
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "type": "package",
+ "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.Apple.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
"type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
+ "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.nuspec"
+ "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
+ ]
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "type": "package",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "type": "package",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
+ ]
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "type": "package",
+ "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "type": "package",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1": {
- "sha512": "My20HZqJbDS4rWmdOcJ3TPf9iX6M/sTF2nBSUHBvfWp1iNip3eMS+K65oQgsLRxX6h21ic3YED06c2ye2sL7FQ==",
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
+ "sha512": "j42JRgYOMi6B86attv8F3eDBISh+kzoKxLsu0zaq1ioY+je64chWd8fybvk9yPzayO3Dh1czhmf5B7rbafLRQA==",
"type": "package",
- "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1",
+ "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0",
"files": [
+ "OpenCoreFxSyncInfo.txt",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.0.1.nupkg.sha512",
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
"runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.nuspec",
"runtimes/win7-x64/native/sni.dll"
]
},
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1": {
- "sha512": "ykiYCf/0hIc0xm+g6bVX8nw9St5Ool+r4US+B+56Lv/GFnDG5G9BK4n7WkrwEpuWV3XjMn38oHgHOnNMzBVNKA==",
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
+ "sha512": "4cXRTIcttvIreAoqK/5hzTtzepeggac+m5A0rzH+9zLtnFh2J0rLuGeJR4KjNLyKqPzO0kjqrs5lkRJEKX8HAA==",
"type": "package",
- "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1",
+ "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0",
"files": [
+ "OpenCoreFxSyncInfo.txt",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.0.1.nupkg.sha512",
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
"runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.nuspec",
"runtimes/win7-x86/native/sni.dll"
]
},
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
+ "System.AppContext/4.3.0": {
+ "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
"type": "package",
- "path": "System.AppContext/4.1.0",
+ "path": "System.AppContext/4.3.0",
"files": [
- "System.AppContext.4.1.0.nupkg.sha512",
+ "System.AppContext.4.3.0.nupkg.sha512",
"System.AppContext.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8195,12 +8462,12 @@
"runtimes/aot/lib/netcore50/System.AppContext.dll"
]
},
- "System.Buffers/4.0.0": {
- "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==",
+ "System.Buffers/4.3.0": {
+ "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
"type": "package",
- "path": "System.Buffers/4.0.0",
+ "path": "System.Buffers/4.3.0",
"files": [
- "System.Buffers.4.0.0.nupkg.sha512",
+ "System.Buffers.4.3.0.nupkg.sha512",
"System.Buffers.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8208,12 +8475,12 @@
"lib/netstandard1.1/System.Buffers.dll"
]
},
- "System.Collections/4.0.11": {
- "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"type": "package",
- "path": "System.Collections/4.0.11",
+ "path": "System.Collections/4.3.0",
"files": [
- "System.Collections.4.0.11.nupkg.sha512",
+ "System.Collections.4.3.0.nupkg.sha512",
"System.Collections.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8274,12 +8541,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Concurrent/4.0.12": {
- "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"type": "package",
- "path": "System.Collections.Concurrent/4.0.12",
+ "path": "System.Collections.Concurrent/4.3.0",
"files": [
- "System.Collections.Concurrent.4.0.12.nupkg.sha512",
+ "System.Collections.Concurrent.4.3.0.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8340,12 +8607,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Immutable/1.2.0": {
- "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
+ "System.Collections.Immutable/1.3.0": {
+ "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
"type": "package",
- "path": "System.Collections.Immutable/1.2.0",
+ "path": "System.Collections.Immutable/1.3.0",
"files": [
- "System.Collections.Immutable.1.2.0.nupkg.sha512",
+ "System.Collections.Immutable.1.3.0.nupkg.sha512",
"System.Collections.Immutable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8355,12 +8622,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
]
},
- "System.Collections.NonGeneric/4.0.1": {
- "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"type": "package",
- "path": "System.Collections.NonGeneric/4.0.1",
+ "path": "System.Collections.NonGeneric/4.3.0",
"files": [
- "System.Collections.NonGeneric.4.0.1.nupkg.sha512",
+ "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
"System.Collections.NonGeneric.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8392,12 +8659,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Specialized/4.0.1": {
- "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
+ "System.Collections.Specialized/4.3.0": {
+ "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"type": "package",
- "path": "System.Collections.Specialized/4.0.1",
+ "path": "System.Collections.Specialized/4.3.0",
"files": [
- "System.Collections.Specialized.4.0.1.nupkg.sha512",
+ "System.Collections.Specialized.4.3.0.nupkg.sha512",
"System.Collections.Specialized.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8429,12 +8696,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel/4.0.1": {
- "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
+ "System.ComponentModel/4.3.0": {
+ "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"type": "package",
- "path": "System.ComponentModel/4.0.1",
+ "path": "System.ComponentModel/4.3.0",
"files": [
- "System.ComponentModel.4.0.1.nupkg.sha512",
+ "System.ComponentModel.4.3.0.nupkg.sha512",
"System.ComponentModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8486,12 +8753,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Annotations/4.1.0": {
- "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==",
+ "System.ComponentModel.Annotations/4.3.0": {
+ "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
"type": "package",
- "path": "System.ComponentModel.Annotations/4.1.0",
+ "path": "System.ComponentModel.Annotations/4.3.0",
"files": [
- "System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
"System.ComponentModel.Annotations.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8563,12 +8830,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Primitives/4.1.0": {
- "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
+ "System.ComponentModel.Primitives/4.3.0": {
+ "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"type": "package",
- "path": "System.ComponentModel.Primitives/4.1.0",
+ "path": "System.ComponentModel.Primitives/4.3.0",
"files": [
- "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Primitives.4.3.0.nupkg.sha512",
"System.ComponentModel.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8600,12 +8867,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.TypeConverter/4.1.0": {
- "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"type": "package",
- "path": "System.ComponentModel.TypeConverter/4.1.0",
+ "path": "System.ComponentModel.TypeConverter/4.3.0",
"files": [
- "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
+ "System.ComponentModel.TypeConverter.4.3.0.nupkg.sha512",
"System.ComponentModel.TypeConverter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8651,12 +8918,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"type": "package",
- "path": "System.Console/4.0.0",
+ "path": "System.Console/4.3.0",
"files": [
- "System.Console.4.0.0.nupkg.sha512",
+ "System.Console.4.3.0.nupkg.sha512",
"System.Console.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8687,12 +8954,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Data.Common/4.1.0": {
- "sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==",
+ "System.Data.Common/4.3.0": {
+ "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
"type": "package",
- "path": "System.Data.Common/4.1.0",
+ "path": "System.Data.Common/4.3.0",
"files": [
- "System.Data.Common.4.1.0.nupkg.sha512",
+ "System.Data.Common.4.3.0.nupkg.sha512",
"System.Data.Common.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8736,12 +9003,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Data.SqlClient/4.1.0": {
- "sha512": "yqMZgzzKHdG84QmA/PPZUORaoisfvztvFqyPs7dPafJhNxlS7STf9OMCFrP/tITQCqImkm1+X4d2oiWOT2oTKg==",
+ "System.Data.SqlClient/4.3.0": {
+ "sha512": "XmWg+/uUcME++m/vsRzxq1fo0GvlYzFfZM5fCqIIDT+O7AwDdpfd1LkRXmcxeTJQTCgx5AN3Y3t5qSz5XxQLVw==",
"type": "package",
- "path": "System.Data.SqlClient/4.1.0",
+ "path": "System.Data.SqlClient/4.3.0",
"files": [
- "System.Data.SqlClient.4.1.0.nupkg.sha512",
+ "System.Data.SqlClient.4.3.0.nupkg.sha512",
"System.Data.SqlClient.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8789,12 +9056,12 @@
"runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll"
]
},
- "System.Diagnostics.Contracts/4.0.1": {
- "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
+ "System.Diagnostics.Contracts/4.3.0": {
+ "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
"type": "package",
- "path": "System.Diagnostics.Contracts/4.0.1",
+ "path": "System.Diagnostics.Contracts/4.3.0",
"files": [
- "System.Diagnostics.Contracts.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
"System.Diagnostics.Contracts.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8847,12 +9114,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
]
},
- "System.Diagnostics.Debug/4.0.11": {
- "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
- "path": "System.Diagnostics.Debug/4.0.11",
+ "path": "System.Diagnostics.Debug/4.3.0",
"files": [
- "System.Diagnostics.Debug.4.0.11.nupkg.sha512",
+ "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8913,12 +9180,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
- "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
"type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.0.0",
+ "path": "System.Diagnostics.DiagnosticSource/4.3.0",
"files": [
- "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512",
+ "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
"System.Diagnostics.DiagnosticSource.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8933,7 +9200,7 @@
]
},
"System.Diagnostics.FileVersionInfo/4.0.0": {
- "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==",
+ "sha512": "VtXkqPMWpaXDFEvbuhroVemeTaaU/j6C3yu6rd+JFLg5AvHAZJb8hUpxwJCM7OFrUpeKmv3A7ZTME8hFYWL6pA==",
"type": "package",
"path": "System.Diagnostics.FileVersionInfo/4.0.0",
"files": [
@@ -8972,12 +9239,12 @@
"runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll"
]
},
- "System.Diagnostics.Process/4.1.0": {
- "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
+ "System.Diagnostics.Process/4.3.0": {
+ "sha512": "J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==",
"type": "package",
- "path": "System.Diagnostics.Process/4.1.0",
+ "path": "System.Diagnostics.Process/4.3.0",
"files": [
- "System.Diagnostics.Process.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Process.4.3.0.nupkg.sha512",
"System.Diagnostics.Process.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9027,12 +9294,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Diagnostics.StackTrace/4.0.1": {
- "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==",
+ "System.Diagnostics.StackTrace/4.3.0": {
+ "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
"type": "package",
- "path": "System.Diagnostics.StackTrace/4.0.1",
+ "path": "System.Diagnostics.StackTrace/4.3.0",
"files": [
- "System.Diagnostics.StackTrace.4.0.1.nupkg.sha512",
+ "System.Diagnostics.StackTrace.4.3.0.nupkg.sha512",
"System.Diagnostics.StackTrace.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9065,12 +9332,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
]
},
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "System.Diagnostics.Tools/4.3.0": {
+ "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
+ "path": "System.Diagnostics.Tools/4.3.0",
"files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9120,12 +9387,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Tracing/4.1.0": {
- "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"type": "package",
- "path": "System.Diagnostics.Tracing/4.1.0",
+ "path": "System.Diagnostics.Tracing/4.3.0",
"files": [
- "System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9208,12 +9475,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Dynamic.Runtime/4.0.11": {
- "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "System.Dynamic.Runtime/4.3.0": {
+ "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"type": "package",
- "path": "System.Dynamic.Runtime/4.0.11",
+ "path": "System.Dynamic.Runtime/4.3.0",
"files": [
- "System.Dynamic.Runtime.4.0.11.nupkg.sha512",
+ "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
"System.Dynamic.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9277,12 +9544,12 @@
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
]
},
- "System.Globalization/4.0.11": {
- "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"type": "package",
- "path": "System.Globalization/4.0.11",
+ "path": "System.Globalization/4.3.0",
"files": [
- "System.Globalization.4.0.11.nupkg.sha512",
+ "System.Globalization.4.3.0.nupkg.sha512",
"System.Globalization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9343,12 +9610,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Calendars/4.0.1": {
- "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
+ "System.Globalization.Calendars/4.3.0": {
+ "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"type": "package",
- "path": "System.Globalization.Calendars/4.0.1",
+ "path": "System.Globalization.Calendars/4.3.0",
"files": [
- "System.Globalization.Calendars.4.0.1.nupkg.sha512",
+ "System.Globalization.Calendars.4.3.0.nupkg.sha512",
"System.Globalization.Calendars.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9379,12 +9646,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Extensions/4.0.1": {
- "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"type": "package",
- "path": "System.Globalization.Extensions/4.0.1",
+ "path": "System.Globalization.Extensions/4.3.0",
"files": [
- "System.Globalization.Extensions.4.0.1.nupkg.sha512",
+ "System.Globalization.Extensions.4.3.0.nupkg.sha512",
"System.Globalization.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9431,12 +9698,12 @@
"lib/netstandard1.0/System.Interactive.Async.xml"
]
},
- "System.IO/4.1.0": {
- "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"type": "package",
- "path": "System.IO/4.1.0",
+ "path": "System.IO/4.3.0",
"files": [
- "System.IO.4.1.0.nupkg.sha512",
+ "System.IO.4.3.0.nupkg.sha512",
"System.IO.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9510,12 +9777,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
+ "System.IO.Compression/4.3.0": {
+ "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"type": "package",
- "path": "System.IO.Compression/4.1.0",
+ "path": "System.IO.Compression/4.3.0",
"files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
+ "System.IO.Compression.4.3.0.nupkg.sha512",
"System.IO.Compression.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9579,12 +9846,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
]
},
- "System.IO.Compression.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
"type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
+ "path": "System.IO.Compression.ZipFile/4.3.0",
"files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
+ "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
"System.IO.Compression.ZipFile.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9616,12 +9883,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem/4.0.1": {
- "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"type": "package",
- "path": "System.IO.FileSystem/4.0.1",
+ "path": "System.IO.FileSystem/4.3.0",
"files": [
- "System.IO.FileSystem.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.4.3.0.nupkg.sha512",
"System.IO.FileSystem.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9652,12 +9919,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Primitives/4.0.1": {
- "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"type": "package",
- "path": "System.IO.FileSystem.Primitives/4.0.1",
+ "path": "System.IO.FileSystem.Primitives/4.3.0",
"files": [
- "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9689,12 +9956,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Watcher/4.0.0": {
- "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==",
+ "System.IO.FileSystem.Watcher/4.3.0": {
+ "sha512": "37IDFU2w6LJ4FrohcVlV1EXviUmAOJIbejVgOUtNaPQyeZW2D/0QSkH8ykehoOd19bWfxp3RRd0xj+yRRIqLhw==",
"type": "package",
- "path": "System.IO.FileSystem.Watcher/4.0.0",
+ "path": "System.IO.FileSystem.Watcher/4.3.0",
"files": [
- "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
+ "System.IO.FileSystem.Watcher.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Watcher.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9730,12 +9997,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.IO.MemoryMappedFiles/4.0.0": {
- "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==",
+ "System.IO.MemoryMappedFiles/4.3.0": {
+ "sha512": "mz2JJFxCQLdMzXVOPyVibDKDKFZey66YHgQy8M1/vUCQzMSrbiXhpsyV04vSlBeqQUdM7wTL2WG+X3GZALKsIQ==",
"type": "package",
- "path": "System.IO.MemoryMappedFiles/4.0.0",
+ "path": "System.IO.MemoryMappedFiles/4.3.0",
"files": [
- "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512",
+ "System.IO.MemoryMappedFiles.4.3.0.nupkg.sha512",
"System.IO.MemoryMappedFiles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9770,12 +10037,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
]
},
- "System.IO.Pipes/4.0.0": {
- "sha512": "L9QVhk8hIEix5KNA0kW58Ha+Y1dNGqqqIhAaJkhcGCWeQzUmN0njzI7SG/XAazpMecboOdFFlH3pH/qbwXLJAg==",
+ "System.IO.Pipes/4.3.0": {
+ "sha512": "wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==",
"type": "package",
- "path": "System.IO.Pipes/4.0.0",
+ "path": "System.IO.Pipes/4.3.0",
"files": [
- "System.IO.Pipes.4.0.0.nupkg.sha512",
+ "System.IO.Pipes.4.3.0.nupkg.sha512",
"System.IO.Pipes.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9798,12 +10065,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.IO.UnmanagedMemoryStream/4.0.1": {
- "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==",
+ "System.IO.UnmanagedMemoryStream/4.3.0": {
+ "sha512": "tS89nK7pw8ebkkEfWujA05+ZReHKzz39W+bcX1okVR0GJCJuzPyfYfQZyiLSrjp121BB5J4uewZQiUTKri2pSQ==",
"type": "package",
- "path": "System.IO.UnmanagedMemoryStream/4.0.1",
+ "path": "System.IO.UnmanagedMemoryStream/4.3.0",
"files": [
- "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
+ "System.IO.UnmanagedMemoryStream.4.3.0.nupkg.sha512",
"System.IO.UnmanagedMemoryStream.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9835,12 +10102,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq/4.1.0": {
- "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"type": "package",
- "path": "System.Linq/4.1.0",
+ "path": "System.Linq/4.3.0",
"files": [
- "System.Linq.4.1.0.nupkg.sha512",
+ "System.Linq.4.3.0.nupkg.sha512",
"System.Linq.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9905,12 +10172,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"type": "package",
- "path": "System.Linq.Expressions/4.1.0",
+ "path": "System.Linq.Expressions/4.3.0",
"files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
+ "System.Linq.Expressions.4.3.0.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9987,12 +10254,12 @@
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
]
},
- "System.Linq.Parallel/4.0.1": {
- "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==",
+ "System.Linq.Parallel/4.3.0": {
+ "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==",
"type": "package",
- "path": "System.Linq.Parallel/4.0.1",
+ "path": "System.Linq.Parallel/4.3.0",
"files": [
- "System.Linq.Parallel.4.0.1.nupkg.sha512",
+ "System.Linq.Parallel.4.3.0.nupkg.sha512",
"System.Linq.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10043,7 +10310,7 @@
]
},
"System.Linq.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
+ "sha512": "RXVSHwhbqT4pZdCm+wISM7DGJ2wCkFyRGjMlXkUfnl1t9G4QOv+vasX6ovGb7pfszDH2h1K4b5zf5OpVdc6U/A==",
"type": "package",
"path": "System.Linq.Queryable/4.0.1",
"files": [
@@ -10099,12 +10366,69 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "System.Linq.Queryable/4.3.0",
+ "files": [
+ "System.Linq.Queryable.4.3.0.nupkg.sha512",
+ "System.Linq.Queryable.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._"
+ ]
+ },
+ "System.Net.Http/4.3.0": {
+ "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
"type": "package",
- "path": "System.Net.Http/4.1.0",
+ "path": "System.Net.Http/4.3.0",
"files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
+ "System.Net.Http.4.3.0.nupkg.sha512",
"System.Net.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10179,12 +10503,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
]
},
- "System.Net.NameResolution/4.0.0": {
- "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
+ "System.Net.NameResolution/4.3.0": {
+ "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
"type": "package",
- "path": "System.Net.NameResolution/4.0.0",
+ "path": "System.Net.NameResolution/4.3.0",
"files": [
- "System.Net.NameResolution.4.0.0.nupkg.sha512",
+ "System.Net.NameResolution.4.3.0.nupkg.sha512",
"System.Net.NameResolution.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10219,12 +10543,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
]
},
- "System.Net.Primitives/4.0.11": {
- "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"type": "package",
- "path": "System.Net.Primitives/4.0.11",
+ "path": "System.Net.Primitives/4.3.0",
"files": [
- "System.Net.Primitives.4.0.11.nupkg.sha512",
+ "System.Net.Primitives.4.3.0.nupkg.sha512",
"System.Net.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10296,12 +10620,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Requests/4.0.11": {
- "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==",
+ "System.Net.Requests/4.3.0": {
+ "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
"type": "package",
- "path": "System.Net.Requests/4.0.11",
+ "path": "System.Net.Requests/4.3.0",
"files": [
- "System.Net.Requests.4.0.11.nupkg.sha512",
+ "System.Net.Requests.4.3.0.nupkg.sha512",
"System.Net.Requests.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10377,12 +10701,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
]
},
- "System.Net.Security/4.0.0": {
- "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==",
+ "System.Net.Security/4.3.0": {
+ "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
"type": "package",
- "path": "System.Net.Security/4.0.0",
+ "path": "System.Net.Security/4.3.0",
"files": [
- "System.Net.Security.4.0.0.nupkg.sha512",
+ "System.Net.Security.4.3.0.nupkg.sha512",
"System.Net.Security.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10417,12 +10741,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Net.Sockets/4.1.0": {
- "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
+ "System.Net.Sockets/4.3.0": {
+ "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
"type": "package",
- "path": "System.Net.Sockets/4.1.0",
+ "path": "System.Net.Sockets/4.3.0",
"files": [
- "System.Net.Sockets.4.1.0.nupkg.sha512",
+ "System.Net.Sockets.4.3.0.nupkg.sha512",
"System.Net.Sockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10453,12 +10777,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebHeaderCollection/4.0.1": {
- "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==",
+ "System.Net.WebHeaderCollection/4.3.0": {
+ "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
"type": "package",
- "path": "System.Net.WebHeaderCollection/4.0.1",
+ "path": "System.Net.WebHeaderCollection/4.3.0",
"files": [
- "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
+ "System.Net.WebHeaderCollection.4.3.0.nupkg.sha512",
"System.Net.WebHeaderCollection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10490,12 +10814,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebSockets/4.0.0": {
- "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
+ "System.Net.WebSockets/4.3.0": {
+ "sha512": "u6fFNY5q4T8KerUAVbya7bR6b7muBuSTAersyrihkcmE5QhEOiH3t5rh4il15SexbVlpXFHGuMwr/m8fDrnkQg==",
"type": "package",
- "path": "System.Net.WebSockets/4.0.0",
+ "path": "System.Net.WebSockets/4.3.0",
"files": [
- "System.Net.WebSockets.4.0.0.nupkg.sha512",
+ "System.Net.WebSockets.4.3.0.nupkg.sha512",
"System.Net.WebSockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10527,12 +10851,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Numerics.Vectors/4.1.1": {
- "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==",
+ "System.Numerics.Vectors/4.3.0": {
+ "sha512": "uAIqmwiQPPXdCz59MQcyHwsH2MzIv24VGCS54kP/1GzTRTuU3hazmiPnGUTlKFia4B1DnbLWjTHoGyTI5BMCTQ==",
"type": "package",
- "path": "System.Numerics.Vectors/4.1.1",
+ "path": "System.Numerics.Vectors/4.3.0",
"files": [
- "System.Numerics.Vectors.4.1.1.nupkg.sha512",
+ "System.Numerics.Vectors.4.3.0.nupkg.sha512",
"System.Numerics.Vectors.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10560,12 +10884,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"type": "package",
- "path": "System.ObjectModel/4.0.12",
+ "path": "System.ObjectModel/4.3.0",
"files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
+ "System.ObjectModel.4.3.0.nupkg.sha512",
"System.ObjectModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10628,12 +10952,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection/4.1.0": {
- "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"type": "package",
- "path": "System.Reflection/4.1.0",
+ "path": "System.Reflection/4.3.0",
"files": [
- "System.Reflection.4.1.0.nupkg.sha512",
+ "System.Reflection.4.3.0.nupkg.sha512",
"System.Reflection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10707,12 +11031,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.DispatchProxy/4.0.1": {
- "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==",
+ "System.Reflection.DispatchProxy/4.3.0": {
+ "sha512": "vFln4g7zbLRyJbioExbMaW4BGuE2urDE2IKQk02x1y1uhQWntD+4rcYA4xQGJ19PlMdYPMWExHVQj3zKDODBFw==",
"type": "package",
- "path": "System.Reflection.DispatchProxy/4.0.1",
+ "path": "System.Reflection.DispatchProxy/4.3.0",
"files": [
- "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
+ "System.Reflection.DispatchProxy.4.3.0.nupkg.sha512",
"System.Reflection.DispatchProxy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10743,20 +11067,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
]
},
- "System.Reflection.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"type": "package",
- "path": "System.Reflection.Emit/4.0.1",
+ "path": "System.Reflection.Emit/4.3.0",
"files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.4.3.0.nupkg.sha512",
"System.Reflection.Emit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.dll",
"lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/net45/_._",
"ref/netstandard1.1/System.Reflection.Emit.dll",
@@ -10773,20 +11101,28 @@
"ref/xamarinmac20/_._"
]
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.0.1",
+ "path": "System.Reflection.Emit.ILGeneration/4.3.0",
"files": [
- "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
"System.Reflection.Emit.ILGeneration.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
@@ -10801,23 +11137,35 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.0.1",
+ "path": "System.Reflection.Emit.Lightweight/4.3.0",
"files": [
- "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
"System.Reflection.Emit.Lightweight.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.Lightweight.dll",
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
@@ -10832,15 +11180,19 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Extensions/4.0.1": {
- "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"type": "package",
- "path": "System.Reflection.Extensions/4.0.1",
+ "path": "System.Reflection.Extensions/4.3.0",
"files": [
- "System.Reflection.Extensions.4.0.1.nupkg.sha512",
+ "System.Reflection.Extensions.4.3.0.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10890,12 +11242,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.Metadata/1.3.0": {
- "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
+ "System.Reflection.Metadata/1.4.1": {
+ "sha512": "tc2ZyJgweHCLci5oQGuhQn9TD0Ii9DReXkHtZm3aAGp8xe40rpRjiTbMXOtZU+fr0BOQ46goE9+qIqRGjR9wGg==",
"type": "package",
- "path": "System.Reflection.Metadata/1.3.0",
+ "path": "System.Reflection.Metadata/1.4.1",
"files": [
- "System.Reflection.Metadata.1.3.0.nupkg.sha512",
+ "System.Reflection.Metadata.1.4.1.nupkg.sha512",
"System.Reflection.Metadata.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10905,12 +11257,12 @@
"lib/portable-net45+win8/System.Reflection.Metadata.xml"
]
},
- "System.Reflection.Primitives/4.0.1": {
- "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"type": "package",
- "path": "System.Reflection.Primitives/4.0.1",
+ "path": "System.Reflection.Primitives/4.3.0",
"files": [
- "System.Reflection.Primitives.4.0.1.nupkg.sha512",
+ "System.Reflection.Primitives.4.3.0.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10960,12 +11312,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.TypeExtensions/4.1.0": {
- "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"type": "package",
- "path": "System.Reflection.TypeExtensions/4.1.0",
+ "path": "System.Reflection.TypeExtensions/4.3.0",
"files": [
- "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512",
+ "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11012,24 +11364,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
- "System.Resources.Reader/4.0.0": {
- "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==",
+ "System.Resources.Reader/4.3.0": {
+ "sha512": "AeSwdrdgsRnGRJDofYEJPlotJm6gDDg6WJ1/1lX2Yq8bPwicba7lanPi7adK0SE58zgN5PcGg/h0tuZS+IRAdw==",
"type": "package",
- "path": "System.Resources.Reader/4.0.0",
+ "path": "System.Resources.Reader/4.3.0",
"files": [
- "System.Resources.Reader.4.0.0.nupkg.sha512",
+ "System.Resources.Reader.4.3.0.nupkg.sha512",
"System.Resources.Reader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Resources.Reader.dll"
]
},
- "System.Resources.ResourceManager/4.0.1": {
- "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"type": "package",
- "path": "System.Resources.ResourceManager/4.0.1",
+ "path": "System.Resources.ResourceManager/4.3.0",
"files": [
- "System.Resources.ResourceManager.4.0.1.nupkg.sha512",
+ "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11079,12 +11431,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime/4.1.0": {
- "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"type": "package",
- "path": "System.Runtime/4.1.0",
+ "path": "System.Runtime/4.3.0",
"files": [
- "System.Runtime.4.1.0.nupkg.sha512",
+ "System.Runtime.4.3.0.nupkg.sha512",
"System.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11169,12 +11521,25 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Extensions/4.1.0": {
- "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "sha512": "rcnXA1U9W3QUtMSGoyoNHH6w4V5Rxa/EKXmzpORUYlDAlDB34hIQoU57ATXl8xHa83VvzRm6PcElEizgUd7U5w==",
+ "type": "package",
+ "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
+ "files": [
+ "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
+ "System.Runtime.CompilerServices.Unsafe.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"type": "package",
- "path": "System.Runtime.Extensions/4.1.0",
+ "path": "System.Runtime.Extensions/4.3.0",
"files": [
- "System.Runtime.Extensions.4.1.0.nupkg.sha512",
+ "System.Runtime.Extensions.4.3.0.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11248,12 +11613,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Handles/4.0.1": {
- "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"type": "package",
- "path": "System.Runtime.Handles/4.0.1",
+ "path": "System.Runtime.Handles/4.3.0",
"files": [
- "System.Runtime.Handles.4.0.1.nupkg.sha512",
+ "System.Runtime.Handles.4.3.0.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11284,12 +11649,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices/4.1.0": {
- "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"type": "package",
- "path": "System.Runtime.InteropServices/4.1.0",
+ "path": "System.Runtime.InteropServices/4.3.0",
"files": [
- "System.Runtime.InteropServices.4.1.0.nupkg.sha512",
+ "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11297,6 +11662,7 @@
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
@@ -11308,6 +11674,7 @@
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
@@ -11319,6 +11686,7 @@
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
@@ -11372,18 +11740,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
"type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0",
+ "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
"files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.0.0.nupkg.sha512",
+ "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.RuntimeInformation.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/xamarinios10/_._",
@@ -11404,17 +11773,23 @@
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
]
},
- "System.Runtime.Loader/4.0.0": {
- "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
"type": "package",
- "path": "System.Runtime.Loader/4.0.0",
+ "path": "System.Runtime.Loader/4.3.0",
"files": [
- "System.Runtime.Loader.4.0.0.nupkg.sha512",
+ "System.Runtime.Loader.4.3.0.nupkg.sha512",
"System.Runtime.Loader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net462/_._",
"lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/netstandard1.5/System.Runtime.Loader.dll",
"ref/netstandard1.5/System.Runtime.Loader.xml",
"ref/netstandard1.5/de/System.Runtime.Loader.xml",
@@ -11428,12 +11803,12 @@
"ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
]
},
- "System.Runtime.Numerics/4.0.1": {
- "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
+ "System.Runtime.Numerics/4.3.0": {
+ "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"type": "package",
- "path": "System.Runtime.Numerics/4.0.1",
+ "path": "System.Runtime.Numerics/4.3.0",
"files": [
- "System.Runtime.Numerics.4.0.1.nupkg.sha512",
+ "System.Runtime.Numerics.4.3.0.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11483,12 +11858,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"type": "package",
- "path": "System.Runtime.Serialization.Primitives/4.1.1",
+ "path": "System.Runtime.Serialization.Primitives/4.3.0",
"files": [
- "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
+ "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
"System.Runtime.Serialization.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11554,12 +11929,12 @@
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
]
},
- "System.Security.Claims/4.0.1": {
- "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==",
+ "System.Security.Claims/4.3.0": {
+ "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
"type": "package",
- "path": "System.Security.Claims/4.0.1",
+ "path": "System.Security.Claims/4.3.0",
"files": [
- "System.Security.Claims.4.0.1.nupkg.sha512",
+ "System.Security.Claims.4.3.0.nupkg.sha512",
"System.Security.Claims.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11591,12 +11966,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
- "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.2.0",
+ "path": "System.Security.Cryptography.Algorithms/4.3.0",
"files": [
- "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11621,6 +11996,7 @@
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
@@ -11629,12 +12005,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
]
},
- "System.Security.Cryptography.Cng/4.2.0": {
- "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
"type": "package",
- "path": "System.Security.Cryptography.Cng/4.2.0",
+ "path": "System.Security.Cryptography.Cng/4.3.0",
"files": [
- "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Cng.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11655,12 +12031,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
]
},
- "System.Security.Cryptography.Csp/4.0.0": {
- "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"type": "package",
- "path": "System.Security.Cryptography.Csp/4.0.0",
+ "path": "System.Security.Cryptography.Csp/4.3.0",
"files": [
- "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Csp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11685,12 +12061,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
]
},
- "System.Security.Cryptography.Encoding/4.0.0": {
- "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"type": "package",
- "path": "System.Security.Cryptography.Encoding/4.0.0",
+ "path": "System.Security.Cryptography.Encoding/4.3.0",
"files": [
- "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11724,12 +12100,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
]
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
- "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
"type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.0.0",
+ "path": "System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
- "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
"System.Security.Cryptography.OpenSsl.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11738,12 +12114,12 @@
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
]
},
- "System.Security.Cryptography.Primitives/4.0.0": {
- "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"type": "package",
- "path": "System.Security.Cryptography.Primitives/4.0.0",
+ "path": "System.Security.Cryptography.Primitives/4.3.0",
"files": [
- "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11765,12 +12141,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.1.0",
+ "path": "System.Security.Cryptography.X509Certificates/4.3.0",
"files": [
- "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512",
+ "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11819,12 +12195,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
]
},
- "System.Security.Principal/4.0.1": {
- "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==",
+ "System.Security.Principal/4.3.0": {
+ "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
"type": "package",
- "path": "System.Security.Principal/4.0.1",
+ "path": "System.Security.Principal/4.3.0",
"files": [
- "System.Security.Principal.4.0.1.nupkg.sha512",
+ "System.Security.Principal.4.3.0.nupkg.sha512",
"System.Security.Principal.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11876,12 +12252,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Principal.Windows/4.0.0": {
- "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==",
+ "System.Security.Principal.Windows/4.3.0": {
+ "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
"type": "package",
- "path": "System.Security.Principal.Windows/4.0.0",
+ "path": "System.Security.Principal.Windows/4.3.0",
"files": [
- "System.Security.Principal.Windows.4.0.0.nupkg.sha512",
+ "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
"System.Security.Principal.Windows.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11903,12 +12279,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
]
},
- "System.Text.Encoding/4.0.11": {
- "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"type": "package",
- "path": "System.Text.Encoding/4.0.11",
+ "path": "System.Text.Encoding/4.3.0",
"files": [
- "System.Text.Encoding.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.4.3.0.nupkg.sha512",
"System.Text.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11969,12 +12345,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encoding.CodePages/4.0.1": {
- "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
+ "System.Text.Encoding.CodePages/4.3.0": {
+ "sha512": "IRiEFUa5b/Gs5Egg8oqBVoywhtOeaO2KOx3j0RfcYY/raxqBuEK7NXRDgOwtYM8qbi+7S4RPXUbNt+ZxyY0/NQ==",
"type": "package",
- "path": "System.Text.Encoding.CodePages/4.0.1",
+ "path": "System.Text.Encoding.CodePages/4.3.0",
"files": [
- "System.Text.Encoding.CodePages.4.0.1.nupkg.sha512",
+ "System.Text.Encoding.CodePages.4.3.0.nupkg.sha512",
"System.Text.Encoding.CodePages.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12006,12 +12382,12 @@
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
]
},
- "System.Text.Encoding.Extensions/4.0.11": {
- "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"type": "package",
- "path": "System.Text.Encoding.Extensions/4.0.11",
+ "path": "System.Text.Encoding.Extensions/4.3.0",
"files": [
- "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
"System.Text.Encoding.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12072,12 +12448,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encodings.Web/4.0.0": {
- "sha512": "TWZnuiJgPDAEEUfobD7njXvSVR2Toz+jvKWds6yL4oSztmKQfnWzucczjzA+6Dv1bktBdY71sZW1YN0X6m9chQ==",
+ "System.Text.Encodings.Web/4.3.0": {
+ "sha512": "ilLTKoirqw+Mbt+6x1MOxZKEwflasdP5WNuo5m5rKSXtAqazlEDqdyBH1XbvENuDQUtKNeP48CI1dyDNlEAeOA==",
"type": "package",
- "path": "System.Text.Encodings.Web/4.0.0",
+ "path": "System.Text.Encodings.Web/4.3.0",
"files": [
- "System.Text.Encodings.Web.4.0.0.nupkg.sha512",
+ "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
"System.Text.Encodings.Web.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12085,12 +12461,12 @@
"lib/netstandard1.0/System.Text.Encodings.Web.xml"
]
},
- "System.Text.RegularExpressions/4.1.0": {
- "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "System.Text.RegularExpressions/4.3.0": {
+ "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"type": "package",
- "path": "System.Text.RegularExpressions/4.1.0",
+ "path": "System.Text.RegularExpressions/4.3.0",
"files": [
- "System.Text.RegularExpressions.4.1.0.nupkg.sha512",
+ "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
"System.Text.RegularExpressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12123,6 +12499,7 @@
"ref/netcore50/ru/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
@@ -12166,12 +12543,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading/4.0.11": {
- "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"type": "package",
- "path": "System.Threading/4.0.11",
+ "path": "System.Threading/4.3.0",
"files": [
- "System.Threading.4.0.11.nupkg.sha512",
+ "System.Threading.4.3.0.nupkg.sha512",
"System.Threading.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12235,12 +12612,12 @@
"runtimes/aot/lib/netcore50/System.Threading.dll"
]
},
- "System.Threading.Overlapped/4.0.1": {
- "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==",
+ "System.Threading.Overlapped/4.3.0": {
+ "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
"type": "package",
- "path": "System.Threading.Overlapped/4.0.1",
+ "path": "System.Threading.Overlapped/4.3.0",
"files": [
- "System.Threading.Overlapped.4.0.1.nupkg.sha512",
+ "System.Threading.Overlapped.4.3.0.nupkg.sha512",
"System.Threading.Overlapped.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12263,12 +12640,12 @@
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
]
},
- "System.Threading.Tasks/4.0.11": {
- "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"type": "package",
- "path": "System.Threading.Tasks/4.0.11",
+ "path": "System.Threading.Tasks/4.3.0",
"files": [
- "System.Threading.Tasks.4.0.11.nupkg.sha512",
+ "System.Threading.Tasks.4.3.0.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12329,27 +12706,29 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Tasks.Dataflow/4.6.0": {
- "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==",
+ "System.Threading.Tasks.Dataflow/4.7.0": {
+ "sha512": "wcKLDI8tN5KpcMcTQwXfcLHrFdfINIxDBOZS3rE8QqOds/0fRhCkR+IEfQokxT7s/Yluqk+LG/ZqZdQmA/xgCw==",
"type": "package",
- "path": "System.Threading.Tasks.Dataflow/4.6.0",
+ "path": "System.Threading.Tasks.Dataflow/4.7.0",
"files": [
- "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
+ "System.Threading.Tasks.Dataflow.4.7.0.nupkg.sha512",
"System.Threading.Tasks.Dataflow.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
- "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
+ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll"
]
},
- "System.Threading.Tasks.Extensions/4.0.0": {
- "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"type": "package",
- "path": "System.Threading.Tasks.Extensions/4.0.0",
+ "path": "System.Threading.Tasks.Extensions/4.3.0",
"files": [
- "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512",
+ "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12359,12 +12738,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
]
},
- "System.Threading.Tasks.Parallel/4.0.1": {
- "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==",
+ "System.Threading.Tasks.Parallel/4.3.0": {
+ "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
"type": "package",
- "path": "System.Threading.Tasks.Parallel/4.0.1",
+ "path": "System.Threading.Tasks.Parallel/4.3.0",
"files": [
- "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
+ "System.Threading.Tasks.Parallel.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12414,12 +12793,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Thread/4.0.0": {
- "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
+ "System.Threading.Thread/4.3.0": {
+ "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
"type": "package",
- "path": "System.Threading.Thread/4.0.0",
+ "path": "System.Threading.Thread/4.3.0",
"files": [
- "System.Threading.Thread.4.0.0.nupkg.sha512",
+ "System.Threading.Thread.4.3.0.nupkg.sha512",
"System.Threading.Thread.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12452,12 +12831,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.ThreadPool/4.0.10": {
- "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
+ "System.Threading.ThreadPool/4.3.0": {
+ "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
"type": "package",
- "path": "System.Threading.ThreadPool/4.0.10",
+ "path": "System.Threading.ThreadPool/4.3.0",
"files": [
- "System.Threading.ThreadPool.4.0.10.nupkg.sha512",
+ "System.Threading.ThreadPool.4.3.0.nupkg.sha512",
"System.Threading.ThreadPool.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12490,12 +12869,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Timer/4.0.1": {
- "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "System.Threading.Timer/4.3.0": {
+ "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
"type": "package",
- "path": "System.Threading.Timer/4.0.1",
+ "path": "System.Threading.Timer/4.3.0",
"files": [
- "System.Threading.Timer.4.0.1.nupkg.sha512",
+ "System.Threading.Timer.4.3.0.nupkg.sha512",
"System.Threading.Timer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12543,18 +12922,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.ReaderWriter/4.0.11": {
- "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "System.Xml.ReaderWriter/4.3.0": {
+ "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"type": "package",
- "path": "System.Xml.ReaderWriter/4.0.11",
+ "path": "System.Xml.ReaderWriter/4.3.0",
"files": [
- "System.Xml.ReaderWriter.4.0.11.nupkg.sha512",
+ "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
"System.Xml.ReaderWriter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
+ "lib/net46/System.Xml.ReaderWriter.dll",
"lib/netcore50/System.Xml.ReaderWriter.dll",
"lib/netstandard1.3/System.Xml.ReaderWriter.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
@@ -12568,6 +12948,7 @@
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
+ "ref/net46/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.xml",
"ref/netcore50/de/System.Xml.ReaderWriter.xml",
@@ -12611,12 +12992,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "System.Xml.XDocument/4.3.0": {
+ "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"type": "package",
- "path": "System.Xml.XDocument/4.0.11",
+ "path": "System.Xml.XDocument/4.3.0",
"files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
+ "System.Xml.XDocument.4.3.0.nupkg.sha512",
"System.Xml.XDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12680,7 +13061,7 @@
]
},
"System.Xml.XmlDocument/4.0.1": {
- "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
+ "sha512": "QUdzLPVLBXg+3hQiTgLSy6lnMIN4Pj6+kRU2GJCwMooXHJvHp2PUjBg5Ms3r+ewPcu3dewET6v0a9UqPaUrTaw==",
"type": "package",
"path": "System.Xml.XmlDocument/4.0.1",
"files": [
@@ -12717,7 +13098,7 @@
]
},
"System.Xml.XPath/4.0.1": {
- "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
+ "sha512": "drxlpwgSyGH1S1lsW5pqBCQ7TLdAKjVl+G1F1HYAVDFdRBtAHCORwW2/IbMCidAb8jxjJPBTyUkcTrEedIXvoQ==",
"type": "package",
"path": "System.Xml.XPath/4.0.1",
"files": [
@@ -12754,7 +13135,7 @@
]
},
"System.Xml.XPath.XDocument/4.0.1": {
- "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==",
+ "sha512": "9beITE7Jz3Q0vTBbs7OeYVI57jpJJP5s5O7l6s5OnfOoY87o4lau9HbXARVaZ5leWeDPch/xvw7tO4oEBa2r2w==",
"type": "package",
"path": "System.Xml.XPath.XDocument/4.0.1",
"files": [
@@ -12809,43 +13190,41 @@
"projectFileDependencyGroups": {
"": [
"ApplicationParts.Controllers",
- "Microsoft.AspNetCore.Authentication.Cookies >= 1.0.0",
- "Microsoft.AspNetCore.Diagnostics >= 1.0.0",
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore >= 1.0.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 1.0.0",
- "Microsoft.AspNetCore.Mvc >= 1.0.1",
- "Microsoft.AspNetCore.Razor.Tools >= 1.0.0-preview2-final",
- "Microsoft.AspNetCore.Server.IISIntegration >= 1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel >= 1.0.1",
- "Microsoft.AspNetCore.StaticFiles >= 1.0.0",
- "Microsoft.EntityFrameworkCore.SqlServer >= 1.0.1",
- "Microsoft.EntityFrameworkCore.Tools >= 1.0.0-preview2-final",
- "Microsoft.Extensions.Configuration.EnvironmentVariables >= 1.0.0",
- "Microsoft.Extensions.Configuration.Json >= 1.0.0",
- "Microsoft.Extensions.Configuration.UserSecrets >= 1.0.0",
- "Microsoft.Extensions.Logging >= 1.0.0",
- "Microsoft.Extensions.Logging.Console >= 1.0.0",
- "Microsoft.Extensions.Logging.Debug >= 1.0.0",
- "Microsoft.VisualStudio.Web.BrowserLink.Loader >= 14.0.0-rc2-final"
+ "Microsoft.AspNetCore.Authentication.Cookies >= 1.1.0",
+ "Microsoft.AspNetCore.Diagnostics >= 1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore >= 1.1.0",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 1.1.0",
+ "Microsoft.AspNetCore.Mvc >= 1.1.0",
+ "Microsoft.AspNetCore.Razor.Tools >= 1.1.0-preview4-final",
+ "Microsoft.AspNetCore.Server.IISIntegration >= 1.1.0",
+ "Microsoft.AspNetCore.Server.Kestrel >= 1.1.0",
+ "Microsoft.AspNetCore.StaticFiles >= 1.1.0",
+ "Microsoft.EntityFrameworkCore.SqlServer >= 1.1.0",
+ "Microsoft.EntityFrameworkCore.Tools >= 1.1.0-preview4-final",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables >= 1.1.0",
+ "Microsoft.Extensions.Configuration.Json >= 1.1.0",
+ "Microsoft.Extensions.Configuration.UserSecrets >= 1.1.0",
+ "Microsoft.Extensions.Logging >= 1.1.0",
+ "Microsoft.Extensions.Logging.Console >= 1.1.0",
+ "Microsoft.Extensions.Logging.Debug >= 1.1.0",
+ "Microsoft.VisualStudio.Web.BrowserLink.Loader >= 14.1.0"
],
- ".NETCoreApp,Version=v1.0": [
- "Microsoft.NETCore.App >= 1.0.1"
+ ".NETCoreApp,Version=v1.1": [
+ "Microsoft.NETCore.App >= 1.1.0"
],
".NETFramework,Version=v4.5.1": []
},
"tools": {
".NETCoreApp,Version=v1.0": {
- "Microsoft.AspNetCore.Razor.Tools/1.0.0-preview2-final": {
+ "Microsoft.AspNetCore.Razor.Tools/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
+ "Microsoft.AspNetCore.Razor.Design": "1.1.0-preview4-final",
"Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121",
"Microsoft.DotNet.ProjectModel.Loader": "1.0.0-preview2-003121",
- "Microsoft.Extensions.CommandLineUtils": "1.0.0",
"Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "Microsoft.NETCore.App": "1.0.0",
- "Newtonsoft.Json": "9.0.1",
- "System.Diagnostics.Process": "4.1.0",
+ "Microsoft.NETCore.App": "1.1.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.1.1"
},
"compile": {
@@ -12855,13 +13234,13 @@
"lib/netcoreapp1.0/dotnet-razor-tooling.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration.Tools/1.0.0-preview2-final": {
+ "Microsoft.AspNetCore.Server.IISIntegration.Tools/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
"Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121",
- "Microsoft.Extensions.CommandLineUtils": "1.0.0",
- "Microsoft.NETCore.App": "1.0.0",
- "System.Diagnostics.Process": "4.1.0"
+ "Microsoft.Extensions.CommandLineUtils": "1.1.0",
+ "Microsoft.NETCore.App": "1.1.0",
+ "System.Diagnostics.Process": "4.3.0"
},
"compile": {
"lib/netcoreapp1.0/dotnet-publish-iis.dll": {}
@@ -12870,33 +13249,27 @@
"lib/netcoreapp1.0/dotnet-publish-iis.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final": {
+ "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121",
- "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121",
- "Microsoft.EntityFrameworkCore.Design": "1.0.0-preview2-final",
- "Microsoft.Extensions.CommandLineUtils": "1.0.0",
- "Microsoft.NETCore.App": "1.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.EntityFrameworkCore.Design": "1.1.0"
},
"compile": {
- "lib/netcoreapp1.0/dotnet-ef.dll": {}
+ "lib/netstandard1.3/_._": {}
},
"runtime": {
- "lib/netcoreapp1.0/dotnet-ef.dll": {}
+ "lib/netstandard1.3/_._": {}
}
},
- "Microsoft.Extensions.SecretManager.Tools/1.0.0-preview2-final": {
+ "Microsoft.Extensions.SecretManager.Tools/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.CommandLineUtils": "1.0.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.NETCore.App": "1.0.0",
+ "Microsoft.Extensions.CommandLineUtils": "1.1.0",
+ "Microsoft.Extensions.Configuration.UserSecrets": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.NETCore.App": "1.1.0",
"Newtonsoft.Json": "9.0.1",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netcoreapp1.0/dotnet-user-secrets.dll": {}
@@ -12905,11 +13278,12 @@
"lib/netcoreapp1.0/dotnet-user-secrets.dll": {}
}
},
- "Microsoft.VisualStudio.Web.CodeGeneration.Tools/1.0.0-preview2-final": {
+ "Microsoft.VisualStudio.Web.CodeGeneration.Tools/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.App": "1.0.0",
- "Microsoft.VisualStudio.Web.CodeGeneration": "1.0.0-preview2-final"
+ "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.NETCore.App": "1.1.0",
+ "Microsoft.VisualStudio.Web.CodeGeneration": "1.1.0-preview4-final"
},
"compile": {
"lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll": {}
@@ -12922,11 +13296,11 @@
},
"projectFileToolGroups": {
".NETCoreApp,Version=v1.0": [
- "Microsoft.AspNetCore.Razor.Tools >= 1.0.0-preview2-final",
- "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.0.0-preview2-final",
- "Microsoft.EntityFrameworkCore.Tools >= 1.0.0-preview2-final",
- "Microsoft.Extensions.SecretManager.Tools >= 1.0.0-preview2-final",
- "Microsoft.VisualStudio.Web.CodeGeneration.Tools >= 1.0.0-preview2-final"
+ "Microsoft.AspNetCore.Razor.Tools >= 1.1.0-preview4-final",
+ "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.1.0-preview4-final",
+ "Microsoft.EntityFrameworkCore.Tools >= 1.1.0-preview4-final",
+ "Microsoft.Extensions.SecretManager.Tools >= 1.1.0-preview4-final",
+ "Microsoft.VisualStudio.Web.CodeGeneration.Tools >= 1.1.0-preview4-final"
]
}
}
\ No newline at end of file
diff --git a/samples/Lite/Lite.Test/project.json b/samples/Lite/Lite.Test/project.json
index 97a1de3c2..6dd8918b3 100644
--- a/samples/Lite/Lite.Test/project.json
+++ b/samples/Lite/Lite.Test/project.json
@@ -5,19 +5,20 @@
},
"dependencies": {
+ "Microsoft.DotNet.InternalAbstractions": "1.0.0", // remove when not needed
"dotnet-test-xunit": "2.2.0-*",
"xunit": "2.2.0-*",
- "MyTested.AspNetCore.Mvc.Lite": "1.0.0",
+ "MyTested.AspNetCore.Mvc.Lite": "1.1.0",
"Moq": "4.6.38-*",
"Lite.Web": "*"
},
"frameworks": {
- "netcoreapp1.0": {
+ "netcoreapp1.1": {
"imports": "dotnet5.4",
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.0.1",
+ "version": "1.1.0",
"type": "platform"
}
}
diff --git a/samples/Lite/Lite.Test/project.lock.json b/samples/Lite/Lite.Test/project.lock.json
index 7ef4da47a..b2414848a 100644
--- a/samples/Lite/Lite.Test/project.lock.json
+++ b/samples/Lite/Lite.Test/project.lock.json
@@ -2,7 +2,7 @@
"locked": false,
"version": 2,
"targets": {
- ".NETCoreApp,Version=v1.0": {
+ ".NETCoreApp,Version=v1.1": {
"Castle.Core/4.0.0-beta001": {
"type": "package",
"dependencies": {
@@ -51,7 +51,7 @@
"lib/netcoreapp1.0/dotnet-test-xunit.dll": {}
}
},
- "Libuv/1.9.0": {
+ "Libuv/1.9.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
@@ -91,13 +91,15 @@
}
}
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -106,12 +108,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Claims": "4.0.1"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
@@ -120,13 +123,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
@@ -135,15 +139,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
@@ -152,22 +151,19 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
@@ -176,13 +172,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
@@ -191,10 +185,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -203,43 +197,43 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Console": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.StackTrace": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.StackTrace": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {}
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {}
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -248,11 +242,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -261,12 +256,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -275,16 +269,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
@@ -293,15 +287,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Globalization.Extensions": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -310,14 +304,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.IO.FileSystem": "4.0.1"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -326,19 +320,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebSockets": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0",
+ "System.Net.WebSockets": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -347,12 +337,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
@@ -361,36 +352,29 @@
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
@@ -399,19 +383,20 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
@@ -420,15 +405,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -437,10 +421,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -449,21 +434,22 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -472,11 +458,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -485,12 +472,13 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0",
- "System.ComponentModel.Annotations": "4.1.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.Annotations": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
@@ -499,11 +487,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -512,13 +501,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -527,15 +517,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -544,16 +534,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -562,13 +550,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -577,19 +567,20 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Buffers": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -598,16 +589,11 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Threading": "4.0.11",
- "System.Threading.Thread": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
@@ -616,18 +602,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
@@ -636,16 +617,28 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.1": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
@@ -654,13 +647,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -669,16 +660,17 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Principal.Windows": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
@@ -687,30 +679,18 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
}
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Numerics.Vectors": "4.1.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "System.Threading.Timer": "4.0.1"
+ "Libuv": "1.9.1",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
@@ -719,12 +699,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
}
},
- "Microsoft.AspNetCore.TestHost/1.0.0": {
+ "Microsoft.AspNetCore.TestHost/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Net.Http": "4.1.0"
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.TestHost.dll": {}
@@ -733,15 +713,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.TestHost.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -827,25 +806,25 @@
"lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.0/Microsoft.CSharp.dll": {}
@@ -868,7 +847,7 @@
"lib/netstandard1.1/Microsoft.DiaSymReader.dll": {}
}
},
- "Microsoft.DiaSymReader.Native/1.4.0-rc2": {
+ "Microsoft.DiaSymReader.Native/1.4.0": {
"type": "package",
"runtimeTargets": {
"runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll": {
@@ -916,6 +895,25 @@
"lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
}
},
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.AppContext": "4.1.0",
+ "System.Collections": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ }
+ },
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
"type": "package",
"dependencies": {
@@ -939,13 +937,11 @@
"lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -954,14 +950,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Linq": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -970,17 +965,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0": {
+ "Microsoft.Extensions.Configuration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
@@ -989,11 +978,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -1002,11 +991,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
@@ -1015,10 +1005,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
@@ -1027,12 +1018,13 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.AppContext": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
@@ -1041,15 +1033,15 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Dynamic.Runtime": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
@@ -1058,15 +1050,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -1075,16 +1063,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -1093,10 +1076,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
@@ -1109,12 +1092,11 @@
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -1123,10 +1105,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -1135,16 +1118,13 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.IO.FileSystem.Watcher": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -1153,14 +1133,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
@@ -1169,12 +1145,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -1183,15 +1157,15 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Resources.Reader": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Resources.Reader": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
@@ -1200,12 +1174,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -1214,12 +1187,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -1228,18 +1201,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -1248,14 +1213,12 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Console": "4.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
@@ -1264,11 +1227,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
}
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Diagnostics.Debug": "4.0.11"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
@@ -1277,13 +1240,10 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
@@ -1292,20 +1252,13 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -1314,13 +1267,14 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0": {
+ "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Binder": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
@@ -1329,15 +1283,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.AppContext": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
@@ -1346,11 +1296,11 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -1376,12 +1326,13 @@
"lib/netstandard1.6/Microsoft.Extensions.Testing.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -1390,17 +1341,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -1409,50 +1356,51 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.App/1.0.1": {
+ "Microsoft.NETCore.App/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.CSharp": "4.0.1",
+ "Libuv": "1.9.1",
+ "Microsoft.CSharp": "4.3.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
"Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
- "Microsoft.NETCore.DotNetHostPolicy": "1.0.1",
- "Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
- "Microsoft.VisualBasic": "10.0.1",
- "NETStandard.Library": "1.6.0",
- "System.Buffers": "4.0.0",
- "System.Collections.Immutable": "1.2.0",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Annotations": "4.1.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Process": "4.1.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.IO.MemoryMappedFiles": "4.0.0",
- "System.IO.UnmanagedMemoryStream": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Linq.Parallel": "4.0.1",
- "System.Linq.Queryable": "4.0.1",
- "System.Net.NameResolution": "4.0.0",
- "System.Net.Requests": "4.0.11",
- "System.Net.Security": "4.0.0",
- "System.Net.WebHeaderCollection": "4.0.1",
- "System.Numerics.Vectors": "4.1.1",
- "System.Reflection.DispatchProxy": "4.0.1",
- "System.Reflection.Metadata": "1.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.Reader": "4.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Threading.Tasks.Dataflow": "4.6.0",
- "System.Threading.Tasks.Extensions": "4.0.0",
- "System.Threading.Tasks.Parallel": "4.0.1",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10"
+ "Microsoft.DiaSymReader.Native": "1.4.0",
+ "Microsoft.NETCore.DotNetHostPolicy": "1.1.0",
+ "Microsoft.NETCore.Runtime.CoreCLR": "1.1.0",
+ "Microsoft.VisualBasic": "10.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Annotations": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Process": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO.FileSystem.Watcher": "4.3.0",
+ "System.IO.MemoryMappedFiles": "4.3.0",
+ "System.IO.UnmanagedMemoryStream": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Linq.Parallel": "4.3.0",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Net.Requests": "4.3.0",
+ "System.Net.Security": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Reflection.DispatchProxy": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.Reader": "4.3.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Threading.Tasks.Dataflow": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Tasks.Parallel": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
},
"compile": {
"lib/netcoreapp1.0/_._": {}
@@ -1461,25 +1409,25 @@
"lib/netcoreapp1.0/_._": {}
}
},
- "Microsoft.NETCore.DotNetHost/1.0.1": {
+ "Microsoft.NETCore.DotNetHost/1.1.0": {
"type": "package"
},
- "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
+ "Microsoft.NETCore.DotNetHostPolicy/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.DotNetHostResolver": "1.0.1"
+ "Microsoft.NETCore.DotNetHostResolver": "1.1.0"
}
},
- "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
+ "Microsoft.NETCore.DotNetHostResolver/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.DotNetHost": "1.0.1"
+ "Microsoft.NETCore.DotNetHost": "1.1.0"
}
},
- "Microsoft.NETCore.Jit/1.0.4": {
+ "Microsoft.NETCore.Jit/1.1.0": {
"type": "package"
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1488,14 +1436,14 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
+ "Microsoft.NETCore.Runtime.CoreCLR/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Jit": "1.0.4",
+ "Microsoft.NETCore.Jit": "1.1.0",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1"
}
},
- "Microsoft.NETCore.Targets/1.0.1": {
+ "Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1507,25 +1455,25 @@
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
- "Microsoft.VisualBasic/10.0.1": {
+ "Microsoft.VisualBasic/10.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.1/Microsoft.VisualBasic.dll": {}
@@ -1534,28 +1482,28 @@
"lib/netstandard1.3/Microsoft.VisualBasic.dll": {}
}
},
- "Microsoft.Win32.Primitives/4.0.1": {
+ "Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
- "Microsoft.Win32.Registry/4.0.0": {
+ "Microsoft.Win32.Registry/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
@@ -1603,73 +1551,73 @@
"lib/netstandard1.3/Moq.dll": {}
}
},
- "NETStandard.Library/1.6.0": {
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
+ "Newtonsoft.Json/9.0.1": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.AppContext": "4.1.0",
+ "Microsoft.CSharp": "4.0.1",
"System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Console": "4.0.0",
"System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
+ "System.Dynamic.Runtime": "4.0.11",
"System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
"System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.Compression.ZipFile": "4.0.1",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
- }
- },
- "Newtonsoft.Json/9.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
+ "System.Runtime.Serialization.Primitives": "4.1.1",
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Text.RegularExpressions": "4.1.0",
@@ -1785,11 +1733,38 @@
"lib/netstandard1.0/NuGet.Versioning.dll": {}
}
},
- "runtime.native.System/4.0.0": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "debian.8-x64"
+ }
+ }
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.23-x64"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.24-x64"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1798,11 +1773,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.IO.Compression/4.1.0": {
+ "runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1811,11 +1786,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Http/4.0.1": {
+ "runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1824,11 +1799,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Security/4.0.1": {
+ "runtime.native.System.Net.Security/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1837,11 +1812,10 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1850,10 +1824,103 @@
"lib/netstandard1.0/_._": {}
}
},
- "System.AppContext/4.1.0": {
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.13.2-x64"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.42.1-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "rhel.7-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.14.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.10-x64"
+ }
+ }
+ },
+ "System.AppContext/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.AppContext.dll": {}
@@ -1862,14 +1929,14 @@
"lib/netstandard1.6/System.AppContext.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -1878,30 +1945,30 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.dll": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -1910,17 +1977,17 @@
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
@@ -1929,15 +1996,15 @@
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
}
},
- "System.Collections.NonGeneric/4.0.1": {
+ "System.Collections.NonGeneric/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -1946,16 +2013,16 @@
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
- "System.Collections.Specialized/4.0.1": {
+ "System.Collections.Specialized/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Specialized.dll": {}
@@ -1964,10 +2031,10 @@
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.dll": {}
@@ -1976,20 +2043,20 @@
"lib/netstandard1.3/System.ComponentModel.dll": {}
}
},
- "System.ComponentModel.Annotations/4.1.0": {
+ "System.ComponentModel.Annotations/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
@@ -1998,12 +2065,12 @@
"lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
@@ -2012,24 +2079,24 @@
"lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
@@ -2038,23 +2105,23 @@
"lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Console/4.0.0": {
+ "System.Console/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Console.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
@@ -2063,25 +2130,25 @@
"lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
@@ -2117,30 +2184,30 @@
}
}
},
- "System.Diagnostics.Process/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0"
+ "System.Diagnostics.Process/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Diagnostics.Process.dll": {}
@@ -2160,15 +2227,13 @@
}
}
},
- "System.Diagnostics.StackTrace/4.0.1": {
+ "System.Diagnostics.StackTrace/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "1.2.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.IO.FileSystem": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
@@ -2177,12 +2242,12 @@
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
@@ -2215,35 +2280,34 @@
}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
}
},
- "System.Dynamic.Runtime/4.0.11": {
+ "System.Dynamic.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
@@ -2252,38 +2316,38 @@
"lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.dll": {}
}
},
- "System.Globalization.Calendars/4.0.1": {
+ "System.Globalization.Calendars/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
- "System.Globalization.Extensions/4.0.1": {
+ "System.Globalization.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
@@ -2299,36 +2363,37 @@
}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.IO.dll": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.IO.Compression": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.dll": {}
@@ -2344,18 +2409,18 @@
}
}
},
- "System.IO.Compression.ZipFile/4.0.1": {
+ "System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -2364,26 +2429,26 @@
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
- "System.IO.FileSystem/4.0.1": {
+ "System.IO.FileSystem/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1": {
+ "System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -2392,25 +2457,25 @@
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0": {
+ "System.IO.FileSystem.Watcher/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
@@ -2430,22 +2495,22 @@
}
}
},
- "System.IO.MemoryMappedFiles/4.0.0": {
+ "System.IO.MemoryMappedFiles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.IO.UnmanagedMemoryStream": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.IO.UnmanagedMemoryStream": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
@@ -2461,16 +2526,18 @@
}
}
},
- "System.IO.UnmanagedMemoryStream/4.0.1": {
+ "System.IO.UnmanagedMemoryStream/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
@@ -2479,14 +2546,14 @@
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.dll": {}
@@ -2495,26 +2562,26 @@
"lib/netstandard1.6/System.Linq.dll": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -2523,19 +2590,19 @@
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
}
},
- "System.Linq.Parallel/4.0.1": {
+ "System.Linq.Parallel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Linq.Parallel.dll": {}
@@ -2544,17 +2611,17 @@
"lib/netstandard1.3/System.Linq.Parallel.dll": {}
}
},
- "System.Linq.Queryable/4.0.1": {
+ "System.Linq.Queryable/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Linq.Queryable.dll": {}
@@ -2563,35 +2630,35 @@
"lib/netstandard1.3/System.Linq.Queryable.dll": {}
}
},
- "System.Net.Http/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Http.dll": {}
@@ -2607,23 +2674,23 @@
}
}
},
- "System.Net.NameResolution/4.0.0": {
+ "System.Net.NameResolution/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
@@ -2639,34 +2706,34 @@
}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
- "System.Net.Requests/4.0.11": {
+ "System.Net.Requests/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebHeaderCollection": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Requests.dll": {}
@@ -2682,37 +2749,37 @@
}
}
},
- "System.Net.Security/4.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Security": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Security/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Security": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Security.dll": {}
@@ -2728,27 +2795,27 @@
}
}
},
- "System.Net.Sockets/4.1.0": {
+ "System.Net.Sockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
- "System.Net.WebHeaderCollection/4.0.1": {
+ "System.Net.WebHeaderCollection/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
@@ -2757,13 +2824,13 @@
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
- "System.Net.WebSockets/4.0.0": {
+ "System.Net.WebSockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
@@ -2772,13 +2839,13 @@
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
- "System.Numerics.Vectors/4.1.1": {
+ "System.Numerics.Vectors/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
@@ -2787,14 +2854,14 @@
"lib/netstandard1.0/System.Numerics.Vectors.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.ObjectModel.dll": {}
@@ -2803,32 +2870,32 @@
"lib/netstandard1.3/System.ObjectModel.dll": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.dll": {}
}
},
- "System.Reflection.DispatchProxy/4.0.1": {
+ "System.Reflection.DispatchProxy/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
@@ -2837,14 +2904,14 @@
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
}
},
- "System.Reflection.Emit/4.0.1": {
+ "System.Reflection.Emit/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Reflection.Emit.dll": {}
@@ -2853,12 +2920,12 @@
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
@@ -2867,13 +2934,13 @@
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
+ "System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {}
@@ -2882,36 +2949,37 @@
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Extensions.dll": {}
}
},
- "System.Reflection.Metadata/1.3.0": {
+ "System.Reflection.Metadata/1.4.1": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Immutable": "1.2.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
@@ -2920,22 +2988,22 @@
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Primitives.dll": {}
}
},
- "System.Reflection.TypeExtensions/4.1.0": {
+ "System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -2944,14 +3012,14 @@
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
}
},
- "System.Resources.Reader/4.0.0": {
+ "System.Resources.Reader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Resources.Reader.dll": {}
@@ -2960,79 +3028,94 @@
"lib/netstandard1.0/System.Resources.Reader.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.dll": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
- "System.Runtime.Handles/4.0.1": {
+ "System.Runtime.Handles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
@@ -3044,12 +3127,12 @@
}
}
},
- "System.Runtime.Loader/4.0.0": {
+ "System.Runtime.Loader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -3058,13 +3141,13 @@
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.Numerics.dll": {}
@@ -3073,11 +3156,11 @@
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
+ "System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
@@ -3086,16 +3169,16 @@
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "System.Security.Claims/4.0.1": {
+ "System.Security.Claims/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
@@ -3104,27 +3187,32 @@
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
+ "System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "unix"
@@ -3135,20 +3223,20 @@
}
}
},
- "System.Security.Cryptography.Cng/4.2.0": {
+ "System.Security.Cryptography.Cng/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -3164,22 +3252,22 @@
}
}
},
- "System.Security.Cryptography.Csp/4.0.0": {
+ "System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Csp.dll": {}
@@ -3195,21 +3283,21 @@
}
}
},
- "System.Security.Cryptography.Encoding/4.0.0": {
+ "System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
@@ -3225,22 +3313,22 @@
}
}
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -3255,16 +3343,16 @@
}
}
},
- "System.Security.Cryptography.Primitives/4.0.0": {
+ "System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
@@ -3273,34 +3361,34 @@
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Cng": "4.2.0",
- "System.Security.Cryptography.Csp": "4.0.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
@@ -3316,10 +3404,10 @@
}
}
},
- "System.Security.Principal/4.0.1": {
+ "System.Security.Principal/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Security.Principal.dll": {}
@@ -3328,23 +3416,23 @@
"lib/netstandard1.0/System.Security.Principal.dll": {}
}
},
- "System.Security.Principal.Windows/4.0.0": {
+ "System.Security.Principal.Windows/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
@@ -3360,12 +3448,12 @@
}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.dll": {}
@@ -3401,28 +3489,28 @@
}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -3431,28 +3519,23 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.dll": {}
@@ -3461,13 +3544,13 @@
"lib/netstandard1.3/System.Threading.dll": {}
}
},
- "System.Threading.Overlapped/4.0.1": {
+ "System.Threading.Overlapped/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -3483,31 +3566,31 @@
}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Tasks.dll": {}
}
},
- "System.Threading.Tasks.Dataflow/4.6.0": {
+ "System.Threading.Tasks.Dataflow/4.7.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
@@ -3516,12 +3599,12 @@
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
@@ -3530,17 +3613,17 @@
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
}
},
- "System.Threading.Tasks.Parallel/4.0.1": {
+ "System.Threading.Tasks.Parallel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
@@ -3549,10 +3632,10 @@
"lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
}
},
- "System.Threading.Thread/4.0.0": {
+ "System.Threading.Thread/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Thread.dll": {}
@@ -3561,11 +3644,11 @@
"lib/netstandard1.3/System.Threading.Thread.dll": {}
}
},
- "System.Threading.ThreadPool/4.0.10": {
+ "System.Threading.ThreadPool/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
@@ -3574,35 +3657,35 @@
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -3611,21 +3694,21 @@
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -3723,20 +3806,17 @@
"lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
}
},
- "xunit/2.2.0-beta2-build3300": {
+ "xunit/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.assert": "[2.2.0-beta2-build3300]",
- "xunit.core": "[2.2.0-beta2-build3300]"
+ "xunit.assert": "[2.2.0-beta4-build3444]",
+ "xunit.core": "[2.2.0-beta4-build3444]"
}
},
- "xunit.abstractions/2.0.1-rc2": {
+ "xunit.abstractions/2.0.1": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11-rc2-24027",
- "System.Diagnostics.Tools": "4.0.1-rc2-24027",
- "System.Reflection": "4.1.0-rc2-24027",
- "System.Runtime": "4.1.0-rc2-24027"
+ "NETStandard.Library": "1.6.0"
},
"compile": {
"lib/netstandard1.0/xunit.abstractions.dll": {}
@@ -3745,7 +3825,7 @@
"lib/netstandard1.0/xunit.abstractions.dll": {}
}
},
- "xunit.assert/2.2.0-beta2-build3300": {
+ "xunit.assert/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
"NETStandard.Library": "1.6.0"
@@ -3757,18 +3837,18 @@
"lib/netstandard1.0/xunit.assert.dll": {}
}
},
- "xunit.core/2.2.0-beta2-build3300": {
+ "xunit.core/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.extensibility.core": "[2.2.0-beta2-build3300]",
- "xunit.extensibility.execution": "[2.2.0-beta2-build3300]"
+ "xunit.extensibility.core": "[2.2.0-beta4-build3444]",
+ "xunit.extensibility.execution": "[2.2.0-beta4-build3444]"
}
},
- "xunit.extensibility.core/2.2.0-beta2-build3300": {
+ "xunit.extensibility.core/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
"NETStandard.Library": "1.6.0",
- "xunit.abstractions": "2.0.1-rc2"
+ "xunit.abstractions": "2.0.1"
},
"compile": {
"lib/netstandard1.0/xunit.core.dll": {}
@@ -3777,11 +3857,11 @@
"lib/netstandard1.0/xunit.core.dll": {}
}
},
- "xunit.extensibility.execution/2.2.0-beta2-build3300": {
+ "xunit.extensibility.execution/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
"NETStandard.Library": "1.6.0",
- "xunit.extensibility.core": "[2.2.0-beta2-build3300]"
+ "xunit.extensibility.core": "[2.2.0-beta4-build3444]"
},
"compile": {
"lib/netstandard1.0/xunit.execution.dotnet.dll": {}
@@ -3819,37 +3899,37 @@
},
"Lite.Web/1.0.0": {
"type": "project",
- "framework": ".NETCoreApp,Version=v1.0",
+ "framework": ".NETCoreApp,Version=v1.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.1",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Logging.Console": "1.0.0",
- "Microsoft.Extensions.Logging.Debug": "1.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
- "Microsoft.NETCore.App": "1.0.1"
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Logging.Console": "1.1.0",
+ "Microsoft.Extensions.Logging.Debug": "1.1.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0",
+ "Microsoft.NETCore.App": "1.1.0"
},
"compile": {
- "netcoreapp1.0/Lite.Web.dll": {}
+ "netcoreapp1.1/Lite.Web.dll": {}
},
"runtime": {
- "netcoreapp1.0/Lite.Web.dll": {}
+ "netcoreapp1.1/Lite.Web.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Abstractions/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.TestHost": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "MyTested.AspNetCore.Mvc.Configuration": "1.0.0",
- "MyTested.AspNetCore.Mvc.Licensing": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.TestHost": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Configuration": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Licensing": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
@@ -3858,12 +3938,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Configuration/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Configuration/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "1.0.0",
- "System.Collections.Concurrent": "4.0.12"
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0",
+ "System.Collections.Concurrent": "4.3.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Configuration.dll": {}
@@ -3872,11 +3952,11 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Configuration.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Controllers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Controllers/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Controllers.dll": {}
@@ -3885,12 +3965,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Controllers.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Licensing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Licensing/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.4",
"dependencies": {
- "NETStandard.Library": "1.6.0",
- "System.Security.Cryptography.Csp": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Cryptography.Csp": "4.3.0"
},
"compile": {
"netstandard1.4/MyTested.AspNetCore.Mvc.Licensing.dll": {}
@@ -3899,14 +3979,14 @@
"netstandard1.4/MyTested.AspNetCore.Mvc.Licensing.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Lite/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Lite/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewActionResults": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewComponents": "1.0.0"
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewActionResults": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewComponents": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Lite.dll": {}
@@ -3915,12 +3995,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Lite.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewActionResults/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewActionResults/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewActionResults.dll": {}
@@ -3929,12 +4009,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewActionResults.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewComponents/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewComponents/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewComponents.dll": {}
@@ -3985,7 +4065,7 @@
}
}
},
- "Libuv/1.9.0": {
+ "Libuv/1.9.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
@@ -4025,13 +4105,15 @@
}
}
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -4040,11 +4122,12 @@
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
@@ -4053,13 +4136,14 @@
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
@@ -4068,8 +4152,11 @@
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
},
@@ -4077,15 +4164,16 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Security",
@@ -4099,8 +4187,11 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
},
@@ -4108,10 +4199,10 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -4120,23 +4211,23 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.dll": {}
@@ -4145,15 +4236,16 @@
"lib/net451/Microsoft.AspNetCore.Hosting.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -4162,11 +4254,12 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -4175,12 +4268,11 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -4189,15 +4281,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
@@ -4206,11 +4299,13 @@
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -4219,13 +4314,14 @@
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -4234,10 +4330,11 @@
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -4246,12 +4343,13 @@
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {}
@@ -4260,36 +4358,27 @@
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "9.0.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
@@ -4298,19 +4387,20 @@
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
@@ -4319,11 +4409,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -4332,10 +4423,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -4344,20 +4436,22 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -4366,11 +4460,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -4379,11 +4474,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.ComponentModel.DataAnnotations"
@@ -4395,11 +4491,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -4408,13 +4505,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -4423,13 +4521,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -4438,12 +4537,13 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -4452,13 +4552,15 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -4467,18 +4569,19 @@
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0"
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -4487,8 +4590,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
},
@@ -4496,11 +4602,12 @@
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Xml",
@@ -4513,14 +4620,27 @@
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.1": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "1.1.0"
+ },
+ "compile": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
@@ -4529,10 +4649,11 @@
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -4541,15 +4662,16 @@
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
@@ -4558,16 +4680,16 @@
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
}
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Numerics.Vectors": "4.1.1",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "Libuv": "1.9.1",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {}
@@ -4576,10 +4698,11 @@
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {}
}
},
- "Microsoft.AspNetCore.TestHost/1.0.0": {
+ "Microsoft.AspNetCore.TestHost/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting": "1.0.0"
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Net.Http"
@@ -4591,12 +4714,14 @@
"lib/net451/Microsoft.AspNetCore.TestHost.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -4637,7 +4762,7 @@
"lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"Microsoft.CSharp"
@@ -4701,6 +4826,15 @@
"lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
}
},
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ }
+ },
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
"type": "package",
"dependencies": {
@@ -4717,13 +4851,11 @@
"lib/net451/Microsoft.DotNet.ProjectModel.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -4732,12 +4864,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -4746,17 +4879,11 @@
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0": {
+ "Microsoft.Extensions.Configuration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
@@ -4765,11 +4892,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -4778,11 +4905,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
@@ -4791,10 +4919,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
@@ -4803,11 +4932,12 @@
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
@@ -4816,11 +4946,12 @@
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -4830,15 +4961,11 @@
"lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -4847,16 +4974,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -4865,10 +4987,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -4878,12 +5000,11 @@
"lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -4892,10 +5013,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -4904,11 +5026,12 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -4917,21 +5040,22 @@
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -4940,13 +5064,14 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Localization.dll": {}
@@ -4955,12 +5080,11 @@
"lib/net451/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -4969,12 +5093,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -4983,18 +5107,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -5003,12 +5119,12 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Logging.Console.dll": {}
@@ -5017,10 +5133,11 @@
"lib/net451/Microsoft.Extensions.Logging.Console.dll": {}
}
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Logging.Debug.dll": {}
@@ -5029,8 +5146,11 @@
"lib/net451/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
},
@@ -5038,20 +5158,13 @@
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -5060,13 +5173,14 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0": {
+ "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Binder": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
@@ -5075,8 +5189,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
@@ -5084,11 +5201,11 @@
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -5112,31 +5229,28 @@
"lib/net451/Microsoft.Extensions.Testing.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
},
"runtime": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
- }
- },
- "Microsoft.Net.Http.Headers/1.0.0": {
- "type": "package",
- "dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ }
+ },
+ "Microsoft.Net.Http.Headers/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -5145,7 +5259,7 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -5166,6 +5280,42 @@
"lib/net45/Moq.dll": {}
}
},
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
@@ -5271,7 +5421,7 @@
"lib/net45/NuGet.Versioning.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -5280,7 +5430,7 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -5293,7 +5443,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5305,7 +5455,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
@@ -5314,7 +5464,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5326,7 +5476,7 @@
"lib/net45/_._": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -5339,10 +5489,10 @@
"lib/net45/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel.Primitives": "4.1.0"
+ "System.ComponentModel.Primitives": "4.3.0"
},
"frameworkAssemblies": [
"System",
@@ -5355,7 +5505,7 @@
"lib/net45/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5364,7 +5514,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5376,7 +5526,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
@@ -5385,7 +5535,28 @@
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Globalization/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5394,7 +5565,7 @@
"lib/net45/_._": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5406,7 +5577,19 @@
"lib/net45/_._": {}
}
},
- "System.Linq/4.1.0": {
+ "System.IO.Compression/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.IO.Compression"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -5418,7 +5601,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -5430,7 +5613,31 @@
"lib/net45/_._": {}
}
},
- "System.Numerics.Vectors/4.1.1": {
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.Net.Http"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Numerics.Vectors/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
@@ -5439,7 +5646,19 @@
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5448,7 +5667,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5457,10 +5676,10 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Metadata/1.3.0": {
+ "System.Reflection.Metadata/1.4.1": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "1.2.0"
+ "System.Collections.Immutable": "1.3.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
@@ -5469,7 +5688,16 @@
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5478,7 +5706,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -5492,7 +5720,16 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -5504,7 +5741,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -5517,7 +5754,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
@@ -5536,10 +5773,10 @@
}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"frameworkAssemblies": [
- "System.Runtime.Serialization"
+ "System.Numerics"
],
"compile": {
"ref/net45/_._": {}
@@ -5548,7 +5785,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5557,7 +5794,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -5566,7 +5803,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -5575,7 +5812,19 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Threading/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -5588,7 +5837,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -5600,7 +5849,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
@@ -5609,14 +5858,47 @@
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
- "xunit/2.2.0-beta2-build3300": {
+ "System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/net451/_._": {}
+ },
+ "runtime": {
+ "lib/net451/_._": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.Xml"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "xunit/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.assert": "[2.2.0-beta2-build3300]",
- "xunit.core": "[2.2.0-beta2-build3300]"
+ "xunit.assert": "[2.2.0-beta4-build3444]",
+ "xunit.core": "[2.2.0-beta4-build3444]"
}
},
- "xunit.abstractions/2.0.1-rc2": {
+ "xunit.abstractions/2.0.1": {
"type": "package",
"compile": {
"lib/net35/xunit.abstractions.dll": {}
@@ -5625,7 +5907,7 @@
"lib/net35/xunit.abstractions.dll": {}
}
},
- "xunit.assert/2.2.0-beta2-build3300": {
+ "xunit.assert/2.2.0-beta4-build3444": {
"type": "package",
"compile": {
"lib/netstandard1.0/xunit.assert.dll": {}
@@ -5634,17 +5916,17 @@
"lib/netstandard1.0/xunit.assert.dll": {}
}
},
- "xunit.core/2.2.0-beta2-build3300": {
+ "xunit.core/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.extensibility.core": "[2.2.0-beta2-build3300]",
- "xunit.extensibility.execution": "[2.2.0-beta2-build3300]"
+ "xunit.extensibility.core": "[2.2.0-beta4-build3444]",
+ "xunit.extensibility.execution": "[2.2.0-beta4-build3444]"
}
},
- "xunit.extensibility.core/2.2.0-beta2-build3300": {
+ "xunit.extensibility.core/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.abstractions": "2.0.1-rc2"
+ "xunit.abstractions": "2.0.1"
},
"compile": {
"lib/net45/xunit.core.dll": {}
@@ -5653,10 +5935,10 @@
"lib/net45/xunit.core.dll": {}
}
},
- "xunit.extensibility.execution/2.2.0-beta2-build3300": {
+ "xunit.extensibility.execution/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.extensibility.core": "[2.2.0-beta2-build3300]"
+ "xunit.extensibility.core": "[2.2.0-beta4-build3444]"
},
"compile": {
"lib/net45/xunit.execution.desktop.dll": {}
@@ -5693,17 +5975,17 @@
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.1",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Logging.Console": "1.0.0",
- "Microsoft.Extensions.Logging.Debug": "1.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Logging.Console": "1.1.0",
+ "Microsoft.Extensions.Logging.Debug": "1.1.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0"
},
"compile": {
"net451/Lite.Web.dll": {}
@@ -5712,15 +5994,15 @@
"net451/Lite.Web.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Abstractions/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.TestHost": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "MyTested.AspNetCore.Mvc.Configuration": "1.0.0",
- "MyTested.AspNetCore.Mvc.Licensing": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.TestHost": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Configuration": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Licensing": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
@@ -5729,11 +6011,11 @@
"net451/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Configuration/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Configuration/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "1.0.0"
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Configuration.dll": {}
@@ -5742,11 +6024,11 @@
"net451/MyTested.AspNetCore.Mvc.Configuration.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Controllers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Controllers/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Controllers.dll": {}
@@ -5755,7 +6037,7 @@
"net451/MyTested.AspNetCore.Mvc.Controllers.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Licensing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Licensing/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"compile": {
@@ -5765,14 +6047,14 @@
"net451/MyTested.AspNetCore.Mvc.Licensing.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Lite/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Lite/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewActionResults": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewComponents": "1.0.0"
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewActionResults": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewComponents": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Lite.dll": {}
@@ -5781,12 +6063,12 @@
"net451/MyTested.AspNetCore.Mvc.Lite.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewActionResults/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewActionResults/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.ViewActionResults.dll": {}
@@ -5795,12 +6077,12 @@
"net451/MyTested.AspNetCore.Mvc.ViewActionResults.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewComponents/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewComponents/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.ViewComponents.dll": {}
@@ -5873,12 +6155,12 @@
"runtimes/win7-x86/lib/net451/dotnet-test-xunit.exe"
]
},
- "Libuv/1.9.0": {
- "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==",
+ "Libuv/1.9.1": {
+ "sha512": "uqX2Frwf9PW8MaY7PRNY6HM5BpW1D8oj1EdqzrmbEFD5nH63Yat3aEjN/tws6Tw6Fk7LwmLBvtUh32tTeTaHiA==",
"type": "package",
- "path": "Libuv/1.9.0",
+ "path": "Libuv/1.9.1",
"files": [
- "Libuv.1.9.0.nupkg.sha512",
+ "Libuv.1.9.1.nupkg.sha512",
"Libuv.nuspec",
"License.txt",
"runtimes/debian-x64/native/libuv.so",
@@ -5891,12 +6173,12 @@
"runtimes/win7-x86/native/libuv.dll"
]
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
- "sha512": "MMevi8HnI5GxtNOS9ZqZLuNafltbngXsOrNqyykFveMWFN5a3AfAB7I0qU77tBS9B/N3boRQuyT9AR0BsCQbaw==",
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
+ "sha512": "6HM8/rsSGAQybSZ9sNP2f0Xqh507OJu3kvqRksXeHUXV72yuwFpnauGkfIMSt+gwPSvyk8qGqZB2m4sKCUomhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Antiforgery/1.0.1",
+ "path": "Microsoft.AspNetCore.Antiforgery/1.1.0",
"files": [
- "Microsoft.AspNetCore.Antiforgery.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Antiforgery.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Antiforgery.nuspec",
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
"lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
@@ -5904,12 +6186,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
]
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
- "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==",
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
+ "sha512": "dqveE6pqsnzkab2vw+aFExFYeCikF/T+GKZW9ki8dwJuN7M2+jJcgWtYAv83q7NjBARVh2xH8xf0ahzeuXL/WQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authorization/1.0.0",
+ "path": "Microsoft.AspNetCore.Authorization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authorization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authorization.nuspec",
"lib/net451/Microsoft.AspNetCore.Authorization.dll",
"lib/net451/Microsoft.AspNetCore.Authorization.xml",
@@ -5917,12 +6199,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
]
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
- "sha512": "fC8lWOU3+ltkbgQyD1P7eRQ66fGfZkPNU2UkwOI8tyF5FUsd8nRTfzvsO4mSyQfgmgfk2Hc8TGzx/okevZwXkg==",
+ "Microsoft.AspNetCore.Cors/1.1.0": {
+ "sha512": "GtBPVpgjHIO8R+0xXyh9BHTYq4+XKpwfuy9Uo2Iza4mYzfQI06CsJh5p+qkjIxQzroIXN5XNGNnVS9dURR0zBA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cors/1.0.0",
+ "path": "Microsoft.AspNetCore.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cors.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Cors.xml",
@@ -5930,12 +6212,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
- "sha512": "0btvxwOqYNpKTUQrD7LA3p6Wi0vrhfWGBVqIKPS1KtEdkCv3QoVgFO4eJYuClGDS9NXhqk7TWh46/8x8wtZHaw==",
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
+ "sha512": "Oy0pgxQkusvQwIrwbHvGVZhwk59qRVKxcer6HsWw0jCEq2LoQ7mj7x7DovE5ub8UvffLYWx77NMF5uwPtkl8KA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.Internal/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.Internal.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.Internal.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.Internal.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
@@ -5943,12 +6225,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
]
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
- "sha512": "gt4URT+8ljPk0ePspLqOGPJBm+s6iMvsZqweplhf7wiZSjFiG1uYBNpQ/0dFY7wSx3NMRjekyXzCjvkGAV570g==",
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
+ "sha512": "wu8pk94CExaLvwwDSnXkTtsdL8mRxbLH8uCKbbPqbtIstSM6bOw/454OvOYKf61BB+It//ItJJYdZTy2j8Kelw==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.xml",
@@ -5956,12 +6238,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
]
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
- "sha512": "h5ycDgkqmRdManmYMQVJgzNI7YtVp2X2/os1cKmdfrpfq+m9L8bMKhbd7PCksoLci+aYTOSn45khPl+hpPb9ug==",
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
+ "sha512": "WW6qKPh9A5lNh/bFlXIMttlbLmm2K0O3kyZuFIlL4ShOMyhrJeCHoWPWQ+S5eUBdcuOnd9sPwhlmI5Nvb3NjMA==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
@@ -5969,36 +6251,38 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
- "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
+ "sha512": "OTLXdoqnhxGzjBewpKiil8C8RzaLMCiWjGDIkr/5kdTNhD0LGT1Dobqprqbg9nKpS99ykJisOguFDTtxpoeSFg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
- "sha512": "0M7ZRAxTmGHOQV3B5Lm30VBg33uxxkPIKAxMc/C9yFBMPWPfk6V1uvb2ZL5eEPlo9/MZooITyMcGBQUHiakFjg==",
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
+ "sha512": "yNiCwtCi1mYfTjLyHWQt4A3QRd84ok8XxuTP4wSnr6aT3bIzI7upstGe7diaEDirmku10qnISC/8CsMTG4xd4w==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.xml",
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll",
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml"
+ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml",
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll",
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
- "sha512": "8r6qOl1jYyC523ZKM1QNl+6ijIoYWELWm0tpEWqtTIOg9DytHJWshB7usgqiuRmfHXM0EUziR6ouFY7iP7Tuzw==",
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
+ "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
@@ -6006,12 +6290,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
- "sha512": "sHZyhQEoW15T9E36rfdm5Ux6a6RZB0KNM79ccf2IplWASqmlRGhX4ydU3dzQRLhkHpLx16fnWOL0KScsO6BevQ==",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
+ "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
@@ -6019,23 +6303,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
- "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==",
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
+ "sha512": "+zN+RCEAJwzeFfsGIRkNn7NQ0/hrLEKHeKQNegqMRTr42JhuJZfPE+Negz7W/WkgFB3ZQQd9QTth9I3BDlsHzQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Html.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Html.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Html.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http/1.0.0": {
- "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==",
+ "Microsoft.AspNetCore.Http/1.1.0": {
+ "sha512": "N5ejgXmkUH/CQA+lz18HQb9cDZdA365Tm128yYyP34N46uiR9NswEDravug2DXrRiTo+2hOwPT1Tvby3Cdf6lQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http/1.0.0",
+ "path": "Microsoft.AspNetCore.Http/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.dll",
"lib/net451/Microsoft.AspNetCore.Http.xml",
@@ -6043,12 +6327,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
]
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
- "sha512": "OJHlqdJOWKKBfsiVdX4Z4KCNuqvBIu6+1MVKuejRDyHnGyMkNHNoP/dtVzhPqvJXaJg9N4HlD0XNc6GDCFVffg==",
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
+ "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
@@ -6056,12 +6340,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
- "sha512": "GlvCPRpnw2jjHLdbGf/C28NQZLMeX1mugv5BS1a3FCQOJYyuwQZil4JwblR0frLyVrUVoJQ7UXRNZIzEVlO5XA==",
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
+ "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Extensions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Extensions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Extensions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
@@ -6069,12 +6353,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
]
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
- "sha512": "6x7zgfbTo1gL9xMEb7EMO2ES/48bqwnWyfH09z+ubWhnzxdhHls8rtqstPylu5FPD9nid6Vo2pgDm5vufRAy5Q==",
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
+ "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Features/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Features.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Features.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Features.dll",
"lib/net451/Microsoft.AspNetCore.Http.Features.xml",
@@ -6082,12 +6366,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
]
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
- "sha512": "gHpdaaAzhaTWJZuJVo3ler2zzdQWrm8wnsoSjcNtoZZdTOkwImndRwK8o4GYoM18dfmfNheM7i4EENI7XHM/lA==",
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
+ "sha512": "nvNbiYTQZhOWIT9zjhbzIMJTRwcJXGx8DqzMRKcrlGeRNG9ysa3M/hEBrxAp8NKIJeVtnp/n46MhLgmx0CLJWw==",
"type": "package",
- "path": "Microsoft.AspNetCore.HttpOverrides/1.0.0",
+ "path": "Microsoft.AspNetCore.HttpOverrides/1.1.0",
"files": [
- "Microsoft.AspNetCore.HttpOverrides.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.HttpOverrides.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.HttpOverrides.nuspec",
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll",
"lib/net451/Microsoft.AspNetCore.HttpOverrides.xml",
@@ -6095,23 +6379,25 @@
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.xml"
]
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
- "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==",
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
+ "sha512": "/mADp5Q1I3oeptoCF8mmAFDMGvlDCLSBatsKCXxk5vQYZUyzOLxoiHgW5QowgIdwnd3AHPmFDib5vm8U2B6q7g==",
"type": "package",
- "path": "Microsoft.AspNetCore.JsonPatch/1.0.0",
+ "path": "Microsoft.AspNetCore.JsonPatch/1.1.0",
"files": [
- "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.JsonPatch.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.JsonPatch.nuspec",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml"
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.xml"
]
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
- "sha512": "DF/maMd9f6ZPoTlU8n6/AGm3fpZNPiiip34bPrBQuloX2a5O0KwyV72qKhJhJNqmVVnDnTu8XYT16ysoFXRxQA==",
+ "Microsoft.AspNetCore.Localization/1.1.0": {
+ "sha512": "Px52xLst9/G4dyGt3fSTIZU3aZoz0IOVoInW/M1WRCOM5DzCkLzPYXOHMpQkc8ZVx7YZmHnB8p9IrvNNyjPO6A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Localization/1.0.0",
+ "path": "Microsoft.AspNetCore.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Localization.xml",
@@ -6119,12 +6405,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
- "sha512": "Perrv2s4hzMbYR/kanzUqcfzxXLo6CThoilhMg7UQXeXEvOtpbDKx0HGimN/pt6Dy2wt3WOQAjAiM1Z8KoRgaA==",
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
+ "sha512": "TDcIjBQRfYAkbcvlU+lMHC0RpuTTSzULEdA0+HvoGgHz6y0Q4wo8CEAWpaRjvt3y3mneuq56d6CReMleFDDd5Q==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.xml",
@@ -6132,12 +6418,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
- "sha512": "Xa9XOA/NEIGSUSyAtc0rQrTRJKcxN8rzvBy0QJn2tRAXVeXc0Lbx4/1ia9kxyn3ygbjhF6bO90ZnC3Z3a2cq5g==",
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
+ "sha512": "r0OA3N1Onua8AcTtFYpK03K3WdwJBL3iFW4XzfMA49ZmAKGf1ARAlrt6Q8WCdBI7nFDJCc1/bdMJ0ozWaq9rhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Abstractions.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
@@ -6145,12 +6431,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
- "sha512": "ntjDDV+g6eveL67fsvGIY7BqZmaR2XYlZpsrXxzjSWKSYBzDfWaUJna5dsPty0hOwz7DCMNbWYrpD+XEr+H0jA==",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
+ "sha512": "cS2ZVqnh9Db3JU5zgw0SRKSYJ/0aYfLDeYRpgJGwjwMsMNa9pw4JK1H3NLkhs7zRAtoet6asXMEZwqFtO/STbw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ApiExplorer.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ApiExplorer.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
@@ -6158,12 +6444,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
- "sha512": "TfUFH0HYbL3DCGkWE24gUDnHoa3pCr4b6xbUiQTnqIbIXdL79qW8mTtfD+RHmAN5bsf1J1fndJJ84/jKri+kiw==",
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
+ "sha512": "6Gxoe6MJPbc9yVx7IEkDlzfNRzQ+JSvlVmFvugoNbpWAefU2F8d76aj7oiGewucXVI8c7oZ1Q0+rx7059j7/fA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Core/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Core/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Core.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Core.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Core.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
@@ -6171,12 +6457,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
- "sha512": "s3Pabc4x5K1xtCpNv/oVAuFyj2Lq+z+qYkmrRqbnqVt+8V39FoW3znPjbVCNu5CjrYSQL2fm3irJ3pM7WLsI/g==",
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
+ "sha512": "0E+RHtEsYwzkbXvLVC81Vu8Mtp24BC9RMuN8RGjeWzwRHDeZaY9erGtoei/2GiFj+3DpqvCzFsRhKp/yVCzrOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Cors/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Cors.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.xml",
@@ -6184,12 +6470,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.xml"
]
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
- "sha512": "y3QkHvOI+vopfhncU9NpUH2MvtZ2Z0EfnApb92jqbmfWL1wd5Np3SHrFSXgI4zVLlM38dMa/QU2SYM3e4T7fFQ==",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
+ "sha512": "kV7IfXeoehKpX0zPrjZ/B1RKnHSKQfmOnXKxupGXuNY64Ly2JgJh+XAxPLQtYy2jUIwRG3PWNhVkWZIazq82wg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
@@ -6197,12 +6483,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
- "sha512": "wM12hSUlF0Eqed44psOYT4fY/RRjMx049A4bBUfqiGr1UFU54zTR8djRLW0dIp1w7Xv5WQ/bgG9jyqiaRbv6jg==",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
+ "sha512": "NHPfvDnqA21/2pa5Uxe7vfO2sZ1sTafSR/L1pGhQxjTUnVQ2k0X3M3wFKPpM9UH9co9Bx3KjV0AcurbfEaCQvA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
@@ -6210,12 +6496,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
- "sha512": "s6Q7l9UtJ/sYxvsbjXuA+5RdKQ70OSLQSLs+UAWrwMtHm9XKTr51gmcG1t1gkWN5f39WSkzJs2brB9fJkFcgvw==",
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
+ "sha512": "XDLAPLW5hdkO8h6Ki4Du/Dw5NUfIsiDDoyaHkzDL5gX5TxOot0bdw/QClIQ65SJqpjuvIZxZXrJV/MFDKwjZ2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Localization/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Localization.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.xml",
@@ -6223,12 +6509,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
- "sha512": "Rc1dkP5LZcuxicrmUTFMfrRF8+id9iVSOA3/DjhO036b7g7BBvknLHKtbbsQ59COB9D8fr9MwKF2Eb99TSCJvg==",
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
+ "sha512": "GKfZhs4I14auXrlOcUHyHVx1zOLt3MeVw2KcABFD8Y8jyVOELj/mnIucREBG73Us4HcT127qenBFkdkz6F/SOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.xml",
@@ -6236,12 +6522,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
- "sha512": "7A9D7ufew8iYmhK/3w05ZdTGGOi9oNzAqy0BJNNF2rm2n9uImquzPmmoCWXFnar7QawVzhXE+ZMSXRUH9n6Glg==",
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
+ "sha512": "9Qi+KEVkmGfXXjfsciKRVJU/EOVm2AYMZuaDiFCJslEll/OTzXnTlKerj4jFbxB3PB1VRqwPL/HIawRGUouruA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.Host.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.Host.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.Host.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.xml",
@@ -6249,12 +6535,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.xml"
]
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
- "sha512": "QadZAsqoIc2D5zceTdLtNnyJALkdhoTIiqvlDlO0SgyPBisyUe4gDEiygwSnLzm8NZ+kKSFhNuX+t+b1O2uIVw==",
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
+ "sha512": "qQz5KEv097INfR7T9Q9kiEi2MY3jdGthU9XW5N6UFrHgFGjMZwra/oCyu/9DsTueW+4zk0cCo5SCneXwHR9uRA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.TagHelpers.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.TagHelpers.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.TagHelpers.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
@@ -6262,12 +6548,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
- "sha512": "1zGeF76JEqvocxdM+H5n/vJunUUVNzKK4LmgnaFdrrCDTrI6MVdok+8TBBUbeI+uNk3ssrLnP3EcHIdvxl66gw==",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
+ "sha512": "Odd9+gRi4DCH3RalGZEdS0xLRcUh8LV9UTCnOVjGwotI1i6Fk2VSxtkAxrVRMd44BL0WfRqJFiTkCixxA2zFig==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
@@ -6275,12 +6561,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
]
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
- "sha512": "+vhlFn8n45hj1M91HYVm2ryLMZ+ZYR/OUdBVE8aUzkvkTVF+3UnNxSY3hAEugcgcbf9/XQTE+DDxEgN4LdYEjg==",
+ "Microsoft.AspNetCore.Razor/1.1.0": {
+ "sha512": "hChh+W6UG0C8aink3KWuX7flFuAiTPrCBfh68fbRJ1sLPk0ELmj6c3zm+VgNXaHEh2OpT/O0eN5XpS1rQ/FcbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Razor.xml",
@@ -6288,12 +6574,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.xml"
]
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
- "sha512": "hsq6xJeqDDb78akZuy79QE3kaCxcigD3vccbIaNrrz7JSXOzayfteF06ToK+J1SXSDRtrBj3XZZfrjiqIY/vCw==",
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
+ "sha512": "hQW8+DRFHCHmTzviW54umnBfX1vc9bv/390r62k85LQsUd5Lo59QQ+IyD5fe6o9g/h946IF8Yl25wd6dEk7YqA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor.Runtime/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor.Runtime/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.Runtime.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.Runtime.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.Runtime.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.xml",
@@ -6301,12 +6587,25 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.xml"
]
},
- "Microsoft.AspNetCore.Routing/1.0.1": {
- "sha512": "uddFeoL8aRYSlyl+zcBnHlrtRIkp1AEfPNBIiBjNJ4b9PMApTWIpvy8OdyXUksV+bM6TciA23zFfNvzZWIlG/Q==",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "sha512": "Mdj0FP6fP44sYaSRmhUBEpOXnN3kykpd0/8e48iEoSybId5x5XreIeDEEhTYF+r/QA7H8Y33fjVR1cP996OgDA==",
+ "type": "package",
+ "path": "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0",
+ "files": [
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.1.1.0.nupkg.sha512",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.nuspec",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml"
+ ]
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "sha512": "wrD6DOWc4/euIujz7trLrF3zGVMxOGKRPzYl4e2NFOE/uXz95EnNBHkNuN0Xcgx3xVcb08TMxkoFNT3A+WC0XA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing/1.0.1",
+ "path": "Microsoft.AspNetCore.Routing/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.dll",
"lib/net451/Microsoft.AspNetCore.Routing.xml",
@@ -6314,12 +6613,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
]
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.1": {
- "sha512": "Vjjt7TVG0S7ozWyD7vbdy9oQ2LIWebE18hUBM1WMmLPz83w3b8+MKUjz8nP5AnnHXxQskQ5WhYMkICETgXnb+g==",
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
+ "sha512": "/kaFZW4AjHPOIMnqXHGl/KdHxUGOVm9z/U0t3JtKmK5OFnsfuLsUIH2QN2PtXNeOm1eh5Ux2XEyg6YRBgXfPgA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.1",
+ "path": "Microsoft.AspNetCore.Routing.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.Abstractions.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
@@ -6327,12 +6626,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
- "sha512": "xmn6EivvL4Ymo7LP+Jc49WLcIiYsUiujZo0loEbAg473nY2dIHxcxncpFAKzPf/MzqN0qBtaXEP0igYJ813H3Q==",
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
+ "sha512": "Z/K/RsUUh6Cfc8W+uP0IeXu8NJP/7li+E3ep+u4t9McrDUdJMrfgfBSPC5SrrUkTZjrt9udQS6JLrB6v3b8pag==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.IISIntegration/1.0.0",
+ "path": "Microsoft.AspNetCore.Server.IISIntegration/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.IISIntegration.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.IISIntegration.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.IISIntegration.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll",
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.xml",
@@ -6340,12 +6639,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.xml"
]
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
- "sha512": "GrTVDsRR6j2WrrTuNsZkG1R8aV1UbsA8TKUD+MKVSpXIoEpQNryCT181Zu94CARowQwFQdW4Q1DwfO4FdAhXiQ==",
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
+ "sha512": "PbVYQUVxOwtrl9YCnw8ykXSufELVeEuASYahVh1F7B4LYVtcqwyV5+FhXlJkboGM4ozKMrdhB5w/tlLLcmHxNA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.Kestrel/1.0.1",
+ "path": "Microsoft.AspNetCore.Server.Kestrel/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.Kestrel.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.Kestrel.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.Kestrel.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll",
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.xml",
@@ -6353,12 +6652,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.xml"
]
},
- "Microsoft.AspNetCore.TestHost/1.0.0": {
- "sha512": "z2rOPiCMzRgFO318xDg2iyXeY/3hRHwL0Es/o6/qzLvrW/psLV+Qlh/50mWBZX8clVcRM8r5nTSE+m3lkYOddw==",
+ "Microsoft.AspNetCore.TestHost/1.1.0": {
+ "sha512": "0q+jjIMwgs3hcZWI95Y3YUfL4P/MZYltC59vGQbO78ozwthNvanDBBCvaM/awJ8PVL4CWiSmo8BOgL0HskE57A==",
"type": "package",
- "path": "Microsoft.AspNetCore.TestHost/1.0.0",
+ "path": "Microsoft.AspNetCore.TestHost/1.1.0",
"files": [
- "Microsoft.AspNetCore.TestHost.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.TestHost.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.TestHost.nuspec",
"lib/net451/Microsoft.AspNetCore.TestHost.dll",
"lib/net451/Microsoft.AspNetCore.TestHost.xml",
@@ -6366,12 +6665,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.TestHost.xml"
]
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
- "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==",
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
+ "sha512": "9w3aHPRUAx+1xOTcsZF6AJCS42viNqWeTcgIE1dmlK/G3NCFkes+MVxwvKt9U9pFIomxqRnD+MGRoBeruEKPbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.WebUtilities/1.0.0",
+ "path": "Microsoft.AspNetCore.WebUtilities/1.1.0",
"files": [
- "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.WebUtilities.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.WebUtilities.nuspec",
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
"lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
@@ -6380,7 +6679,7 @@
]
},
"Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
+ "sha512": "jICz4qN7C8Hq8d5UF0LzqeOTqJMuy21cRDCW8N8K3yiojIhQQ+hAwlcUp7yh4gJOcqh7iEWg/5jlZmXbefO00Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
"files": [
@@ -6396,7 +6695,7 @@
]
},
"Microsoft.CodeAnalysis.Common/1.3.0": {
- "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==",
+ "sha512": "hVgAQZDvOO8LpuhAO557wlqwivTSTstAIIknHTK8y62utH9PgdwEey0TDzJRanReEMTFR3bzdvoFXOe2/X6BGw==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Common/1.3.0",
"files": [
@@ -6412,7 +6711,7 @@
]
},
"Microsoft.CodeAnalysis.CSharp/1.3.0": {
- "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==",
+ "sha512": "8fqBJ4I+IH71mTs+F2w9U/UpJz2pbuO+9XicOxN1pUWU6UZlPgRMwS8e+rcnJp5sgz7tXrB2JoCoP3JuKTHBvg==",
"type": "package",
"path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
"files": [
@@ -6428,7 +6727,7 @@
]
},
"Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
- "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==",
+ "sha512": "yfjw7wLtMSV6HjE2/j3vQp+ZtEbR4cMof7cbcWXPah/8XbMVueIS9GOp9HjxWOLTTQWz6uHxeetk36JCeKOR/Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0",
"files": [
@@ -6443,12 +6742,12 @@
"lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml"
]
},
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "Microsoft.CSharp/4.3.0": {
+ "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"type": "package",
- "path": "Microsoft.CSharp/4.0.1",
+ "path": "Microsoft.CSharp/4.3.0",
"files": [
- "Microsoft.CSharp.4.0.1.nupkg.sha512",
+ "Microsoft.CSharp.4.3.0.nupkg.sha512",
"Microsoft.CSharp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6531,6 +6830,22 @@
"runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
]
},
+ "Microsoft.DiaSymReader.Native/1.4.0": {
+ "sha512": "6HpEBMxIi9KJHKnF2ISRy3HsxhRYL1/CdnXGBqSWOUE8uaY5gthzStdQdbPVFxsKCNwsYcfRc11RXjLVvGF5bQ==",
+ "type": "package",
+ "path": "Microsoft.DiaSymReader.Native/1.4.0",
+ "files": [
+ "Microsoft.DiaSymReader.Native.1.4.0.nupkg.sha512",
+ "Microsoft.DiaSymReader.Native.nuspec",
+ "build/Microsoft.DiaSymReader.Native.props",
+ "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll",
+ "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll",
+ "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
+ ]
+ },
"Microsoft.DotNet.InternalAbstractions/1.0.0": {
"sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==",
"type": "package",
@@ -6542,6 +6857,17 @@
"lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
]
},
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "sha512": "Bl6KYfbFSIW3QIRHAp931iR5h01qHjKghdpAtncwbzNUs0+IUZ+XfwkIU0sQsR33ufGvi3u4dZMIYYFysjpHAA==",
+ "type": "package",
+ "path": "Microsoft.DotNet.PlatformAbstractions/1.1.0",
+ "files": [
+ "Microsoft.DotNet.PlatformAbstractions.1.1.0.nupkg.sha512",
+ "Microsoft.DotNet.PlatformAbstractions.nuspec",
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll",
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll"
+ ]
+ },
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
"sha512": "wnWw5KsKinG2wWxdoQIJXZlMFvPNhL7WmIyW9q6xrZFUi/uld5PC3ksq2QDZepF148FUjCIyTP+TnRwU3RJqUg==",
"type": "package",
@@ -6553,23 +6879,23 @@
"lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll"
]
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
- "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==",
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
+ "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
]
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
- "sha512": "6+7zTufCnZ+tfrUo7RbIRR3LB0BxwOwxfXuo0IbLyIvgoToGpWuz5wYEDfCYNOvpig9tY8FA0I1uRHYmITMXMQ==",
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
+ "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Memory/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Memory.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Memory.nuspec",
"lib/net451/Microsoft.Extensions.Caching.Memory.dll",
"lib/net451/Microsoft.Extensions.Caching.Memory.xml",
@@ -6577,45 +6903,45 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml"
]
},
- "Microsoft.Extensions.Configuration/1.0.0": {
- "sha512": "hR4yYebruRp6qyFnV3RW4qrnEb0J1LnMmQbj50AUA423V8dMs4E3YAohsyRyGBFnpbJ+KKzieSG/n2A6T0klZQ==",
+ "Microsoft.Extensions.Configuration/1.1.0": {
+ "sha512": "iqp8UepCsS902j0kPO/d7hrd9PSyK7l84UFlpqdV8QY+/pMUY5k8wlAIuN6mWdW97HI8a8BJyvjhJbJps2GwZw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration/1.0.0",
+ "path": "Microsoft.Extensions.Configuration/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.xml"
]
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
- "sha512": "nJ+Et/rnDMDmGhxvFAKdN3va7y+YDPICv1nUEP8I4IKgOkWwr/dCZHMqxVhJFrkbW9ux8Kd7erC4mvxfZh0WnA==",
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
+ "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
]
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
- "sha512": "kK8QuBcPQtmKJCkC9enc1uMRFa++mPTuVNm2K5jDVXcAYKRBcFSbdEBvIe1JIgA6dEsAQeqjfHfKSaUJ8f5NFQ==",
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
+ "sha512": "1dTFEL493MfC5O7MNaElQBhX4txb9ivSmTMwB3qDqEJHXnnUdgThTChn32FjhLIA6Fn7YXjqkZzAB/LdZEKupw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Binder/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Binder/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Binder.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Binder.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Binder.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.xml"
]
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
- "sha512": "A0yqS98VtPNlFkFI7YBlwkAekUHE/9mMeNc+K4RmgTjCrskuk6pX3LGhDU7aD5CPYc9Px7M2To/2u4xDSnRikg==",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
+ "sha512": "7AWmPQoX4Kx0Kf4VAig5yKbCziHjO6F2povXeToOaWuZnKahi5qXCG7wrWtATFrheOQLfkrqxxLyarTP3J1mnA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
@@ -6623,12 +6949,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.xml"
]
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
- "sha512": "MO7XtmLiqnpgVTX34uzFPvIS7jPmBUGLN0MP5MsYu6CqYTIs90ULjtrV5TegH5mTqKTXWjZRGXL26R6apTyc4w==",
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
+ "sha512": "jZRdMHops4npC8qKFEmqw6QODfA5h50sUYBIyB31DICzYSp+IQyvf5yb1zwW2x1EFuUEMv+aWZi1WDDc7JPdqA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.FileExtensions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.FileExtensions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.FileExtensions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.FileExtensions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.FileExtensions.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll",
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml",
@@ -6636,12 +6962,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.xml"
]
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
- "sha512": "KRyEOe5/Xi3qyDMdEVh++e2pQRsI6C3wzINVExOcu9lOsFmXK/k4qOf244fyo59rnn6s5xKnIW3WbhxWS1hu2w==",
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
+ "sha512": "QmHQbrOoVxXblM2x9NzGPbX3XpQGTCXiO6jZghx4KqUxPfJMS0VgBlgOUnLAz7sJyx3GvhUG6SEX6Xz70dpwDw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Json/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Json/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Json.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Json.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Json.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.Json.dll",
"lib/net451/Microsoft.Extensions.Configuration.Json.xml",
@@ -6649,67 +6975,68 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.xml"
]
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
- "sha512": "zdtkiZNV6LB8xtpmfyUjP/9N9ZCL/ydQ+0bfjun38fbrk+MDEm9M2yeLzRdq+OIt5xExw/KU04wFaVwJ1bhQPg==",
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
+ "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
]
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
- "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==",
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
+ "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
]
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==",
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
+ "sha512": "TG7dJ8GY1Myz9lZ8DJL4i6D05ncJQBi5CjBMXMdJ4edKxaW+vP2DndDd1jJabdMdmVRdGrvybzqkB+A6Df7eDw==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyModel/1.0.0",
+ "path": "Microsoft.Extensions.DependencyModel/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyModel.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyModel.nuspec",
"lib/net451/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
]
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
- "sha512": "4jsqTxG3py/hYSsOtZMkNJ2/CQqPdpwyK7bDUkrwHgqowCFSmx/C+R4IzQ+2AK2Up1fVcu+ldC0gktwidL828A==",
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
+ "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
]
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
- "sha512": "4nbDQfagNr1eILXSFZbTNuAKuZ6SsOyK6ySTMryo67ECi8+EcZBQ12E0aXcxX/aT3v+3pbWSt71NXlEm8tKIxw==",
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
+ "sha512": "S6vQ4HcjYKAmPqyuGNDQ1ILBaTx7SnDvfg/Dby+s55dXNI2WA/blkeIufbDm0MukALsukWya9mdbe7upWj8U5g==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Composite/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Composite/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Composite.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Composite.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Composite.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.xml"
]
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
- "sha512": "Ej5hGWtK3xM9YU+B2O8EdlMcJf5utbDQs9ecnfvwhENQeeNU7iI2jjnRB2d7V6o9SQZmNHPzdPvaNb3PlSMz+Q==",
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
+ "sha512": "ckyGwMGd4v1nE70wZ7ytax+Ef9WHQ6IcE4apLYG4um6Dfcw/Y6QJY0Fcv3Ck9WK/Uj0YMxHnNCZH6MBp6boeEw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Physical/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Physical/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Physical.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Physical.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Physical.nuspec",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.xml",
@@ -6717,36 +7044,36 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml"
]
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
- "sha512": "scXp1Y+hmhQKLe57Z7cSjsAEFtE4zSHHydkg1SpvG56nWwWQVpVcRAbRZsv1qIBR5/vNB4LA9xiOKnvKO/Halg==",
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
+ "sha512": "/NKs5LrUCUARfFbGik/ML5L2YnN33XTf+TUyghjhCzl9HlvLA4l6s3bW+xsbCU0GEmI/MottEEhiDa1dLJJh4A==",
"type": "package",
- "path": "Microsoft.Extensions.FileSystemGlobbing/1.0.0",
+ "path": "Microsoft.Extensions.FileSystemGlobbing/1.1.0",
"files": [
- "Microsoft.Extensions.FileSystemGlobbing.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileSystemGlobbing.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileSystemGlobbing.nuspec",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.xml",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml"
]
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
- "sha512": "nxGoN8o+4clQk103krYRqS5FVVCZc3Tlc09AYj4W8gZ9Q5Jxa2BLW7ss+ogKU/hvNSg2NkJyQTfi9SegGU6ssQ==",
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
+ "sha512": "KAuadrKH0hLZGXfLO/+L6bv4vIeOYpQTjglR5Tu4hm9TJ8sVcPf11qIoU+BXSwalXiaJuazSI9fxbyoIVBsX4A==",
"type": "package",
- "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0",
+ "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0",
"files": [
- "Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Globalization.CultureInfoCache.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Globalization.CultureInfoCache.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml"
]
},
- "Microsoft.Extensions.Localization/1.0.0": {
- "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==",
+ "Microsoft.Extensions.Localization/1.1.0": {
+ "sha512": "1DWqIC1k383XaQ3h+WxyKYmerLHDYH7TY7mDcglylG3Wq+zlX3/UUhUEKO0Ft8RKCLxLh/LhIa9NBvM3cYzLIg==",
"type": "package",
- "path": "Microsoft.Extensions.Localization/1.0.0",
+ "path": "Microsoft.Extensions.Localization/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.nuspec",
"lib/net451/Microsoft.Extensions.Localization.dll",
"lib/net451/Microsoft.Extensions.Localization.xml",
@@ -6754,45 +7081,45 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
]
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
- "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==",
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
+ "sha512": "8KkP9veQupIfAEQFLLQFTo75s2fVKOM9SWeHhdSSUD35uD8DX1zOXAUsuaXwQY8cyt6mSUR5zuUEkgbZXnUKCA==",
"type": "package",
- "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Localization.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging/1.0.0": {
- "sha512": "0mDuASVrd/nMeBYIJSK+9lT3TSmWxUXP/ipVB1pF1ApMN5fqGCckPTNwmOfT4Z9wPkXGnhbwFTGrxZvbzTWxOg==",
+ "Microsoft.Extensions.Logging/1.1.0": {
+ "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
"type": "package",
- "path": "Microsoft.Extensions.Logging/1.0.0",
+ "path": "Microsoft.Extensions.Logging/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
]
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
- "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==",
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
+ "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Abstractions.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
- "sha512": "GN4gFFONP12KbFEG9rNFpXuz6D2Tybcm8+c1wilaQ1eSl9zVX0gVRrKw/YRwxdwbM3eK7nWfRRqJaQPzOjtLnA==",
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
+ "sha512": "MkFjLvtMdYN1g3NesmkeuQ56f/LuQS46PvjhbF1rUoH9L1ZM3/uteuTknVDUryeWlh18oh6ew7Xo9H50KWPAog==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Console/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Console/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Console.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Console.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Console.nuspec",
"lib/net451/Microsoft.Extensions.Logging.Console.dll",
"lib/net451/Microsoft.Extensions.Logging.Console.xml",
@@ -6800,12 +7127,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.xml"
]
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
- "sha512": "V8fP8pGJxieGa1DAYOF1RX+cCGGqdOGNoAQUzxmy27+qNzbHB/cUXc7mCZT72jPZMB4U12zSVWlIt26GMsUIOg==",
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
+ "sha512": "6Kg1PyEbQjd37ZeWkrseJNvb99iUCdXRAjUqFd2zxW9ZCwjn9h+aSC2bMbyERvC+n6lImp053jqRBsotIrMiXw==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Debug/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Debug/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Debug.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Debug.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Debug.nuspec",
"lib/net451/Microsoft.Extensions.Logging.Debug.dll",
"lib/net451/Microsoft.Extensions.Logging.Debug.xml",
@@ -6813,12 +7140,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.xml"
]
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
- "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==",
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
+ "sha512": "8tg7DpFubtj98Lf+N+zpu5VXe9EHCPrqcukpsjC9BSfcnC0Oq8CUZKYUsLScS2pnqEkSNHwuHoWRtJ6xhMO/xg==",
"type": "package",
- "path": "Microsoft.Extensions.ObjectPool/1.0.0",
+ "path": "Microsoft.Extensions.ObjectPool/1.1.0",
"files": [
- "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.ObjectPool.1.1.0.nupkg.sha512",
"Microsoft.Extensions.ObjectPool.nuspec",
"lib/net451/Microsoft.Extensions.ObjectPool.dll",
"lib/net451/Microsoft.Extensions.ObjectPool.xml",
@@ -6826,34 +7153,34 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
]
},
- "Microsoft.Extensions.Options/1.0.0": {
- "sha512": "SdP3yPKF++JTkoa91pBDiE70uQkR/gdXWzOnMPbSj+eOqY1vgY+b8RVl+gh7TrJ2wlCK2QqnQtvCQlPPZRK36w==",
+ "Microsoft.Extensions.Options/1.1.0": {
+ "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
"type": "package",
- "path": "Microsoft.Extensions.Options/1.0.0",
+ "path": "Microsoft.Extensions.Options/1.1.0",
"files": [
- "Microsoft.Extensions.Options.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Options.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Options.dll",
"lib/netstandard1.0/Microsoft.Extensions.Options.xml"
]
},
- "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0": {
- "sha512": "ov+cv1w81/lVrjqorjSpUvTzJhRVFu2GSRyRQYcGfGWPwrCz6473YoiqK/XNbeBmmF9VVyGPHVMubAH+Atsr3g==",
+ "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
+ "sha512": "loehh0znbtZw+mqk2VY7VyJu7t7N2TvEjSpln0Twkli/rF26HcxWQ3rdSvSr66yOCt7Dnur6DcW6HWXfa2u/PA==",
"type": "package",
- "path": "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0",
+ "path": "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0",
"files": [
- "Microsoft.Extensions.Options.ConfigurationExtensions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Options.ConfigurationExtensions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Options.ConfigurationExtensions.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml"
]
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
- "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==",
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
+ "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
"type": "package",
- "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0",
+ "path": "Microsoft.Extensions.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.PlatformAbstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.PlatformAbstractions.nuspec",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
@@ -6861,12 +7188,12 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
]
},
- "Microsoft.Extensions.Primitives/1.0.0": {
- "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==",
+ "Microsoft.Extensions.Primitives/1.1.0": {
+ "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
"type": "package",
- "path": "Microsoft.Extensions.Primitives/1.0.0",
+ "path": "Microsoft.Extensions.Primitives/1.1.0",
"files": [
- "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Primitives.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
@@ -6883,94 +7210,94 @@
"lib/netstandard1.6/Microsoft.Extensions.Testing.Abstractions.dll"
]
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
- "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==",
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
+ "sha512": "YnUfcLe/FYL3Mft5HPv7dSSKfZZCZwLG2GQfv3vuxdY4AbWOYLqq/3wIPCNIrgMXvzralWdkESNsb9iw5gKdpg==",
"type": "package",
- "path": "Microsoft.Extensions.WebEncoders/1.0.0",
+ "path": "Microsoft.Extensions.WebEncoders/1.1.0",
"files": [
- "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.WebEncoders.1.1.0.nupkg.sha512",
"Microsoft.Extensions.WebEncoders.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
]
},
- "Microsoft.Net.Http.Headers/1.0.0": {
- "sha512": "1lr92itF1fKR2oEQ6gk1IUsuCgp7UMlf/b1sjlAyuDeUnttj39ra59GQHYpomglJX1UVNpi1/cSBbEsXoNeIhw==",
+ "Microsoft.Net.Http.Headers/1.1.0": {
+ "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
"type": "package",
- "path": "Microsoft.Net.Http.Headers/1.0.0",
+ "path": "Microsoft.Net.Http.Headers/1.1.0",
"files": [
- "Microsoft.Net.Http.Headers.1.0.0.nupkg.sha512",
+ "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
"Microsoft.Net.Http.Headers.nuspec",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
]
},
- "Microsoft.NETCore.App/1.0.1": {
- "sha512": "M3iH7u95LntTkJtI/DqN/96MRlb8Wa0SjnXldxHA4FjlvEqghOhwK087bDZAZaTN9C4YHckvaYH3ka9eYWZZZw==",
+ "Microsoft.NETCore.App/1.1.0": {
+ "sha512": "DFec+OUojDVocn1GxAL9uJg4qwsgkvKiQpv6BKd9ljGezvc9p6GpFv51IIakiujkVW/wBtQ0xlfjVSgS1UG/uw==",
"type": "package",
- "path": "Microsoft.NETCore.App/1.0.1",
+ "path": "Microsoft.NETCore.App/1.1.0",
"files": [
- "Microsoft.NETCore.App.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.App.1.1.0.nupkg.sha512",
"Microsoft.NETCore.App.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netcoreapp1.0/_._"
]
},
- "Microsoft.NETCore.DotNetHost/1.0.1": {
- "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==",
+ "Microsoft.NETCore.DotNetHost/1.1.0": {
+ "sha512": "1xk/a9uXjJWDQqXw8l4067aoNwUfugq4UVQQinlIM2W4posm0+wcW+bi3uKuyufsjG6KBhlCqKuFBqa5DXO6ug==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHost/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHost/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHost.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHost.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
- "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==",
+ "Microsoft.NETCore.DotNetHostPolicy/1.1.0": {
+ "sha512": "xa5FjffmB4QMfWIdwrW1cUKX6UD1VEePyzDcMqV8b/d9onZLJwIamPIRmDpN5lTlvdCnyUOI+5ZqZEjQIqSqxQ==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHostPolicy/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHostPolicy.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHostPolicy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
- "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==",
+ "Microsoft.NETCore.DotNetHostResolver/1.1.0": {
+ "sha512": "xf7RRVJ4M1w1Hg9TTzTH4g+zFqGtu6uXBjpcyy+o5UYrRj44dtJkmlnc1OnoKQFU0pZ8i9C8eNbSeqq/p6n19w==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHostResolver/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHostResolver.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHostResolver.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Jit/1.0.4": {
- "sha512": "IcHTGj+vTFcOu7/flwNg+CWIfTsxqHWgj08MKOtYwS5k0EuLvx6PrYsn7vHCV0SUTk1zbQ1l0EJj1UdxTMyx4w==",
+ "Microsoft.NETCore.Jit/1.1.0": {
+ "sha512": "Zsrh7C1ncfJe1tLGExgHrdal8I0U7qBHeLkpjbxd6M8uPtR8ck+R1Gynyjn01M3VO1Px416WvrJ4rxQFeR3jTQ==",
"type": "package",
- "path": "Microsoft.NETCore.Jit/1.0.4",
+ "path": "Microsoft.NETCore.Jit/1.1.0",
"files": [
- "Microsoft.NETCore.Jit.1.0.4.nupkg.sha512",
+ "Microsoft.NETCore.Jit.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Jit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Platforms/1.0.1": {
- "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==",
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"type": "package",
- "path": "Microsoft.NETCore.Platforms/1.0.1",
+ "path": "Microsoft.NETCore.Platforms/1.1.0",
"files": [
- "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Platforms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6978,24 +7305,24 @@
"runtime.json"
]
},
- "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
- "sha512": "r4/aP7VYcJ+W/rJVFU+jAdjF4KrsHRDYQJ+p8weUP5n65yLzWXlQTVY6OsR560aV5EF7jc65dqsNXIryUCrEkQ==",
+ "Microsoft.NETCore.Runtime.CoreCLR/1.1.0": {
+ "sha512": "dwvlgs9yX8Y1phaXqNJC8qOgEeZfsM8mVB4vprv7OOhttjXoiaiYQAEYa4D4fbiqTjx/gD6/fVPJ/aSmk5byhg==",
"type": "package",
- "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4",
+ "path": "Microsoft.NETCore.Runtime.CoreCLR/1.1.0",
"files": [
- "Microsoft.NETCore.Runtime.CoreCLR.1.0.4.nupkg.sha512",
+ "Microsoft.NETCore.Runtime.CoreCLR.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Targets/1.0.1": {
- "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"type": "package",
- "path": "Microsoft.NETCore.Targets/1.0.1",
+ "path": "Microsoft.NETCore.Targets/1.1.0",
"files": [
- "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Targets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7004,7 +7331,7 @@
]
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
- "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==",
+ "sha512": "jH+MpPZ4afpEBEUxOHuV6kNwIFu21ECEP7UlwcYaM2oORy7mWIm/iJbXSml4Z6ayoIgzc4xHrx8g5tDxzy9Cfw==",
"type": "package",
"path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
"files": [
@@ -7015,12 +7342,12 @@
"runtime.json"
]
},
- "Microsoft.VisualBasic/10.0.1": {
- "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==",
+ "Microsoft.VisualBasic/10.1.0": {
+ "sha512": "jgBfelga8QHZDTtUBtLNgcDPuXzaplCeXLqQcf5qB4jeVdPpX1AtnZnGeHbbi2tmp+P96hgI+KhXbUN567K60Q==",
"type": "package",
- "path": "Microsoft.VisualBasic/10.0.1",
+ "path": "Microsoft.VisualBasic/10.1.0",
"files": [
- "Microsoft.VisualBasic.10.0.1.nupkg.sha512",
+ "Microsoft.VisualBasic.10.1.0.nupkg.sha512",
"Microsoft.VisualBasic.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7030,6 +7357,8 @@
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
+ "ref/MonoAndroid10/Microsoft.VisualBasic.dll",
+ "ref/MonoTouch10/Microsoft.VisualBasic.dll",
"ref/net45/_._",
"ref/netcore50/Microsoft.VisualBasic.dll",
"ref/netcore50/Microsoft.VisualBasic.xml",
@@ -7055,15 +7384,18 @@
"ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
- "ref/wpa81/_._"
+ "ref/wpa81/_._",
+ "ref/xamarinios10/Microsoft.VisualBasic.dll",
+ "ref/xamarintvos10/Microsoft.VisualBasic.dll",
+ "ref/xamarinwatchos10/Microsoft.VisualBasic.dll"
]
},
- "Microsoft.Win32.Primitives/4.0.1": {
- "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"type": "package",
- "path": "Microsoft.Win32.Primitives/4.0.1",
+ "path": "Microsoft.Win32.Primitives/4.3.0",
"files": [
- "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
+ "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
"Microsoft.Win32.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7094,12 +7426,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "Microsoft.Win32.Registry/4.0.0": {
- "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
+ "Microsoft.Win32.Registry/4.3.0": {
+ "sha512": "Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==",
"type": "package",
- "path": "Microsoft.Win32.Registry/4.0.0",
+ "path": "Microsoft.Win32.Registry/4.3.0",
"files": [
- "Microsoft.Win32.Registry.4.0.0.nupkg.sha512",
+ "Microsoft.Win32.Registry.4.3.0.nupkg.sha512",
"Microsoft.Win32.Registry.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7135,12 +7467,12 @@
"lib/netstandard1.3/Moq.xml"
]
},
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
+ "NETStandard.Library/1.6.1": {
+ "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"type": "package",
- "path": "NETStandard.Library/1.6.0",
+ "path": "NETStandard.Library/1.6.1",
"files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
+ "NETStandard.Library.1.6.1.nupkg.sha512",
"NETStandard.Library.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
@@ -7263,72 +7595,216 @@
"lib/netstandard1.0/NuGet.Versioning.xml"
]
},
- "runtime.native.System/4.0.0": {
- "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "type": "package",
+ "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
+ "type": "package",
+ "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "type": "package",
+ "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
"type": "package",
- "path": "runtime.native.System/4.0.0",
+ "path": "runtime.native.System/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.4.0.0.nupkg.sha512",
+ "runtime.native.System.4.3.0.nupkg.sha512",
"runtime.native.System.nuspec"
]
},
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
+ "path": "runtime.native.System.IO.Compression/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512",
+ "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
"runtime.native.System.IO.Compression.nuspec"
]
},
- "runtime.native.System.Net.Http/4.0.1": {
- "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
+ "runtime.native.System.Net.Http/4.3.0": {
+ "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"type": "package",
- "path": "runtime.native.System.Net.Http/4.0.1",
+ "path": "runtime.native.System.Net.Http/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Http.nuspec"
]
},
- "runtime.native.System.Net.Security/4.0.1": {
- "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==",
+ "runtime.native.System.Net.Security/4.3.0": {
+ "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
"type": "package",
- "path": "runtime.native.System.Net.Security/4.0.1",
+ "path": "runtime.native.System.Net.Security/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Security.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Security.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Security.nuspec"
]
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "type": "package",
+ "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.Apple.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
"type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
+ "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.nuspec"
+ "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
+ ]
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "type": "package",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "type": "package",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
]
},
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
"type": "package",
- "path": "System.AppContext/4.1.0",
+ "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
- "System.AppContext.4.1.0.nupkg.sha512",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "type": "package",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "System.AppContext/4.3.0": {
+ "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
+ "type": "package",
+ "path": "System.AppContext/4.3.0",
+ "files": [
+ "System.AppContext.4.3.0.nupkg.sha512",
"System.AppContext.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7376,12 +7852,12 @@
"runtimes/aot/lib/netcore50/System.AppContext.dll"
]
},
- "System.Buffers/4.0.0": {
- "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==",
+ "System.Buffers/4.3.0": {
+ "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
"type": "package",
- "path": "System.Buffers/4.0.0",
+ "path": "System.Buffers/4.3.0",
"files": [
- "System.Buffers.4.0.0.nupkg.sha512",
+ "System.Buffers.4.3.0.nupkg.sha512",
"System.Buffers.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7389,12 +7865,12 @@
"lib/netstandard1.1/System.Buffers.dll"
]
},
- "System.Collections/4.0.11": {
- "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"type": "package",
- "path": "System.Collections/4.0.11",
+ "path": "System.Collections/4.3.0",
"files": [
- "System.Collections.4.0.11.nupkg.sha512",
+ "System.Collections.4.3.0.nupkg.sha512",
"System.Collections.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7455,12 +7931,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Concurrent/4.0.12": {
- "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"type": "package",
- "path": "System.Collections.Concurrent/4.0.12",
+ "path": "System.Collections.Concurrent/4.3.0",
"files": [
- "System.Collections.Concurrent.4.0.12.nupkg.sha512",
+ "System.Collections.Concurrent.4.3.0.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7521,12 +7997,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Immutable/1.2.0": {
- "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
+ "System.Collections.Immutable/1.3.0": {
+ "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
"type": "package",
- "path": "System.Collections.Immutable/1.2.0",
+ "path": "System.Collections.Immutable/1.3.0",
"files": [
- "System.Collections.Immutable.1.2.0.nupkg.sha512",
+ "System.Collections.Immutable.1.3.0.nupkg.sha512",
"System.Collections.Immutable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7536,12 +8012,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
]
},
- "System.Collections.NonGeneric/4.0.1": {
- "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"type": "package",
- "path": "System.Collections.NonGeneric/4.0.1",
+ "path": "System.Collections.NonGeneric/4.3.0",
"files": [
- "System.Collections.NonGeneric.4.0.1.nupkg.sha512",
+ "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
"System.Collections.NonGeneric.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7573,12 +8049,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Specialized/4.0.1": {
- "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
+ "System.Collections.Specialized/4.3.0": {
+ "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"type": "package",
- "path": "System.Collections.Specialized/4.0.1",
+ "path": "System.Collections.Specialized/4.3.0",
"files": [
- "System.Collections.Specialized.4.0.1.nupkg.sha512",
+ "System.Collections.Specialized.4.3.0.nupkg.sha512",
"System.Collections.Specialized.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7610,12 +8086,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel/4.0.1": {
- "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
+ "System.ComponentModel/4.3.0": {
+ "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"type": "package",
- "path": "System.ComponentModel/4.0.1",
+ "path": "System.ComponentModel/4.3.0",
"files": [
- "System.ComponentModel.4.0.1.nupkg.sha512",
+ "System.ComponentModel.4.3.0.nupkg.sha512",
"System.ComponentModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7667,12 +8143,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Annotations/4.1.0": {
- "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==",
+ "System.ComponentModel.Annotations/4.3.0": {
+ "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
"type": "package",
- "path": "System.ComponentModel.Annotations/4.1.0",
+ "path": "System.ComponentModel.Annotations/4.3.0",
"files": [
- "System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
"System.ComponentModel.Annotations.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7744,12 +8220,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Primitives/4.1.0": {
- "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
+ "System.ComponentModel.Primitives/4.3.0": {
+ "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"type": "package",
- "path": "System.ComponentModel.Primitives/4.1.0",
+ "path": "System.ComponentModel.Primitives/4.3.0",
"files": [
- "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Primitives.4.3.0.nupkg.sha512",
"System.ComponentModel.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7781,12 +8257,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.TypeConverter/4.1.0": {
- "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"type": "package",
- "path": "System.ComponentModel.TypeConverter/4.1.0",
+ "path": "System.ComponentModel.TypeConverter/4.3.0",
"files": [
- "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
+ "System.ComponentModel.TypeConverter.4.3.0.nupkg.sha512",
"System.ComponentModel.TypeConverter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7832,12 +8308,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"type": "package",
- "path": "System.Console/4.0.0",
+ "path": "System.Console/4.3.0",
"files": [
- "System.Console.4.0.0.nupkg.sha512",
+ "System.Console.4.3.0.nupkg.sha512",
"System.Console.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7868,12 +8344,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Contracts/4.0.1": {
- "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
+ "System.Diagnostics.Contracts/4.3.0": {
+ "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
"type": "package",
- "path": "System.Diagnostics.Contracts/4.0.1",
+ "path": "System.Diagnostics.Contracts/4.3.0",
"files": [
- "System.Diagnostics.Contracts.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
"System.Diagnostics.Contracts.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7926,12 +8402,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
]
},
- "System.Diagnostics.Debug/4.0.11": {
- "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
- "path": "System.Diagnostics.Debug/4.0.11",
+ "path": "System.Diagnostics.Debug/4.3.0",
"files": [
- "System.Diagnostics.Debug.4.0.11.nupkg.sha512",
+ "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7992,12 +8468,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
- "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
"type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.0.0",
+ "path": "System.Diagnostics.DiagnosticSource/4.3.0",
"files": [
- "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512",
+ "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
"System.Diagnostics.DiagnosticSource.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8012,7 +8488,7 @@
]
},
"System.Diagnostics.FileVersionInfo/4.0.0": {
- "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==",
+ "sha512": "VtXkqPMWpaXDFEvbuhroVemeTaaU/j6C3yu6rd+JFLg5AvHAZJb8hUpxwJCM7OFrUpeKmv3A7ZTME8hFYWL6pA==",
"type": "package",
"path": "System.Diagnostics.FileVersionInfo/4.0.0",
"files": [
@@ -8051,12 +8527,12 @@
"runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll"
]
},
- "System.Diagnostics.Process/4.1.0": {
- "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
+ "System.Diagnostics.Process/4.3.0": {
+ "sha512": "J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==",
"type": "package",
- "path": "System.Diagnostics.Process/4.1.0",
+ "path": "System.Diagnostics.Process/4.3.0",
"files": [
- "System.Diagnostics.Process.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Process.4.3.0.nupkg.sha512",
"System.Diagnostics.Process.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8106,12 +8582,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Diagnostics.StackTrace/4.0.1": {
- "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==",
+ "System.Diagnostics.StackTrace/4.3.0": {
+ "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
"type": "package",
- "path": "System.Diagnostics.StackTrace/4.0.1",
+ "path": "System.Diagnostics.StackTrace/4.3.0",
"files": [
- "System.Diagnostics.StackTrace.4.0.1.nupkg.sha512",
+ "System.Diagnostics.StackTrace.4.3.0.nupkg.sha512",
"System.Diagnostics.StackTrace.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8144,12 +8620,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
]
},
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "System.Diagnostics.Tools/4.3.0": {
+ "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
+ "path": "System.Diagnostics.Tools/4.3.0",
"files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8238,12 +8714,12 @@
"runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll"
]
},
- "System.Diagnostics.Tracing/4.1.0": {
- "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"type": "package",
- "path": "System.Diagnostics.Tracing/4.1.0",
+ "path": "System.Diagnostics.Tracing/4.3.0",
"files": [
- "System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8326,12 +8802,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Dynamic.Runtime/4.0.11": {
- "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "System.Dynamic.Runtime/4.3.0": {
+ "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"type": "package",
- "path": "System.Dynamic.Runtime/4.0.11",
+ "path": "System.Dynamic.Runtime/4.3.0",
"files": [
- "System.Dynamic.Runtime.4.0.11.nupkg.sha512",
+ "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
"System.Dynamic.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8395,12 +8871,12 @@
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
]
},
- "System.Globalization/4.0.11": {
- "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"type": "package",
- "path": "System.Globalization/4.0.11",
+ "path": "System.Globalization/4.3.0",
"files": [
- "System.Globalization.4.0.11.nupkg.sha512",
+ "System.Globalization.4.3.0.nupkg.sha512",
"System.Globalization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8461,12 +8937,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Calendars/4.0.1": {
- "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
+ "System.Globalization.Calendars/4.3.0": {
+ "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"type": "package",
- "path": "System.Globalization.Calendars/4.0.1",
+ "path": "System.Globalization.Calendars/4.3.0",
"files": [
- "System.Globalization.Calendars.4.0.1.nupkg.sha512",
+ "System.Globalization.Calendars.4.3.0.nupkg.sha512",
"System.Globalization.Calendars.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8497,12 +8973,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Extensions/4.0.1": {
- "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"type": "package",
- "path": "System.Globalization.Extensions/4.0.1",
+ "path": "System.Globalization.Extensions/4.3.0",
"files": [
- "System.Globalization.Extensions.4.0.1.nupkg.sha512",
+ "System.Globalization.Extensions.4.3.0.nupkg.sha512",
"System.Globalization.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8536,12 +9012,12 @@
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll"
]
},
- "System.IO/4.1.0": {
- "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"type": "package",
- "path": "System.IO/4.1.0",
+ "path": "System.IO/4.3.0",
"files": [
- "System.IO.4.1.0.nupkg.sha512",
+ "System.IO.4.3.0.nupkg.sha512",
"System.IO.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8615,12 +9091,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
+ "System.IO.Compression/4.3.0": {
+ "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"type": "package",
- "path": "System.IO.Compression/4.1.0",
+ "path": "System.IO.Compression/4.3.0",
"files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
+ "System.IO.Compression.4.3.0.nupkg.sha512",
"System.IO.Compression.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8684,12 +9160,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
]
},
- "System.IO.Compression.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
"type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
+ "path": "System.IO.Compression.ZipFile/4.3.0",
"files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
+ "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
"System.IO.Compression.ZipFile.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8721,12 +9197,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem/4.0.1": {
- "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"type": "package",
- "path": "System.IO.FileSystem/4.0.1",
+ "path": "System.IO.FileSystem/4.3.0",
"files": [
- "System.IO.FileSystem.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.4.3.0.nupkg.sha512",
"System.IO.FileSystem.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8757,12 +9233,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Primitives/4.0.1": {
- "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"type": "package",
- "path": "System.IO.FileSystem.Primitives/4.0.1",
+ "path": "System.IO.FileSystem.Primitives/4.3.0",
"files": [
- "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8794,12 +9270,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Watcher/4.0.0": {
- "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==",
+ "System.IO.FileSystem.Watcher/4.3.0": {
+ "sha512": "37IDFU2w6LJ4FrohcVlV1EXviUmAOJIbejVgOUtNaPQyeZW2D/0QSkH8ykehoOd19bWfxp3RRd0xj+yRRIqLhw==",
"type": "package",
- "path": "System.IO.FileSystem.Watcher/4.0.0",
+ "path": "System.IO.FileSystem.Watcher/4.3.0",
"files": [
- "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
+ "System.IO.FileSystem.Watcher.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Watcher.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8835,12 +9311,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.IO.MemoryMappedFiles/4.0.0": {
- "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==",
+ "System.IO.MemoryMappedFiles/4.3.0": {
+ "sha512": "mz2JJFxCQLdMzXVOPyVibDKDKFZey66YHgQy8M1/vUCQzMSrbiXhpsyV04vSlBeqQUdM7wTL2WG+X3GZALKsIQ==",
"type": "package",
- "path": "System.IO.MemoryMappedFiles/4.0.0",
+ "path": "System.IO.MemoryMappedFiles/4.3.0",
"files": [
- "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512",
+ "System.IO.MemoryMappedFiles.4.3.0.nupkg.sha512",
"System.IO.MemoryMappedFiles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8875,12 +9351,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
]
},
- "System.IO.UnmanagedMemoryStream/4.0.1": {
- "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==",
+ "System.IO.UnmanagedMemoryStream/4.3.0": {
+ "sha512": "tS89nK7pw8ebkkEfWujA05+ZReHKzz39W+bcX1okVR0GJCJuzPyfYfQZyiLSrjp121BB5J4uewZQiUTKri2pSQ==",
"type": "package",
- "path": "System.IO.UnmanagedMemoryStream/4.0.1",
+ "path": "System.IO.UnmanagedMemoryStream/4.3.0",
"files": [
- "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
+ "System.IO.UnmanagedMemoryStream.4.3.0.nupkg.sha512",
"System.IO.UnmanagedMemoryStream.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8912,12 +9388,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq/4.1.0": {
- "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"type": "package",
- "path": "System.Linq/4.1.0",
+ "path": "System.Linq/4.3.0",
"files": [
- "System.Linq.4.1.0.nupkg.sha512",
+ "System.Linq.4.3.0.nupkg.sha512",
"System.Linq.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8982,12 +9458,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"type": "package",
- "path": "System.Linq.Expressions/4.1.0",
+ "path": "System.Linq.Expressions/4.3.0",
"files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
+ "System.Linq.Expressions.4.3.0.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9064,12 +9540,12 @@
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
]
},
- "System.Linq.Parallel/4.0.1": {
- "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==",
+ "System.Linq.Parallel/4.3.0": {
+ "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==",
"type": "package",
- "path": "System.Linq.Parallel/4.0.1",
+ "path": "System.Linq.Parallel/4.3.0",
"files": [
- "System.Linq.Parallel.4.0.1.nupkg.sha512",
+ "System.Linq.Parallel.4.3.0.nupkg.sha512",
"System.Linq.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9119,12 +9595,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
"type": "package",
- "path": "System.Linq.Queryable/4.0.1",
+ "path": "System.Linq.Queryable/4.3.0",
"files": [
- "System.Linq.Queryable.4.0.1.nupkg.sha512",
+ "System.Linq.Queryable.4.3.0.nupkg.sha512",
"System.Linq.Queryable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9176,12 +9652,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
+ "System.Net.Http/4.3.0": {
+ "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
"type": "package",
- "path": "System.Net.Http/4.1.0",
+ "path": "System.Net.Http/4.3.0",
"files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
+ "System.Net.Http.4.3.0.nupkg.sha512",
"System.Net.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9256,12 +9732,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
]
},
- "System.Net.NameResolution/4.0.0": {
- "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
+ "System.Net.NameResolution/4.3.0": {
+ "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
"type": "package",
- "path": "System.Net.NameResolution/4.0.0",
+ "path": "System.Net.NameResolution/4.3.0",
"files": [
- "System.Net.NameResolution.4.0.0.nupkg.sha512",
+ "System.Net.NameResolution.4.3.0.nupkg.sha512",
"System.Net.NameResolution.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9296,12 +9772,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
]
},
- "System.Net.Primitives/4.0.11": {
- "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"type": "package",
- "path": "System.Net.Primitives/4.0.11",
+ "path": "System.Net.Primitives/4.3.0",
"files": [
- "System.Net.Primitives.4.0.11.nupkg.sha512",
+ "System.Net.Primitives.4.3.0.nupkg.sha512",
"System.Net.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9373,12 +9849,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Requests/4.0.11": {
- "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==",
+ "System.Net.Requests/4.3.0": {
+ "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
"type": "package",
- "path": "System.Net.Requests/4.0.11",
+ "path": "System.Net.Requests/4.3.0",
"files": [
- "System.Net.Requests.4.0.11.nupkg.sha512",
+ "System.Net.Requests.4.3.0.nupkg.sha512",
"System.Net.Requests.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9454,12 +9930,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
]
},
- "System.Net.Security/4.0.0": {
- "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==",
+ "System.Net.Security/4.3.0": {
+ "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
"type": "package",
- "path": "System.Net.Security/4.0.0",
+ "path": "System.Net.Security/4.3.0",
"files": [
- "System.Net.Security.4.0.0.nupkg.sha512",
+ "System.Net.Security.4.3.0.nupkg.sha512",
"System.Net.Security.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9494,12 +9970,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Net.Sockets/4.1.0": {
- "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
+ "System.Net.Sockets/4.3.0": {
+ "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
"type": "package",
- "path": "System.Net.Sockets/4.1.0",
+ "path": "System.Net.Sockets/4.3.0",
"files": [
- "System.Net.Sockets.4.1.0.nupkg.sha512",
+ "System.Net.Sockets.4.3.0.nupkg.sha512",
"System.Net.Sockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9530,12 +10006,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebHeaderCollection/4.0.1": {
- "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==",
+ "System.Net.WebHeaderCollection/4.3.0": {
+ "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
"type": "package",
- "path": "System.Net.WebHeaderCollection/4.0.1",
+ "path": "System.Net.WebHeaderCollection/4.3.0",
"files": [
- "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
+ "System.Net.WebHeaderCollection.4.3.0.nupkg.sha512",
"System.Net.WebHeaderCollection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9567,12 +10043,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebSockets/4.0.0": {
- "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
+ "System.Net.WebSockets/4.3.0": {
+ "sha512": "u6fFNY5q4T8KerUAVbya7bR6b7muBuSTAersyrihkcmE5QhEOiH3t5rh4il15SexbVlpXFHGuMwr/m8fDrnkQg==",
"type": "package",
- "path": "System.Net.WebSockets/4.0.0",
+ "path": "System.Net.WebSockets/4.3.0",
"files": [
- "System.Net.WebSockets.4.0.0.nupkg.sha512",
+ "System.Net.WebSockets.4.3.0.nupkg.sha512",
"System.Net.WebSockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9604,12 +10080,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Numerics.Vectors/4.1.1": {
- "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==",
+ "System.Numerics.Vectors/4.3.0": {
+ "sha512": "uAIqmwiQPPXdCz59MQcyHwsH2MzIv24VGCS54kP/1GzTRTuU3hazmiPnGUTlKFia4B1DnbLWjTHoGyTI5BMCTQ==",
"type": "package",
- "path": "System.Numerics.Vectors/4.1.1",
+ "path": "System.Numerics.Vectors/4.3.0",
"files": [
- "System.Numerics.Vectors.4.1.1.nupkg.sha512",
+ "System.Numerics.Vectors.4.3.0.nupkg.sha512",
"System.Numerics.Vectors.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9637,12 +10113,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"type": "package",
- "path": "System.ObjectModel/4.0.12",
+ "path": "System.ObjectModel/4.3.0",
"files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
+ "System.ObjectModel.4.3.0.nupkg.sha512",
"System.ObjectModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9705,12 +10181,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection/4.1.0": {
- "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"type": "package",
- "path": "System.Reflection/4.1.0",
+ "path": "System.Reflection/4.3.0",
"files": [
- "System.Reflection.4.1.0.nupkg.sha512",
+ "System.Reflection.4.3.0.nupkg.sha512",
"System.Reflection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9784,12 +10260,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.DispatchProxy/4.0.1": {
- "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==",
+ "System.Reflection.DispatchProxy/4.3.0": {
+ "sha512": "vFln4g7zbLRyJbioExbMaW4BGuE2urDE2IKQk02x1y1uhQWntD+4rcYA4xQGJ19PlMdYPMWExHVQj3zKDODBFw==",
"type": "package",
- "path": "System.Reflection.DispatchProxy/4.0.1",
+ "path": "System.Reflection.DispatchProxy/4.3.0",
"files": [
- "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
+ "System.Reflection.DispatchProxy.4.3.0.nupkg.sha512",
"System.Reflection.DispatchProxy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9820,20 +10296,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
]
},
- "System.Reflection.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"type": "package",
- "path": "System.Reflection.Emit/4.0.1",
+ "path": "System.Reflection.Emit/4.3.0",
"files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.4.3.0.nupkg.sha512",
"System.Reflection.Emit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.dll",
"lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/net45/_._",
"ref/netstandard1.1/System.Reflection.Emit.dll",
@@ -9850,20 +10330,28 @@
"ref/xamarinmac20/_._"
]
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.0.1",
+ "path": "System.Reflection.Emit.ILGeneration/4.3.0",
"files": [
- "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
"System.Reflection.Emit.ILGeneration.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
@@ -9878,23 +10366,35 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.0.1",
+ "path": "System.Reflection.Emit.Lightweight/4.3.0",
"files": [
- "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
"System.Reflection.Emit.Lightweight.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.Lightweight.dll",
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
@@ -9909,15 +10409,19 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Extensions/4.0.1": {
- "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"type": "package",
- "path": "System.Reflection.Extensions/4.0.1",
+ "path": "System.Reflection.Extensions/4.3.0",
"files": [
- "System.Reflection.Extensions.4.0.1.nupkg.sha512",
+ "System.Reflection.Extensions.4.3.0.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9967,12 +10471,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.Metadata/1.3.0": {
- "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
+ "System.Reflection.Metadata/1.4.1": {
+ "sha512": "tc2ZyJgweHCLci5oQGuhQn9TD0Ii9DReXkHtZm3aAGp8xe40rpRjiTbMXOtZU+fr0BOQ46goE9+qIqRGjR9wGg==",
"type": "package",
- "path": "System.Reflection.Metadata/1.3.0",
+ "path": "System.Reflection.Metadata/1.4.1",
"files": [
- "System.Reflection.Metadata.1.3.0.nupkg.sha512",
+ "System.Reflection.Metadata.1.4.1.nupkg.sha512",
"System.Reflection.Metadata.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9982,12 +10486,12 @@
"lib/portable-net45+win8/System.Reflection.Metadata.xml"
]
},
- "System.Reflection.Primitives/4.0.1": {
- "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"type": "package",
- "path": "System.Reflection.Primitives/4.0.1",
+ "path": "System.Reflection.Primitives/4.3.0",
"files": [
- "System.Reflection.Primitives.4.0.1.nupkg.sha512",
+ "System.Reflection.Primitives.4.3.0.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10037,12 +10541,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.TypeExtensions/4.1.0": {
- "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"type": "package",
- "path": "System.Reflection.TypeExtensions/4.1.0",
+ "path": "System.Reflection.TypeExtensions/4.3.0",
"files": [
- "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512",
+ "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10089,24 +10593,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
- "System.Resources.Reader/4.0.0": {
- "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==",
+ "System.Resources.Reader/4.3.0": {
+ "sha512": "AeSwdrdgsRnGRJDofYEJPlotJm6gDDg6WJ1/1lX2Yq8bPwicba7lanPi7adK0SE58zgN5PcGg/h0tuZS+IRAdw==",
"type": "package",
- "path": "System.Resources.Reader/4.0.0",
+ "path": "System.Resources.Reader/4.3.0",
"files": [
- "System.Resources.Reader.4.0.0.nupkg.sha512",
+ "System.Resources.Reader.4.3.0.nupkg.sha512",
"System.Resources.Reader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Resources.Reader.dll"
]
},
- "System.Resources.ResourceManager/4.0.1": {
- "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"type": "package",
- "path": "System.Resources.ResourceManager/4.0.1",
+ "path": "System.Resources.ResourceManager/4.3.0",
"files": [
- "System.Resources.ResourceManager.4.0.1.nupkg.sha512",
+ "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10156,12 +10660,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime/4.1.0": {
- "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"type": "package",
- "path": "System.Runtime/4.1.0",
+ "path": "System.Runtime/4.3.0",
"files": [
- "System.Runtime.4.1.0.nupkg.sha512",
+ "System.Runtime.4.3.0.nupkg.sha512",
"System.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10246,12 +10750,25 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Extensions/4.1.0": {
- "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "sha512": "rcnXA1U9W3QUtMSGoyoNHH6w4V5Rxa/EKXmzpORUYlDAlDB34hIQoU57ATXl8xHa83VvzRm6PcElEizgUd7U5w==",
+ "type": "package",
+ "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
+ "files": [
+ "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
+ "System.Runtime.CompilerServices.Unsafe.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"type": "package",
- "path": "System.Runtime.Extensions/4.1.0",
+ "path": "System.Runtime.Extensions/4.3.0",
"files": [
- "System.Runtime.Extensions.4.1.0.nupkg.sha512",
+ "System.Runtime.Extensions.4.3.0.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10325,12 +10842,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Handles/4.0.1": {
- "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"type": "package",
- "path": "System.Runtime.Handles/4.0.1",
+ "path": "System.Runtime.Handles/4.3.0",
"files": [
- "System.Runtime.Handles.4.0.1.nupkg.sha512",
+ "System.Runtime.Handles.4.3.0.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10361,12 +10878,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices/4.1.0": {
- "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"type": "package",
- "path": "System.Runtime.InteropServices/4.1.0",
+ "path": "System.Runtime.InteropServices/4.3.0",
"files": [
- "System.Runtime.InteropServices.4.1.0.nupkg.sha512",
+ "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10374,6 +10891,7 @@
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
@@ -10385,6 +10903,7 @@
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
@@ -10396,6 +10915,7 @@
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
@@ -10449,18 +10969,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
"type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0",
+ "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
"files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.0.0.nupkg.sha512",
+ "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.RuntimeInformation.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/xamarinios10/_._",
@@ -10481,17 +11002,23 @@
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
]
},
- "System.Runtime.Loader/4.0.0": {
- "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
"type": "package",
- "path": "System.Runtime.Loader/4.0.0",
+ "path": "System.Runtime.Loader/4.3.0",
"files": [
- "System.Runtime.Loader.4.0.0.nupkg.sha512",
+ "System.Runtime.Loader.4.3.0.nupkg.sha512",
"System.Runtime.Loader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net462/_._",
"lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/netstandard1.5/System.Runtime.Loader.dll",
"ref/netstandard1.5/System.Runtime.Loader.xml",
"ref/netstandard1.5/de/System.Runtime.Loader.xml",
@@ -10505,12 +11032,12 @@
"ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
]
},
- "System.Runtime.Numerics/4.0.1": {
- "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
+ "System.Runtime.Numerics/4.3.0": {
+ "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"type": "package",
- "path": "System.Runtime.Numerics/4.0.1",
+ "path": "System.Runtime.Numerics/4.3.0",
"files": [
- "System.Runtime.Numerics.4.0.1.nupkg.sha512",
+ "System.Runtime.Numerics.4.3.0.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10560,12 +11087,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"type": "package",
- "path": "System.Runtime.Serialization.Primitives/4.1.1",
+ "path": "System.Runtime.Serialization.Primitives/4.3.0",
"files": [
- "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
+ "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
"System.Runtime.Serialization.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10631,12 +11158,12 @@
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
]
},
- "System.Security.Claims/4.0.1": {
- "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==",
+ "System.Security.Claims/4.3.0": {
+ "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
"type": "package",
- "path": "System.Security.Claims/4.0.1",
+ "path": "System.Security.Claims/4.3.0",
"files": [
- "System.Security.Claims.4.0.1.nupkg.sha512",
+ "System.Security.Claims.4.3.0.nupkg.sha512",
"System.Security.Claims.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10668,12 +11195,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
- "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.2.0",
+ "path": "System.Security.Cryptography.Algorithms/4.3.0",
"files": [
- "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10698,6 +11225,7 @@
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
@@ -10706,12 +11234,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
]
},
- "System.Security.Cryptography.Cng/4.2.0": {
- "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
"type": "package",
- "path": "System.Security.Cryptography.Cng/4.2.0",
+ "path": "System.Security.Cryptography.Cng/4.3.0",
"files": [
- "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Cng.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10732,12 +11260,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
]
},
- "System.Security.Cryptography.Csp/4.0.0": {
- "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"type": "package",
- "path": "System.Security.Cryptography.Csp/4.0.0",
+ "path": "System.Security.Cryptography.Csp/4.3.0",
"files": [
- "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Csp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10762,12 +11290,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
]
},
- "System.Security.Cryptography.Encoding/4.0.0": {
- "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"type": "package",
- "path": "System.Security.Cryptography.Encoding/4.0.0",
+ "path": "System.Security.Cryptography.Encoding/4.3.0",
"files": [
- "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10801,12 +11329,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
]
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
- "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
"type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.0.0",
+ "path": "System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
- "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
"System.Security.Cryptography.OpenSsl.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10815,12 +11343,12 @@
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
]
},
- "System.Security.Cryptography.Primitives/4.0.0": {
- "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"type": "package",
- "path": "System.Security.Cryptography.Primitives/4.0.0",
+ "path": "System.Security.Cryptography.Primitives/4.3.0",
"files": [
- "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10842,12 +11370,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.1.0",
+ "path": "System.Security.Cryptography.X509Certificates/4.3.0",
"files": [
- "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512",
+ "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10896,12 +11424,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
]
},
- "System.Security.Principal/4.0.1": {
- "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==",
+ "System.Security.Principal/4.3.0": {
+ "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
"type": "package",
- "path": "System.Security.Principal/4.0.1",
+ "path": "System.Security.Principal/4.3.0",
"files": [
- "System.Security.Principal.4.0.1.nupkg.sha512",
+ "System.Security.Principal.4.3.0.nupkg.sha512",
"System.Security.Principal.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10953,12 +11481,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Principal.Windows/4.0.0": {
- "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==",
+ "System.Security.Principal.Windows/4.3.0": {
+ "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
"type": "package",
- "path": "System.Security.Principal.Windows/4.0.0",
+ "path": "System.Security.Principal.Windows/4.3.0",
"files": [
- "System.Security.Principal.Windows.4.0.0.nupkg.sha512",
+ "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
"System.Security.Principal.Windows.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10980,12 +11508,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
]
},
- "System.Text.Encoding/4.0.11": {
- "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"type": "package",
- "path": "System.Text.Encoding/4.0.11",
+ "path": "System.Text.Encoding/4.3.0",
"files": [
- "System.Text.Encoding.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.4.3.0.nupkg.sha512",
"System.Text.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11047,7 +11575,7 @@
]
},
"System.Text.Encoding.CodePages/4.0.1": {
- "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
+ "sha512": "Mknrs0YEgYwQbDuTYiOqqos9jx6vXvqH/YTQARKLUv8TJCYXuL7M9Yq7DAlxHDELI39BmSmMDA9/cVIw7ExT+A==",
"type": "package",
"path": "System.Text.Encoding.CodePages/4.0.1",
"files": [
@@ -11083,12 +11611,12 @@
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
]
},
- "System.Text.Encoding.Extensions/4.0.11": {
- "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"type": "package",
- "path": "System.Text.Encoding.Extensions/4.0.11",
+ "path": "System.Text.Encoding.Extensions/4.3.0",
"files": [
- "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
"System.Text.Encoding.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11149,12 +11677,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encodings.Web/4.0.0": {
- "sha512": "TWZnuiJgPDAEEUfobD7njXvSVR2Toz+jvKWds6yL4oSztmKQfnWzucczjzA+6Dv1bktBdY71sZW1YN0X6m9chQ==",
+ "System.Text.Encodings.Web/4.3.0": {
+ "sha512": "ilLTKoirqw+Mbt+6x1MOxZKEwflasdP5WNuo5m5rKSXtAqazlEDqdyBH1XbvENuDQUtKNeP48CI1dyDNlEAeOA==",
"type": "package",
- "path": "System.Text.Encodings.Web/4.0.0",
+ "path": "System.Text.Encodings.Web/4.3.0",
"files": [
- "System.Text.Encodings.Web.4.0.0.nupkg.sha512",
+ "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
"System.Text.Encodings.Web.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11162,12 +11690,12 @@
"lib/netstandard1.0/System.Text.Encodings.Web.xml"
]
},
- "System.Text.RegularExpressions/4.1.0": {
- "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "System.Text.RegularExpressions/4.3.0": {
+ "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"type": "package",
- "path": "System.Text.RegularExpressions/4.1.0",
+ "path": "System.Text.RegularExpressions/4.3.0",
"files": [
- "System.Text.RegularExpressions.4.1.0.nupkg.sha512",
+ "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
"System.Text.RegularExpressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11200,6 +11728,7 @@
"ref/netcore50/ru/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
@@ -11243,12 +11772,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading/4.0.11": {
- "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"type": "package",
- "path": "System.Threading/4.0.11",
+ "path": "System.Threading/4.3.0",
"files": [
- "System.Threading.4.0.11.nupkg.sha512",
+ "System.Threading.4.3.0.nupkg.sha512",
"System.Threading.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11312,12 +11841,12 @@
"runtimes/aot/lib/netcore50/System.Threading.dll"
]
},
- "System.Threading.Overlapped/4.0.1": {
- "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==",
+ "System.Threading.Overlapped/4.3.0": {
+ "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
"type": "package",
- "path": "System.Threading.Overlapped/4.0.1",
+ "path": "System.Threading.Overlapped/4.3.0",
"files": [
- "System.Threading.Overlapped.4.0.1.nupkg.sha512",
+ "System.Threading.Overlapped.4.3.0.nupkg.sha512",
"System.Threading.Overlapped.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11340,12 +11869,12 @@
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
]
},
- "System.Threading.Tasks/4.0.11": {
- "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"type": "package",
- "path": "System.Threading.Tasks/4.0.11",
+ "path": "System.Threading.Tasks/4.3.0",
"files": [
- "System.Threading.Tasks.4.0.11.nupkg.sha512",
+ "System.Threading.Tasks.4.3.0.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11406,27 +11935,29 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Tasks.Dataflow/4.6.0": {
- "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==",
+ "System.Threading.Tasks.Dataflow/4.7.0": {
+ "sha512": "wcKLDI8tN5KpcMcTQwXfcLHrFdfINIxDBOZS3rE8QqOds/0fRhCkR+IEfQokxT7s/Yluqk+LG/ZqZdQmA/xgCw==",
"type": "package",
- "path": "System.Threading.Tasks.Dataflow/4.6.0",
+ "path": "System.Threading.Tasks.Dataflow/4.7.0",
"files": [
- "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
+ "System.Threading.Tasks.Dataflow.4.7.0.nupkg.sha512",
"System.Threading.Tasks.Dataflow.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
- "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
+ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll"
]
},
- "System.Threading.Tasks.Extensions/4.0.0": {
- "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"type": "package",
- "path": "System.Threading.Tasks.Extensions/4.0.0",
+ "path": "System.Threading.Tasks.Extensions/4.3.0",
"files": [
- "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512",
+ "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11436,12 +11967,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
]
},
- "System.Threading.Tasks.Parallel/4.0.1": {
- "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==",
+ "System.Threading.Tasks.Parallel/4.3.0": {
+ "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
"type": "package",
- "path": "System.Threading.Tasks.Parallel/4.0.1",
+ "path": "System.Threading.Tasks.Parallel/4.3.0",
"files": [
- "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
+ "System.Threading.Tasks.Parallel.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11491,12 +12022,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Thread/4.0.0": {
- "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
+ "System.Threading.Thread/4.3.0": {
+ "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
"type": "package",
- "path": "System.Threading.Thread/4.0.0",
+ "path": "System.Threading.Thread/4.3.0",
"files": [
- "System.Threading.Thread.4.0.0.nupkg.sha512",
+ "System.Threading.Thread.4.3.0.nupkg.sha512",
"System.Threading.Thread.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11529,12 +12060,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.ThreadPool/4.0.10": {
- "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
+ "System.Threading.ThreadPool/4.3.0": {
+ "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
"type": "package",
- "path": "System.Threading.ThreadPool/4.0.10",
+ "path": "System.Threading.ThreadPool/4.3.0",
"files": [
- "System.Threading.ThreadPool.4.0.10.nupkg.sha512",
+ "System.Threading.ThreadPool.4.3.0.nupkg.sha512",
"System.Threading.ThreadPool.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11567,12 +12098,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Timer/4.0.1": {
- "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "System.Threading.Timer/4.3.0": {
+ "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
"type": "package",
- "path": "System.Threading.Timer/4.0.1",
+ "path": "System.Threading.Timer/4.3.0",
"files": [
- "System.Threading.Timer.4.0.1.nupkg.sha512",
+ "System.Threading.Timer.4.3.0.nupkg.sha512",
"System.Threading.Timer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11620,18 +12151,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.ReaderWriter/4.0.11": {
- "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "System.Xml.ReaderWriter/4.3.0": {
+ "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"type": "package",
- "path": "System.Xml.ReaderWriter/4.0.11",
+ "path": "System.Xml.ReaderWriter/4.3.0",
"files": [
- "System.Xml.ReaderWriter.4.0.11.nupkg.sha512",
+ "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
"System.Xml.ReaderWriter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
+ "lib/net46/System.Xml.ReaderWriter.dll",
"lib/netcore50/System.Xml.ReaderWriter.dll",
"lib/netstandard1.3/System.Xml.ReaderWriter.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
@@ -11645,6 +12177,7 @@
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
+ "ref/net46/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.xml",
"ref/netcore50/de/System.Xml.ReaderWriter.xml",
@@ -11688,12 +12221,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "System.Xml.XDocument/4.3.0": {
+ "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"type": "package",
- "path": "System.Xml.XDocument/4.0.11",
+ "path": "System.Xml.XDocument/4.3.0",
"files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
+ "System.Xml.XDocument.4.3.0.nupkg.sha512",
"System.Xml.XDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11757,7 +12290,7 @@
]
},
"System.Xml.XmlDocument/4.0.1": {
- "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
+ "sha512": "QUdzLPVLBXg+3hQiTgLSy6lnMIN4Pj6+kRU2GJCwMooXHJvHp2PUjBg5Ms3r+ewPcu3dewET6v0a9UqPaUrTaw==",
"type": "package",
"path": "System.Xml.XmlDocument/4.0.1",
"files": [
@@ -11863,7 +12396,7 @@
]
},
"System.Xml.XPath/4.0.1": {
- "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
+ "sha512": "drxlpwgSyGH1S1lsW5pqBCQ7TLdAKjVl+G1F1HYAVDFdRBtAHCORwW2/IbMCidAb8jxjJPBTyUkcTrEedIXvoQ==",
"type": "package",
"path": "System.Xml.XPath/4.0.1",
"files": [
@@ -11900,7 +12433,7 @@
]
},
"System.Xml.XPath.XDocument/4.0.1": {
- "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==",
+ "sha512": "9beITE7Jz3Q0vTBbs7OeYVI57jpJJP5s5O7l6s5OnfOoY87o4lau9HbXARVaZ5leWeDPch/xvw7tO4oEBa2r2w==",
"type": "package",
"path": "System.Xml.XPath.XDocument/4.0.1",
"files": [
@@ -11936,58 +12469,58 @@
"ref/xamarinwatchos10/_._"
]
},
- "xunit/2.2.0-beta2-build3300": {
- "sha512": "jUMf+Hrw8+XZN56TfO+JjoibR5L806/kgDIkwCg9OXLlfnA4li4JTmH342ifYj1QMR10is8hfYYFTyjHq0+aQg==",
+ "xunit/2.2.0-beta4-build3444": {
+ "sha512": "Gd981l3FGdxwnnOrrj495BMy/zb07ZITSTnLvryaxnqTsqNXRH12fqJ4aliqc2nCFBZBstMYzLznbBy/53QEZA==",
"type": "package",
- "path": "xunit/2.2.0-beta2-build3300",
+ "path": "xunit/2.2.0-beta4-build3444",
"files": [
- "xunit.2.2.0-beta2-build3300.nupkg.sha512",
+ "xunit.2.2.0-beta4-build3444.nupkg.sha512",
"xunit.nuspec"
]
},
- "xunit.abstractions/2.0.1-rc2": {
- "sha512": "iUHMlyMDaXJ8N8qozg19tRlW0QiZPJ47ZJyV1fnpppGWdmukyq89/pg4HqpxQ52Co3Leo8NmiiYkB/gN48pZ+A==",
+ "xunit.abstractions/2.0.1": {
+ "sha512": "bDm/zdG5rnRDsobKuKwrvL4HccBdC0uvT12be6fG12P3d1U7u9Wkvfoq/PM2GeyIeb0Dtcmm/7k2oaawiqQ2Dg==",
"type": "package",
- "path": "xunit.abstractions/2.0.1-rc2",
+ "path": "xunit.abstractions/2.0.1",
"files": [
"lib/net35/xunit.abstractions.dll",
"lib/net35/xunit.abstractions.xml",
"lib/netstandard1.0/xunit.abstractions.dll",
"lib/netstandard1.0/xunit.abstractions.xml",
- "xunit.abstractions.2.0.1-rc2.nupkg.sha512",
+ "xunit.abstractions.2.0.1.nupkg.sha512",
"xunit.abstractions.nuspec"
]
},
- "xunit.assert/2.2.0-beta2-build3300": {
- "sha512": "5zsV2UhRQV5Ldme1N/NDhIBvQQTYdxmK87FXWWou1x3z7qpsZwe1YOjb0CY4F+1oXag8i9uTh/nZwv8jM66onA==",
+ "xunit.assert/2.2.0-beta4-build3444": {
+ "sha512": "ofTB1EEXB4A5hFbmvJHnjNGeazsyOsd8C2zfh/XJrCPKjdXXq/9TSD8xJn5JFUpO6PdArlS4bNAalhhijepjsw==",
"type": "package",
- "path": "xunit.assert/2.2.0-beta2-build3300",
+ "path": "xunit.assert/2.2.0-beta4-build3444",
"files": [
"lib/netstandard1.0/xunit.assert.dll",
"lib/netstandard1.0/xunit.assert.pdb",
"lib/netstandard1.0/xunit.assert.xml",
- "xunit.assert.2.2.0-beta2-build3300.nupkg.sha512",
+ "xunit.assert.2.2.0-beta4-build3444.nupkg.sha512",
"xunit.assert.nuspec"
]
},
- "xunit.core/2.2.0-beta2-build3300": {
- "sha512": "HgKP6+FUKcIcVFMDgoTCANRKOgGeEDvg2a2AL3mOyBHE//grWL1EO0KybxUw26S8fnNJrhmI5LBWyVUIsPxI5Q==",
+ "xunit.core/2.2.0-beta4-build3444": {
+ "sha512": "yGoZJbcxG2997f6Fy+2RNTRnW0Gz0lmFUUNLoa9RaXyQz/K/OsHXbSrOGMs7cxnXDfXMwjjrvDS1U4P34sOX1w==",
"type": "package",
- "path": "xunit.core/2.2.0-beta2-build3300",
+ "path": "xunit.core/2.2.0-beta4-build3444",
"files": [
"build/_desktop/xunit.execution.desktop.dll",
"build/netstandard1.0/_._",
"build/uap10.0/xunit.core.props",
"build/win81/xunit.core.props",
"build/wpa81/xunit.core.props",
- "xunit.core.2.2.0-beta2-build3300.nupkg.sha512",
+ "xunit.core.2.2.0-beta4-build3444.nupkg.sha512",
"xunit.core.nuspec"
]
},
- "xunit.extensibility.core/2.2.0-beta2-build3300": {
- "sha512": "d+UCqIL8Je3tSdhF7w6NZdzH2jYzNh2LhsMp0gUVAD3NgVEo2oK/3Xr7ZlYZM40Y6fJWoO46UntzrpNlix75mg==",
+ "xunit.extensibility.core/2.2.0-beta4-build3444": {
+ "sha512": "ISdMbAOe4SnsHMLejyZFWvTA/ZvrOxO/fo6GxCGRT6NufIUwa5K8Yinsav8pT2+c+6iWN9uNgsqnW3iR4takYg==",
"type": "package",
- "path": "xunit.extensibility.core/2.2.0-beta2-build3300",
+ "path": "xunit.extensibility.core/2.2.0-beta4-build3444",
"files": [
"lib/net45/xunit.core.dll",
"lib/net45/xunit.core.dll.tdnet",
@@ -11996,16 +12529,19 @@
"lib/net45/xunit.runner.tdnet.dll",
"lib/net45/xunit.runner.utility.desktop.dll",
"lib/netstandard1.0/xunit.core.dll",
+ "lib/netstandard1.0/xunit.core.dll.tdnet",
"lib/netstandard1.0/xunit.core.pdb",
"lib/netstandard1.0/xunit.core.xml",
- "xunit.extensibility.core.2.2.0-beta2-build3300.nupkg.sha512",
+ "lib/netstandard1.0/xunit.runner.tdnet.dll",
+ "lib/netstandard1.0/xunit.runner.utility.desktop.dll",
+ "xunit.extensibility.core.2.2.0-beta4-build3444.nupkg.sha512",
"xunit.extensibility.core.nuspec"
]
},
- "xunit.extensibility.execution/2.2.0-beta2-build3300": {
- "sha512": "z0DgzvWxQtXaj2qebFkW5f69ZItvY/YRWEbKwL0yIbvhiCViiuHlP+qvvloVlrlsOuo+Y/vfjQb/3Cz+ok/+5A==",
+ "xunit.extensibility.execution/2.2.0-beta4-build3444": {
+ "sha512": "H4elREzKuTxHF1Nha4TXdI3DI/l2IMiIeRa9BTjwpEXkJ6G1kO1QHBQ6PQvotjk727d7zctODU1BgBNlfpMi4g==",
"type": "package",
- "path": "xunit.extensibility.execution/2.2.0-beta2-build3300",
+ "path": "xunit.extensibility.execution/2.2.0-beta4-build3444",
"files": [
"lib/net45/xunit.execution.desktop.dll",
"lib/net45/xunit.execution.desktop.pdb",
@@ -12013,7 +12549,7 @@
"lib/netstandard1.0/xunit.execution.dotnet.dll",
"lib/netstandard1.0/xunit.execution.dotnet.pdb",
"lib/netstandard1.0/xunit.execution.dotnet.xml",
- "xunit.extensibility.execution.2.2.0-beta2-build3300.nupkg.sha512",
+ "xunit.extensibility.execution.2.2.0-beta4-build3444.nupkg.sha512",
"xunit.extensibility.execution.nuspec"
]
},
@@ -12051,37 +12587,37 @@
"path": "../Lite.Web/project.json",
"msbuildProject": "../Lite.Web/Lite.Web.xproj"
},
- "MyTested.AspNetCore.Mvc.Abstractions/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Abstractions/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Abstractions/MyTested.AspNetCore.Mvc.Abstractions.xproj"
},
- "MyTested.AspNetCore.Mvc.Configuration/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Configuration/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Configuration/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Configuration/MyTested.AspNetCore.Mvc.Configuration.xproj"
},
- "MyTested.AspNetCore.Mvc.Controllers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Controllers/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Controllers/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Controllers/MyTested.AspNetCore.Mvc.Controllers.xproj"
},
- "MyTested.AspNetCore.Mvc.Licensing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Licensing/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Licensing/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Licensing/MyTested.AspNetCore.Mvc.Licensing.xproj"
},
- "MyTested.AspNetCore.Mvc.Lite/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Lite/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Lite/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Lite/MyTested.AspNetCore.Mvc.Lite.xproj"
},
- "MyTested.AspNetCore.Mvc.ViewActionResults/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewActionResults/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.ViewActionResults/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.ViewActionResults/MyTested.AspNetCore.Mvc.ViewActionResults.xproj"
},
- "MyTested.AspNetCore.Mvc.ViewComponents/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewComponents/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.ViewComponents/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.ViewComponents/MyTested.AspNetCore.Mvc.ViewComponents.xproj"
@@ -12090,13 +12626,14 @@
"projectFileDependencyGroups": {
"": [
"Lite.Web",
+ "Microsoft.DotNet.InternalAbstractions >= 1.0.0",
"Moq >= 4.6.38-*",
- "MyTested.AspNetCore.Mvc.Lite >= 1.0.0",
+ "MyTested.AspNetCore.Mvc.Lite >= 1.1.0",
"dotnet-test-xunit >= 2.2.0-*",
"xunit >= 2.2.0-*"
],
- ".NETCoreApp,Version=v1.0": [
- "Microsoft.NETCore.App >= 1.0.1"
+ ".NETCoreApp,Version=v1.1": [
+ "Microsoft.NETCore.App >= 1.1.0"
],
".NETFramework,Version=v4.5.1": []
},
diff --git a/samples/Lite/Lite.Web/project.json b/samples/Lite/Lite.Web/project.json
index 8d1f64126..b9e02c78e 100644
--- a/samples/Lite/Lite.Web/project.json
+++ b/samples/Lite/Lite.Web/project.json
@@ -1,33 +1,33 @@
{
"dependencies": {
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.1",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Logging.Console": "1.0.0",
- "Microsoft.Extensions.Logging.Debug": "1.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Logging.Console": "1.1.0",
+ "Microsoft.Extensions.Logging.Debug": "1.1.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0"
},
"tools": {
- "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
+ "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.1.0-preview4-final"
},
"frameworks": {
"net451": {
},
- "netcoreapp1.0": {
+ "netcoreapp1.1": {
"imports": [
"dotnet5.6",
"portable-net45+win8"
],
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.0.1",
+ "version": "1.1.0",
"type": "platform"
}
}
diff --git a/samples/Lite/Lite.Web/project.lock.json b/samples/Lite/Lite.Web/project.lock.json
index 4084bef3c..26327fca0 100644
--- a/samples/Lite/Lite.Web/project.lock.json
+++ b/samples/Lite/Lite.Web/project.lock.json
@@ -2,8 +2,8 @@
"locked": false,
"version": 2,
"targets": {
- ".NETCoreApp,Version=v1.0": {
- "Libuv/1.9.0": {
+ ".NETCoreApp,Version=v1.1": {
+ "Libuv/1.9.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
@@ -43,13 +43,15 @@
}
}
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -58,12 +60,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Claims": "4.0.1"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
@@ -72,13 +75,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
@@ -87,15 +91,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
@@ -104,22 +103,19 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
@@ -128,13 +124,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
@@ -143,10 +137,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -155,43 +149,43 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Console": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.StackTrace": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.StackTrace": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {}
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {}
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -200,11 +194,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -213,12 +208,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -227,16 +221,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
@@ -245,15 +239,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Globalization.Extensions": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -262,14 +256,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.IO.FileSystem": "4.0.1"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -278,19 +272,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebSockets": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0",
+ "System.Net.WebSockets": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -299,12 +289,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
@@ -313,36 +304,29 @@
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
@@ -351,19 +335,20 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
@@ -372,15 +357,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -389,10 +373,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -401,21 +386,22 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -424,11 +410,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -437,12 +424,13 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0",
- "System.ComponentModel.Annotations": "4.1.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.Annotations": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
@@ -451,11 +439,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -464,13 +453,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -479,15 +469,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -496,16 +486,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -514,13 +502,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -529,19 +519,20 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Buffers": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -550,16 +541,11 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Threading": "4.0.11",
- "System.Threading.Thread": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
@@ -568,18 +554,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
@@ -588,16 +569,28 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.1": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
@@ -606,13 +599,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -621,16 +612,17 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Principal.Windows": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
@@ -639,30 +631,18 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
}
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Numerics.Vectors": "4.1.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "System.Threading.Timer": "4.0.1"
+ "Libuv": "1.9.1",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
@@ -671,15 +651,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -765,25 +744,25 @@
"lib/netstandard1.3/_._": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.0/Microsoft.CSharp.dll": {}
@@ -792,7 +771,16 @@
"lib/netstandard1.3/Microsoft.CSharp.dll": {}
}
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
+ "Microsoft.DiaSymReader.Native/1.4.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/win/native/_._": {
+ "assetType": "native",
+ "rid": "win"
+ }
+ }
+ },
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
"System.AppContext": "4.1.0",
@@ -805,19 +793,17 @@
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
},
"compile": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -826,14 +812,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Linq": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -842,17 +827,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0": {
+ "Microsoft.Extensions.Configuration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
@@ -861,11 +840,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -874,11 +853,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
@@ -887,10 +867,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
@@ -899,12 +880,13 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.AppContext": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
@@ -913,15 +895,15 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Dynamic.Runtime": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
@@ -930,15 +912,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -947,16 +925,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -965,10 +938,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
@@ -981,12 +954,11 @@
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -995,10 +967,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -1007,16 +980,13 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.IO.FileSystem.Watcher": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -1025,14 +995,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
@@ -1041,12 +1007,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -1055,15 +1019,15 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Resources.Reader": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Resources.Reader": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
@@ -1072,12 +1036,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -1086,12 +1049,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -1100,18 +1063,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -1120,14 +1075,12 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Console": "4.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
@@ -1136,11 +1089,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
}
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Diagnostics.Debug": "4.0.11"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
@@ -1149,13 +1102,10 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
@@ -1164,20 +1114,13 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -1186,13 +1129,14 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0": {
+ "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Binder": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
@@ -1201,15 +1145,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.AppContext": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
@@ -1218,11 +1158,11 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -1231,12 +1171,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -1245,17 +1186,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -1264,50 +1201,51 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.App/1.0.1": {
+ "Microsoft.NETCore.App/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.CSharp": "4.0.1",
+ "Libuv": "1.9.1",
+ "Microsoft.CSharp": "4.3.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
"Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
- "Microsoft.NETCore.DotNetHostPolicy": "1.0.1",
- "Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
- "Microsoft.VisualBasic": "10.0.1",
- "NETStandard.Library": "1.6.0",
- "System.Buffers": "4.0.0",
- "System.Collections.Immutable": "1.2.0",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Annotations": "4.1.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Process": "4.1.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.IO.MemoryMappedFiles": "4.0.0",
- "System.IO.UnmanagedMemoryStream": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Linq.Parallel": "4.0.1",
- "System.Linq.Queryable": "4.0.1",
- "System.Net.NameResolution": "4.0.0",
- "System.Net.Requests": "4.0.11",
- "System.Net.Security": "4.0.0",
- "System.Net.WebHeaderCollection": "4.0.1",
- "System.Numerics.Vectors": "4.1.1",
- "System.Reflection.DispatchProxy": "4.0.1",
- "System.Reflection.Metadata": "1.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.Reader": "4.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Threading.Tasks.Dataflow": "4.6.0",
- "System.Threading.Tasks.Extensions": "4.0.0",
- "System.Threading.Tasks.Parallel": "4.0.1",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10"
+ "Microsoft.DiaSymReader.Native": "1.4.0",
+ "Microsoft.NETCore.DotNetHostPolicy": "1.1.0",
+ "Microsoft.NETCore.Runtime.CoreCLR": "1.1.0",
+ "Microsoft.VisualBasic": "10.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Annotations": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Process": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO.FileSystem.Watcher": "4.3.0",
+ "System.IO.MemoryMappedFiles": "4.3.0",
+ "System.IO.UnmanagedMemoryStream": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Linq.Parallel": "4.3.0",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Net.Requests": "4.3.0",
+ "System.Net.Security": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Reflection.DispatchProxy": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.Reader": "4.3.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Threading.Tasks.Dataflow": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Tasks.Parallel": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
},
"compile": {
"lib/netcoreapp1.0/_._": {}
@@ -1316,25 +1254,25 @@
"lib/netcoreapp1.0/_._": {}
}
},
- "Microsoft.NETCore.DotNetHost/1.0.1": {
+ "Microsoft.NETCore.DotNetHost/1.1.0": {
"type": "package"
},
- "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
+ "Microsoft.NETCore.DotNetHostPolicy/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.DotNetHostResolver": "1.0.1"
+ "Microsoft.NETCore.DotNetHostResolver": "1.1.0"
}
},
- "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
+ "Microsoft.NETCore.DotNetHostResolver/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.DotNetHost": "1.0.1"
+ "Microsoft.NETCore.DotNetHost": "1.1.0"
}
},
- "Microsoft.NETCore.Jit/1.0.4": {
+ "Microsoft.NETCore.Jit/1.1.0": {
"type": "package"
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1343,14 +1281,14 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
+ "Microsoft.NETCore.Runtime.CoreCLR/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Jit": "1.0.4",
+ "Microsoft.NETCore.Jit": "1.1.0",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1"
}
},
- "Microsoft.NETCore.Targets/1.0.1": {
+ "Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1362,25 +1300,25 @@
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
- "Microsoft.VisualBasic/10.0.1": {
+ "Microsoft.VisualBasic/10.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.1/Microsoft.VisualBasic.dll": {}
@@ -1389,28 +1327,28 @@
"lib/netstandard1.3/_._": {}
}
},
- "Microsoft.Win32.Primitives/4.0.1": {
+ "Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
- "Microsoft.Win32.Registry/4.0.0": {
+ "Microsoft.Win32.Registry/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
@@ -1426,53 +1364,53 @@
}
}
},
- "NETStandard.Library/1.6.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Console": "4.0.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.Compression.ZipFile": "4.0.1",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/9.0.1": {
@@ -1508,24 +1446,38 @@
"lib/netstandard1.0/Newtonsoft.Json.dll": {}
}
},
- "runtime.native.System/4.0.0": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
+ "runtimeTargets": {
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "debian.8-x64"
+ }
}
},
- "runtime.native.System.IO.Compression/4.1.0": {
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "runtimeTargets": {
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.23-x64"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.24-x64"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1534,11 +1486,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Http/4.0.1": {
+ "runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1547,11 +1499,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Security/4.0.1": {
+ "runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1560,11 +1512,23 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
+ "runtime.native.System.Net.Security/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1573,10 +1537,103 @@
"lib/netstandard1.0/_._": {}
}
},
- "System.AppContext/4.1.0": {
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.13.2-x64"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.42.1-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "rhel.7-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.14.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.10-x64"
+ }
+ }
+ },
+ "System.AppContext/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.AppContext.dll": {}
@@ -1585,14 +1642,14 @@
"lib/netstandard1.6/System.AppContext.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -1601,12 +1658,12 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.dll": {}
@@ -1615,19 +1672,19 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -1636,17 +1693,17 @@
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
@@ -1655,15 +1712,15 @@
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
}
},
- "System.Collections.NonGeneric/4.0.1": {
+ "System.Collections.NonGeneric/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -1672,16 +1729,16 @@
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
- "System.Collections.Specialized/4.0.1": {
+ "System.Collections.Specialized/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -1690,10 +1747,10 @@
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.dll": {}
@@ -1702,20 +1759,20 @@
"lib/netstandard1.3/System.ComponentModel.dll": {}
}
},
- "System.ComponentModel.Annotations/4.1.0": {
+ "System.ComponentModel.Annotations/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
@@ -1724,12 +1781,12 @@
"lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
@@ -1738,24 +1795,24 @@
"lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
@@ -1764,23 +1821,23 @@
"lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Console/4.0.0": {
+ "System.Console/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Console.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
@@ -1789,12 +1846,12 @@
"lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
@@ -1803,14 +1860,14 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
@@ -1846,30 +1903,30 @@
}
}
},
- "System.Diagnostics.Process/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0"
+ "System.Diagnostics.Process/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Diagnostics.Process.dll": {}
@@ -1881,15 +1938,13 @@
}
}
},
- "System.Diagnostics.StackTrace/4.0.1": {
+ "System.Diagnostics.StackTrace/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "1.2.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.IO.FileSystem": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
@@ -1898,12 +1953,12 @@
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
@@ -1912,12 +1967,12 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
@@ -1926,24 +1981,23 @@
"lib/portable-net45+win8+wpa81/_._": {}
}
},
- "System.Dynamic.Runtime/4.0.11": {
+ "System.Dynamic.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
@@ -1952,12 +2006,12 @@
"lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.dll": {}
@@ -1966,27 +2020,27 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Globalization.Calendars/4.0.1": {
+ "System.Globalization.Calendars/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
- "System.Globalization.Extensions/4.0.1": {
+ "System.Globalization.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
@@ -2002,14 +2056,14 @@
}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.IO.dll": {}
@@ -2018,23 +2072,24 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.IO.Compression": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.dll": {}
@@ -2043,52 +2098,56 @@
"lib/portable-net45+win8+wpa81/_._": {}
},
"runtimeTargets": {
- "runtimes/win/lib/netstandard1.3/_._": {
+ "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
- "System.IO.Compression.ZipFile/4.0.1": {
+ "System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
},
"runtime": {
- "lib/netstandard1.3/_._": {}
+ "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
- "System.IO.FileSystem/4.0.1": {
+ "System.IO.FileSystem/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1": {
+ "System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -2097,25 +2156,25 @@
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0": {
+ "System.IO.FileSystem.Watcher/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
@@ -2135,22 +2194,22 @@
}
}
},
- "System.IO.MemoryMappedFiles/4.0.0": {
+ "System.IO.MemoryMappedFiles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.IO.UnmanagedMemoryStream": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.IO.UnmanagedMemoryStream": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
@@ -2162,16 +2221,18 @@
}
}
},
- "System.IO.UnmanagedMemoryStream/4.0.1": {
+ "System.IO.UnmanagedMemoryStream/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
@@ -2180,14 +2241,14 @@
"lib/netstandard1.3/_._": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.dll": {}
@@ -2196,26 +2257,26 @@
"lib/netstandard1.6/System.Linq.dll": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -2224,19 +2285,19 @@
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
}
},
- "System.Linq.Parallel/4.0.1": {
+ "System.Linq.Parallel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Linq.Parallel.dll": {}
@@ -2245,17 +2306,17 @@
"lib/netstandard1.3/_._": {}
}
},
- "System.Linq.Queryable/4.0.1": {
+ "System.Linq.Queryable/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Linq.Queryable.dll": {}
@@ -2264,35 +2325,35 @@
"lib/netstandard1.3/_._": {}
}
},
- "System.Net.Http/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Http.dll": {}
@@ -2301,29 +2362,33 @@
"lib/portable-net45+win8+wpa81/_._": {}
},
"runtimeTargets": {
- "runtimes/win/lib/netstandard1.3/_._": {
+ "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
- "System.Net.NameResolution/4.0.0": {
+ "System.Net.NameResolution/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
@@ -2335,13 +2400,13 @@
}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Primitives.dll": {}
@@ -2350,22 +2415,22 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Net.Requests/4.0.11": {
+ "System.Net.Requests/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebHeaderCollection": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Requests.dll": {}
@@ -2380,37 +2445,37 @@
}
}
},
- "System.Net.Security/4.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Security": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Security/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Security": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Security.dll": {}
@@ -2422,27 +2487,27 @@
}
}
},
- "System.Net.Sockets/4.1.0": {
+ "System.Net.Sockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
- "System.Net.WebHeaderCollection/4.0.1": {
+ "System.Net.WebHeaderCollection/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
@@ -2451,13 +2516,13 @@
"lib/netstandard1.3/_._": {}
}
},
- "System.Net.WebSockets/4.0.0": {
+ "System.Net.WebSockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
@@ -2466,13 +2531,13 @@
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
- "System.Numerics.Vectors/4.1.1": {
+ "System.Numerics.Vectors/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
@@ -2481,14 +2546,14 @@
"lib/netstandard1.0/System.Numerics.Vectors.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.ObjectModel.dll": {}
@@ -2497,14 +2562,14 @@
"lib/netstandard1.3/System.ObjectModel.dll": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.dll": {}
@@ -2513,19 +2578,19 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Reflection.DispatchProxy/4.0.1": {
+ "System.Reflection.DispatchProxy/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
@@ -2534,14 +2599,14 @@
"lib/netstandard1.3/_._": {}
}
},
- "System.Reflection.Emit/4.0.1": {
+ "System.Reflection.Emit/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
@@ -2550,12 +2615,12 @@
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -2564,13 +2629,13 @@
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
+ "System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -2579,13 +2644,13 @@
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Extensions.dll": {}
@@ -2594,24 +2659,25 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Reflection.Metadata/1.3.0": {
+ "System.Reflection.Metadata/1.4.1": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Immutable": "1.2.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
@@ -2620,12 +2686,12 @@
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Primitives.dll": {}
@@ -2634,11 +2700,11 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Reflection.TypeExtensions/4.1.0": {
+ "System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -2647,14 +2713,14 @@
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
}
},
- "System.Resources.Reader/4.0.0": {
+ "System.Resources.Reader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Resources.Reader.dll": {}
@@ -2663,41 +2729,53 @@
"lib/netstandard1.0/System.Resources.Reader.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
},
"runtime": {
- "lib/portable-net45+win8+wp8+wpa81/_._": {}
+ "lib/portable-net45+win8+wp8+wpa81/_._": {}
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {}
+ },
+ "runtime": {
+ "lib/portable-net45+win8+wp80+wpa81/_._": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.dll": {}
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
},
"runtime": {
- "lib/portable-net45+win8+wp80+wpa81/_._": {}
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Extensions.dll": {}
@@ -2706,48 +2784,51 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Runtime.Handles/4.0.1": {
+ "System.Runtime.Handles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
},
"runtime": {
"lib/portable-net45+win8+wpa81/_._": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
@@ -2759,12 +2840,12 @@
}
}
},
- "System.Runtime.Loader/4.0.0": {
+ "System.Runtime.Loader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -2773,13 +2854,13 @@
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.Numerics.dll": {}
@@ -2788,11 +2869,11 @@
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
+ "System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
@@ -2801,16 +2882,16 @@
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "System.Security.Claims/4.0.1": {
+ "System.Security.Claims/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
@@ -2819,27 +2900,32 @@
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
+ "System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "unix"
@@ -2850,20 +2936,20 @@
}
}
},
- "System.Security.Cryptography.Cng/4.2.0": {
+ "System.Security.Cryptography.Cng/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -2879,22 +2965,22 @@
}
}
},
- "System.Security.Cryptography.Csp/4.0.0": {
+ "System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -2910,21 +2996,21 @@
}
}
},
- "System.Security.Cryptography.Encoding/4.0.0": {
+ "System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
@@ -2940,22 +3026,22 @@
}
}
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -2970,16 +3056,16 @@
}
}
},
- "System.Security.Cryptography.Primitives/4.0.0": {
+ "System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
@@ -2988,34 +3074,34 @@
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Cng": "4.2.0",
- "System.Security.Cryptography.Csp": "4.0.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
@@ -3031,10 +3117,10 @@
}
}
},
- "System.Security.Principal/4.0.1": {
+ "System.Security.Principal/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Security.Principal.dll": {}
@@ -3043,23 +3129,23 @@
"lib/netstandard1.0/System.Security.Principal.dll": {}
}
},
- "System.Security.Principal.Windows/4.0.0": {
+ "System.Security.Principal.Windows/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
@@ -3075,12 +3161,12 @@
}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.dll": {}
@@ -3119,13 +3205,13 @@
}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
@@ -3134,16 +3220,16 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -3152,28 +3238,23 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.dll": {}
@@ -3182,13 +3263,13 @@
"lib/netstandard1.3/System.Threading.dll": {}
}
},
- "System.Threading.Overlapped/4.0.1": {
+ "System.Threading.Overlapped/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -3204,12 +3285,12 @@
}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Tasks.dll": {}
@@ -3218,20 +3299,20 @@
"lib/portable-net45+win8+wp8+wpa81/_._": {}
}
},
- "System.Threading.Tasks.Dataflow/4.6.0": {
+ "System.Threading.Tasks.Dataflow/4.7.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
@@ -3240,12 +3321,12 @@
"lib/netstandard1.1/_._": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
@@ -3254,17 +3335,17 @@
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
}
},
- "System.Threading.Tasks.Parallel/4.0.1": {
+ "System.Threading.Tasks.Parallel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
@@ -3273,10 +3354,10 @@
"lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
}
},
- "System.Threading.Thread/4.0.0": {
+ "System.Threading.Thread/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Thread.dll": {}
@@ -3285,11 +3366,11 @@
"lib/netstandard1.3/System.Threading.Thread.dll": {}
}
},
- "System.Threading.ThreadPool/4.0.10": {
+ "System.Threading.ThreadPool/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
@@ -3298,35 +3379,35 @@
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -3335,21 +3416,21 @@
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -3421,7 +3502,7 @@
}
},
".NETFramework,Version=v4.5.1": {
- "Libuv/1.9.0": {
+ "Libuv/1.9.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
@@ -3461,13 +3542,15 @@
}
}
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -3476,11 +3559,12 @@
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
@@ -3489,13 +3573,14 @@
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
@@ -3504,8 +3589,11 @@
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
},
@@ -3513,15 +3601,16 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Security",
@@ -3535,8 +3624,11 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
},
@@ -3544,10 +3636,10 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -3556,23 +3648,23 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.dll": {}
@@ -3581,15 +3673,16 @@
"lib/net451/Microsoft.AspNetCore.Hosting.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -3598,11 +3691,12 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -3611,12 +3705,11 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -3625,15 +3718,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
@@ -3642,11 +3736,13 @@
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -3655,13 +3751,14 @@
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -3670,10 +3767,11 @@
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -3682,12 +3780,13 @@
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {}
@@ -3696,36 +3795,27 @@
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "9.0.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
@@ -3734,19 +3824,20 @@
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
@@ -3755,11 +3846,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -3768,10 +3860,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -3780,20 +3873,22 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -3802,11 +3897,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -3815,11 +3911,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.ComponentModel.DataAnnotations"
@@ -3831,11 +3928,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -3844,13 +3942,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -3859,13 +3958,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -3874,12 +3974,13 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -3888,13 +3989,15 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -3903,18 +4006,19 @@
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0"
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -3923,8 +4027,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
},
@@ -3932,11 +4039,12 @@
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Xml",
@@ -3949,14 +4057,27 @@
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.1": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "1.1.0"
+ },
+ "compile": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
@@ -3965,10 +4086,11 @@
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -3977,15 +4099,16 @@
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
@@ -3994,16 +4117,16 @@
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
}
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Numerics.Vectors": "4.1.1",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "Libuv": "1.9.1",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {}
@@ -4012,12 +4135,14 @@
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -4058,7 +4183,7 @@
"lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"Microsoft.CSharp"
@@ -4070,22 +4195,20 @@
"lib/net45/_._": {}
}
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
"type": "package",
"compile": {
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -4094,12 +4217,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -4108,17 +4232,11 @@
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0": {
+ "Microsoft.Extensions.Configuration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
@@ -4127,11 +4245,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -4140,11 +4258,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
@@ -4153,10 +4272,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
@@ -4165,11 +4285,12 @@
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
@@ -4178,11 +4299,12 @@
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -4192,15 +4314,11 @@
"lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -4209,16 +4327,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -4227,10 +4340,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -4240,12 +4353,11 @@
"lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -4254,10 +4366,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -4266,11 +4379,12 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -4279,21 +4393,22 @@
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -4302,13 +4417,14 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Localization.dll": {}
@@ -4317,12 +4433,11 @@
"lib/net451/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -4331,12 +4446,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -4345,18 +4460,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -4365,12 +4472,12 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Logging.Console.dll": {}
@@ -4379,10 +4486,11 @@
"lib/net451/Microsoft.Extensions.Logging.Console.dll": {}
}
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Logging.Debug.dll": {}
@@ -4391,8 +4499,11 @@
"lib/net451/Microsoft.Extensions.Logging.Debug.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
},
@@ -4400,20 +4511,13 @@
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -4422,13 +4526,14 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0": {
+ "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Binder": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
@@ -4437,8 +4542,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
@@ -4446,11 +4554,11 @@
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -4459,12 +4567,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -4473,17 +4582,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -4492,7 +4597,7 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -4501,6 +4606,42 @@
"lib/netstandard1.0/_._": {}
}
},
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
@@ -4510,7 +4651,7 @@
"lib/net45/Newtonsoft.Json.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -4519,7 +4660,7 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -4532,7 +4673,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -4544,7 +4685,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
@@ -4553,7 +4694,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -4565,7 +4706,7 @@
"lib/net45/_._": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -4578,10 +4719,10 @@
"lib/net45/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel.Primitives": "4.1.0"
+ "System.ComponentModel.Primitives": "4.3.0"
},
"frameworkAssemblies": [
"System",
@@ -4594,7 +4735,7 @@
"lib/net45/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -4603,7 +4744,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -4615,7 +4756,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
@@ -4624,7 +4765,28 @@
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Globalization/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -4633,7 +4795,7 @@
"lib/net45/_._": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -4645,7 +4807,19 @@
"lib/net45/_._": {}
}
},
- "System.Linq/4.1.0": {
+ "System.IO.Compression/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.IO.Compression"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -4657,7 +4831,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -4669,7 +4843,31 @@
"lib/net45/_._": {}
}
},
- "System.Numerics.Vectors/4.1.1": {
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.Net.Http"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Numerics.Vectors/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
@@ -4678,7 +4876,19 @@
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.ObjectModel/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Reflection/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -4687,7 +4897,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -4696,10 +4906,10 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Metadata/1.3.0": {
+ "System.Reflection.Metadata/1.4.1": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "1.2.0"
+ "System.Collections.Immutable": "1.3.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
@@ -4708,7 +4918,16 @@
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -4717,7 +4936,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -4731,7 +4950,16 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -4743,7 +4971,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -4756,7 +4984,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
@@ -4775,10 +5003,10 @@
}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"frameworkAssemblies": [
- "System.Runtime.Serialization"
+ "System.Numerics"
],
"compile": {
"ref/net45/_._": {}
@@ -4787,7 +5015,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -4796,7 +5024,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -4805,7 +5033,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -4814,7 +5042,19 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Threading/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -4827,7 +5067,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -4839,7 +5079,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
@@ -4847,16 +5087,49 @@
"runtime": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
+ },
+ "System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/net451/_._": {}
+ },
+ "runtime": {
+ "lib/net451/_._": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.Xml"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
}
}
},
"libraries": {
- "Libuv/1.9.0": {
- "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==",
+ "Libuv/1.9.1": {
+ "sha512": "uqX2Frwf9PW8MaY7PRNY6HM5BpW1D8oj1EdqzrmbEFD5nH63Yat3aEjN/tws6Tw6Fk7LwmLBvtUh32tTeTaHiA==",
"type": "package",
- "path": "Libuv/1.9.0",
+ "path": "Libuv/1.9.1",
"files": [
- "Libuv.1.9.0.nupkg.sha512",
+ "Libuv.1.9.1.nupkg.sha512",
"Libuv.nuspec",
"License.txt",
"runtimes/debian-x64/native/libuv.so",
@@ -4869,12 +5142,12 @@
"runtimes/win7-x86/native/libuv.dll"
]
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
- "sha512": "MMevi8HnI5GxtNOS9ZqZLuNafltbngXsOrNqyykFveMWFN5a3AfAB7I0qU77tBS9B/N3boRQuyT9AR0BsCQbaw==",
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
+ "sha512": "6HM8/rsSGAQybSZ9sNP2f0Xqh507OJu3kvqRksXeHUXV72yuwFpnauGkfIMSt+gwPSvyk8qGqZB2m4sKCUomhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Antiforgery/1.0.1",
+ "path": "Microsoft.AspNetCore.Antiforgery/1.1.0",
"files": [
- "Microsoft.AspNetCore.Antiforgery.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Antiforgery.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Antiforgery.nuspec",
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
"lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
@@ -4882,12 +5155,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
]
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
- "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==",
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
+ "sha512": "dqveE6pqsnzkab2vw+aFExFYeCikF/T+GKZW9ki8dwJuN7M2+jJcgWtYAv83q7NjBARVh2xH8xf0ahzeuXL/WQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authorization/1.0.0",
+ "path": "Microsoft.AspNetCore.Authorization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authorization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authorization.nuspec",
"lib/net451/Microsoft.AspNetCore.Authorization.dll",
"lib/net451/Microsoft.AspNetCore.Authorization.xml",
@@ -4895,12 +5168,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
]
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
- "sha512": "fC8lWOU3+ltkbgQyD1P7eRQ66fGfZkPNU2UkwOI8tyF5FUsd8nRTfzvsO4mSyQfgmgfk2Hc8TGzx/okevZwXkg==",
+ "Microsoft.AspNetCore.Cors/1.1.0": {
+ "sha512": "GtBPVpgjHIO8R+0xXyh9BHTYq4+XKpwfuy9Uo2Iza4mYzfQI06CsJh5p+qkjIxQzroIXN5XNGNnVS9dURR0zBA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cors/1.0.0",
+ "path": "Microsoft.AspNetCore.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cors.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Cors.xml",
@@ -4908,12 +5181,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
- "sha512": "0btvxwOqYNpKTUQrD7LA3p6Wi0vrhfWGBVqIKPS1KtEdkCv3QoVgFO4eJYuClGDS9NXhqk7TWh46/8x8wtZHaw==",
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
+ "sha512": "Oy0pgxQkusvQwIrwbHvGVZhwk59qRVKxcer6HsWw0jCEq2LoQ7mj7x7DovE5ub8UvffLYWx77NMF5uwPtkl8KA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.Internal/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.Internal.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.Internal.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.Internal.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
@@ -4921,12 +5194,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
]
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
- "sha512": "gt4URT+8ljPk0ePspLqOGPJBm+s6iMvsZqweplhf7wiZSjFiG1uYBNpQ/0dFY7wSx3NMRjekyXzCjvkGAV570g==",
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
+ "sha512": "wu8pk94CExaLvwwDSnXkTtsdL8mRxbLH8uCKbbPqbtIstSM6bOw/454OvOYKf61BB+It//ItJJYdZTy2j8Kelw==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.xml",
@@ -4934,12 +5207,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
]
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
- "sha512": "h5ycDgkqmRdManmYMQVJgzNI7YtVp2X2/os1cKmdfrpfq+m9L8bMKhbd7PCksoLci+aYTOSn45khPl+hpPb9ug==",
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
+ "sha512": "WW6qKPh9A5lNh/bFlXIMttlbLmm2K0O3kyZuFIlL4ShOMyhrJeCHoWPWQ+S5eUBdcuOnd9sPwhlmI5Nvb3NjMA==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
@@ -4947,36 +5220,38 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
- "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
+ "sha512": "OTLXdoqnhxGzjBewpKiil8C8RzaLMCiWjGDIkr/5kdTNhD0LGT1Dobqprqbg9nKpS99ykJisOguFDTtxpoeSFg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
- "sha512": "0M7ZRAxTmGHOQV3B5Lm30VBg33uxxkPIKAxMc/C9yFBMPWPfk6V1uvb2ZL5eEPlo9/MZooITyMcGBQUHiakFjg==",
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
+ "sha512": "yNiCwtCi1mYfTjLyHWQt4A3QRd84ok8XxuTP4wSnr6aT3bIzI7upstGe7diaEDirmku10qnISC/8CsMTG4xd4w==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.xml",
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll",
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml"
+ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml",
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll",
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
- "sha512": "8r6qOl1jYyC523ZKM1QNl+6ijIoYWELWm0tpEWqtTIOg9DytHJWshB7usgqiuRmfHXM0EUziR6ouFY7iP7Tuzw==",
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
+ "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
@@ -4984,12 +5259,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
- "sha512": "sHZyhQEoW15T9E36rfdm5Ux6a6RZB0KNM79ccf2IplWASqmlRGhX4ydU3dzQRLhkHpLx16fnWOL0KScsO6BevQ==",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
+ "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
@@ -4997,23 +5272,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
- "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==",
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
+ "sha512": "+zN+RCEAJwzeFfsGIRkNn7NQ0/hrLEKHeKQNegqMRTr42JhuJZfPE+Negz7W/WkgFB3ZQQd9QTth9I3BDlsHzQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Html.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Html.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Html.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http/1.0.0": {
- "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==",
+ "Microsoft.AspNetCore.Http/1.1.0": {
+ "sha512": "N5ejgXmkUH/CQA+lz18HQb9cDZdA365Tm128yYyP34N46uiR9NswEDravug2DXrRiTo+2hOwPT1Tvby3Cdf6lQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http/1.0.0",
+ "path": "Microsoft.AspNetCore.Http/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.dll",
"lib/net451/Microsoft.AspNetCore.Http.xml",
@@ -5021,12 +5296,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
]
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
- "sha512": "OJHlqdJOWKKBfsiVdX4Z4KCNuqvBIu6+1MVKuejRDyHnGyMkNHNoP/dtVzhPqvJXaJg9N4HlD0XNc6GDCFVffg==",
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
+ "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
@@ -5034,12 +5309,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
- "sha512": "GlvCPRpnw2jjHLdbGf/C28NQZLMeX1mugv5BS1a3FCQOJYyuwQZil4JwblR0frLyVrUVoJQ7UXRNZIzEVlO5XA==",
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
+ "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Extensions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Extensions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Extensions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
@@ -5047,12 +5322,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
]
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
- "sha512": "6x7zgfbTo1gL9xMEb7EMO2ES/48bqwnWyfH09z+ubWhnzxdhHls8rtqstPylu5FPD9nid6Vo2pgDm5vufRAy5Q==",
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
+ "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Features/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Features.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Features.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Features.dll",
"lib/net451/Microsoft.AspNetCore.Http.Features.xml",
@@ -5060,12 +5335,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
]
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
- "sha512": "gHpdaaAzhaTWJZuJVo3ler2zzdQWrm8wnsoSjcNtoZZdTOkwImndRwK8o4GYoM18dfmfNheM7i4EENI7XHM/lA==",
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
+ "sha512": "nvNbiYTQZhOWIT9zjhbzIMJTRwcJXGx8DqzMRKcrlGeRNG9ysa3M/hEBrxAp8NKIJeVtnp/n46MhLgmx0CLJWw==",
"type": "package",
- "path": "Microsoft.AspNetCore.HttpOverrides/1.0.0",
+ "path": "Microsoft.AspNetCore.HttpOverrides/1.1.0",
"files": [
- "Microsoft.AspNetCore.HttpOverrides.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.HttpOverrides.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.HttpOverrides.nuspec",
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll",
"lib/net451/Microsoft.AspNetCore.HttpOverrides.xml",
@@ -5073,23 +5348,25 @@
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.xml"
]
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
- "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==",
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
+ "sha512": "/mADp5Q1I3oeptoCF8mmAFDMGvlDCLSBatsKCXxk5vQYZUyzOLxoiHgW5QowgIdwnd3AHPmFDib5vm8U2B6q7g==",
"type": "package",
- "path": "Microsoft.AspNetCore.JsonPatch/1.0.0",
+ "path": "Microsoft.AspNetCore.JsonPatch/1.1.0",
"files": [
- "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.JsonPatch.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.JsonPatch.nuspec",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml"
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.xml"
]
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
- "sha512": "DF/maMd9f6ZPoTlU8n6/AGm3fpZNPiiip34bPrBQuloX2a5O0KwyV72qKhJhJNqmVVnDnTu8XYT16ysoFXRxQA==",
+ "Microsoft.AspNetCore.Localization/1.1.0": {
+ "sha512": "Px52xLst9/G4dyGt3fSTIZU3aZoz0IOVoInW/M1WRCOM5DzCkLzPYXOHMpQkc8ZVx7YZmHnB8p9IrvNNyjPO6A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Localization/1.0.0",
+ "path": "Microsoft.AspNetCore.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Localization.xml",
@@ -5097,12 +5374,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
- "sha512": "Perrv2s4hzMbYR/kanzUqcfzxXLo6CThoilhMg7UQXeXEvOtpbDKx0HGimN/pt6Dy2wt3WOQAjAiM1Z8KoRgaA==",
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
+ "sha512": "TDcIjBQRfYAkbcvlU+lMHC0RpuTTSzULEdA0+HvoGgHz6y0Q4wo8CEAWpaRjvt3y3mneuq56d6CReMleFDDd5Q==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.xml",
@@ -5110,12 +5387,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
- "sha512": "Xa9XOA/NEIGSUSyAtc0rQrTRJKcxN8rzvBy0QJn2tRAXVeXc0Lbx4/1ia9kxyn3ygbjhF6bO90ZnC3Z3a2cq5g==",
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
+ "sha512": "r0OA3N1Onua8AcTtFYpK03K3WdwJBL3iFW4XzfMA49ZmAKGf1ARAlrt6Q8WCdBI7nFDJCc1/bdMJ0ozWaq9rhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Abstractions.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
@@ -5123,12 +5400,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
- "sha512": "ntjDDV+g6eveL67fsvGIY7BqZmaR2XYlZpsrXxzjSWKSYBzDfWaUJna5dsPty0hOwz7DCMNbWYrpD+XEr+H0jA==",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
+ "sha512": "cS2ZVqnh9Db3JU5zgw0SRKSYJ/0aYfLDeYRpgJGwjwMsMNa9pw4JK1H3NLkhs7zRAtoet6asXMEZwqFtO/STbw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ApiExplorer.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ApiExplorer.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
@@ -5136,12 +5413,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
- "sha512": "TfUFH0HYbL3DCGkWE24gUDnHoa3pCr4b6xbUiQTnqIbIXdL79qW8mTtfD+RHmAN5bsf1J1fndJJ84/jKri+kiw==",
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
+ "sha512": "6Gxoe6MJPbc9yVx7IEkDlzfNRzQ+JSvlVmFvugoNbpWAefU2F8d76aj7oiGewucXVI8c7oZ1Q0+rx7059j7/fA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Core/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Core/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Core.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Core.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Core.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
@@ -5149,12 +5426,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
- "sha512": "s3Pabc4x5K1xtCpNv/oVAuFyj2Lq+z+qYkmrRqbnqVt+8V39FoW3znPjbVCNu5CjrYSQL2fm3irJ3pM7WLsI/g==",
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
+ "sha512": "0E+RHtEsYwzkbXvLVC81Vu8Mtp24BC9RMuN8RGjeWzwRHDeZaY9erGtoei/2GiFj+3DpqvCzFsRhKp/yVCzrOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Cors/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Cors.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.xml",
@@ -5162,12 +5439,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.xml"
]
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
- "sha512": "y3QkHvOI+vopfhncU9NpUH2MvtZ2Z0EfnApb92jqbmfWL1wd5Np3SHrFSXgI4zVLlM38dMa/QU2SYM3e4T7fFQ==",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
+ "sha512": "kV7IfXeoehKpX0zPrjZ/B1RKnHSKQfmOnXKxupGXuNY64Ly2JgJh+XAxPLQtYy2jUIwRG3PWNhVkWZIazq82wg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
@@ -5175,12 +5452,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
- "sha512": "wM12hSUlF0Eqed44psOYT4fY/RRjMx049A4bBUfqiGr1UFU54zTR8djRLW0dIp1w7Xv5WQ/bgG9jyqiaRbv6jg==",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
+ "sha512": "NHPfvDnqA21/2pa5Uxe7vfO2sZ1sTafSR/L1pGhQxjTUnVQ2k0X3M3wFKPpM9UH9co9Bx3KjV0AcurbfEaCQvA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
@@ -5188,12 +5465,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
- "sha512": "s6Q7l9UtJ/sYxvsbjXuA+5RdKQ70OSLQSLs+UAWrwMtHm9XKTr51gmcG1t1gkWN5f39WSkzJs2brB9fJkFcgvw==",
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
+ "sha512": "XDLAPLW5hdkO8h6Ki4Du/Dw5NUfIsiDDoyaHkzDL5gX5TxOot0bdw/QClIQ65SJqpjuvIZxZXrJV/MFDKwjZ2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Localization/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Localization.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.xml",
@@ -5201,12 +5478,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
- "sha512": "Rc1dkP5LZcuxicrmUTFMfrRF8+id9iVSOA3/DjhO036b7g7BBvknLHKtbbsQ59COB9D8fr9MwKF2Eb99TSCJvg==",
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
+ "sha512": "GKfZhs4I14auXrlOcUHyHVx1zOLt3MeVw2KcABFD8Y8jyVOELj/mnIucREBG73Us4HcT127qenBFkdkz6F/SOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.xml",
@@ -5214,12 +5491,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
- "sha512": "7A9D7ufew8iYmhK/3w05ZdTGGOi9oNzAqy0BJNNF2rm2n9uImquzPmmoCWXFnar7QawVzhXE+ZMSXRUH9n6Glg==",
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
+ "sha512": "9Qi+KEVkmGfXXjfsciKRVJU/EOVm2AYMZuaDiFCJslEll/OTzXnTlKerj4jFbxB3PB1VRqwPL/HIawRGUouruA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.Host.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.Host.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.Host.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.xml",
@@ -5227,12 +5504,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.xml"
]
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
- "sha512": "QadZAsqoIc2D5zceTdLtNnyJALkdhoTIiqvlDlO0SgyPBisyUe4gDEiygwSnLzm8NZ+kKSFhNuX+t+b1O2uIVw==",
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
+ "sha512": "qQz5KEv097INfR7T9Q9kiEi2MY3jdGthU9XW5N6UFrHgFGjMZwra/oCyu/9DsTueW+4zk0cCo5SCneXwHR9uRA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.TagHelpers.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.TagHelpers.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.TagHelpers.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
@@ -5240,12 +5517,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
- "sha512": "1zGeF76JEqvocxdM+H5n/vJunUUVNzKK4LmgnaFdrrCDTrI6MVdok+8TBBUbeI+uNk3ssrLnP3EcHIdvxl66gw==",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
+ "sha512": "Odd9+gRi4DCH3RalGZEdS0xLRcUh8LV9UTCnOVjGwotI1i6Fk2VSxtkAxrVRMd44BL0WfRqJFiTkCixxA2zFig==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
@@ -5253,12 +5530,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
]
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
- "sha512": "+vhlFn8n45hj1M91HYVm2ryLMZ+ZYR/OUdBVE8aUzkvkTVF+3UnNxSY3hAEugcgcbf9/XQTE+DDxEgN4LdYEjg==",
+ "Microsoft.AspNetCore.Razor/1.1.0": {
+ "sha512": "hChh+W6UG0C8aink3KWuX7flFuAiTPrCBfh68fbRJ1sLPk0ELmj6c3zm+VgNXaHEh2OpT/O0eN5XpS1rQ/FcbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Razor.xml",
@@ -5266,12 +5543,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.xml"
]
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
- "sha512": "hsq6xJeqDDb78akZuy79QE3kaCxcigD3vccbIaNrrz7JSXOzayfteF06ToK+J1SXSDRtrBj3XZZfrjiqIY/vCw==",
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
+ "sha512": "hQW8+DRFHCHmTzviW54umnBfX1vc9bv/390r62k85LQsUd5Lo59QQ+IyD5fe6o9g/h946IF8Yl25wd6dEk7YqA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor.Runtime/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor.Runtime/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.Runtime.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.Runtime.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.Runtime.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.xml",
@@ -5279,12 +5556,25 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.xml"
]
},
- "Microsoft.AspNetCore.Routing/1.0.1": {
- "sha512": "uddFeoL8aRYSlyl+zcBnHlrtRIkp1AEfPNBIiBjNJ4b9PMApTWIpvy8OdyXUksV+bM6TciA23zFfNvzZWIlG/Q==",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "sha512": "Mdj0FP6fP44sYaSRmhUBEpOXnN3kykpd0/8e48iEoSybId5x5XreIeDEEhTYF+r/QA7H8Y33fjVR1cP996OgDA==",
+ "type": "package",
+ "path": "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0",
+ "files": [
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.1.1.0.nupkg.sha512",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.nuspec",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml"
+ ]
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "sha512": "wrD6DOWc4/euIujz7trLrF3zGVMxOGKRPzYl4e2NFOE/uXz95EnNBHkNuN0Xcgx3xVcb08TMxkoFNT3A+WC0XA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing/1.0.1",
+ "path": "Microsoft.AspNetCore.Routing/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.dll",
"lib/net451/Microsoft.AspNetCore.Routing.xml",
@@ -5292,12 +5582,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
]
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.1": {
- "sha512": "Vjjt7TVG0S7ozWyD7vbdy9oQ2LIWebE18hUBM1WMmLPz83w3b8+MKUjz8nP5AnnHXxQskQ5WhYMkICETgXnb+g==",
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
+ "sha512": "/kaFZW4AjHPOIMnqXHGl/KdHxUGOVm9z/U0t3JtKmK5OFnsfuLsUIH2QN2PtXNeOm1eh5Ux2XEyg6YRBgXfPgA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.1",
+ "path": "Microsoft.AspNetCore.Routing.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.Abstractions.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
@@ -5305,12 +5595,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
- "sha512": "xmn6EivvL4Ymo7LP+Jc49WLcIiYsUiujZo0loEbAg473nY2dIHxcxncpFAKzPf/MzqN0qBtaXEP0igYJ813H3Q==",
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
+ "sha512": "Z/K/RsUUh6Cfc8W+uP0IeXu8NJP/7li+E3ep+u4t9McrDUdJMrfgfBSPC5SrrUkTZjrt9udQS6JLrB6v3b8pag==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.IISIntegration/1.0.0",
+ "path": "Microsoft.AspNetCore.Server.IISIntegration/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.IISIntegration.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.IISIntegration.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.IISIntegration.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll",
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.xml",
@@ -5318,12 +5608,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.xml"
]
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
- "sha512": "GrTVDsRR6j2WrrTuNsZkG1R8aV1UbsA8TKUD+MKVSpXIoEpQNryCT181Zu94CARowQwFQdW4Q1DwfO4FdAhXiQ==",
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
+ "sha512": "PbVYQUVxOwtrl9YCnw8ykXSufELVeEuASYahVh1F7B4LYVtcqwyV5+FhXlJkboGM4ozKMrdhB5w/tlLLcmHxNA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.Kestrel/1.0.1",
+ "path": "Microsoft.AspNetCore.Server.Kestrel/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.Kestrel.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.Kestrel.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.Kestrel.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll",
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.xml",
@@ -5331,12 +5621,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.xml"
]
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
- "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==",
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
+ "sha512": "9w3aHPRUAx+1xOTcsZF6AJCS42viNqWeTcgIE1dmlK/G3NCFkes+MVxwvKt9U9pFIomxqRnD+MGRoBeruEKPbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.WebUtilities/1.0.0",
+ "path": "Microsoft.AspNetCore.WebUtilities/1.1.0",
"files": [
- "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.WebUtilities.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.WebUtilities.nuspec",
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
"lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
@@ -5345,7 +5635,7 @@
]
},
"Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
+ "sha512": "jICz4qN7C8Hq8d5UF0LzqeOTqJMuy21cRDCW8N8K3yiojIhQQ+hAwlcUp7yh4gJOcqh7iEWg/5jlZmXbefO00Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
"files": [
@@ -5361,7 +5651,7 @@
]
},
"Microsoft.CodeAnalysis.Common/1.3.0": {
- "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==",
+ "sha512": "hVgAQZDvOO8LpuhAO557wlqwivTSTstAIIknHTK8y62utH9PgdwEey0TDzJRanReEMTFR3bzdvoFXOe2/X6BGw==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Common/1.3.0",
"files": [
@@ -5377,7 +5667,7 @@
]
},
"Microsoft.CodeAnalysis.CSharp/1.3.0": {
- "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==",
+ "sha512": "8fqBJ4I+IH71mTs+F2w9U/UpJz2pbuO+9XicOxN1pUWU6UZlPgRMwS8e+rcnJp5sgz7tXrB2JoCoP3JuKTHBvg==",
"type": "package",
"path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
"files": [
@@ -5393,7 +5683,7 @@
]
},
"Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
- "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==",
+ "sha512": "yfjw7wLtMSV6HjE2/j3vQp+ZtEbR4cMof7cbcWXPah/8XbMVueIS9GOp9HjxWOLTTQWz6uHxeetk36JCeKOR/Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0",
"files": [
@@ -5408,12 +5698,12 @@
"lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml"
]
},
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "Microsoft.CSharp/4.3.0": {
+ "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"type": "package",
- "path": "Microsoft.CSharp/4.0.1",
+ "path": "Microsoft.CSharp/4.3.0",
"files": [
- "Microsoft.CSharp.4.0.1.nupkg.sha512",
+ "Microsoft.CSharp.4.3.0.nupkg.sha512",
"Microsoft.CSharp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5465,34 +5755,50 @@
"ref/xamarinwatchos10/_._"
]
},
- "Microsoft.DotNet.InternalAbstractions/1.0.0": {
- "sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==",
+ "Microsoft.DiaSymReader.Native/1.4.0": {
+ "sha512": "6HpEBMxIi9KJHKnF2ISRy3HsxhRYL1/CdnXGBqSWOUE8uaY5gthzStdQdbPVFxsKCNwsYcfRc11RXjLVvGF5bQ==",
+ "type": "package",
+ "path": "Microsoft.DiaSymReader.Native/1.4.0",
+ "files": [
+ "Microsoft.DiaSymReader.Native.1.4.0.nupkg.sha512",
+ "Microsoft.DiaSymReader.Native.nuspec",
+ "build/Microsoft.DiaSymReader.Native.props",
+ "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll",
+ "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll",
+ "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
+ ]
+ },
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "sha512": "Bl6KYfbFSIW3QIRHAp931iR5h01qHjKghdpAtncwbzNUs0+IUZ+XfwkIU0sQsR33ufGvi3u4dZMIYYFysjpHAA==",
"type": "package",
- "path": "Microsoft.DotNet.InternalAbstractions/1.0.0",
+ "path": "Microsoft.DotNet.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.DotNet.InternalAbstractions.1.0.0.nupkg.sha512",
- "Microsoft.DotNet.InternalAbstractions.nuspec",
- "lib/net451/Microsoft.DotNet.InternalAbstractions.dll",
- "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
+ "Microsoft.DotNet.PlatformAbstractions.1.1.0.nupkg.sha512",
+ "Microsoft.DotNet.PlatformAbstractions.nuspec",
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll",
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll"
]
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
- "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==",
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
+ "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
]
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
- "sha512": "6+7zTufCnZ+tfrUo7RbIRR3LB0BxwOwxfXuo0IbLyIvgoToGpWuz5wYEDfCYNOvpig9tY8FA0I1uRHYmITMXMQ==",
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
+ "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Memory/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Memory.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Memory.nuspec",
"lib/net451/Microsoft.Extensions.Caching.Memory.dll",
"lib/net451/Microsoft.Extensions.Caching.Memory.xml",
@@ -5500,45 +5806,45 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml"
]
},
- "Microsoft.Extensions.Configuration/1.0.0": {
- "sha512": "hR4yYebruRp6qyFnV3RW4qrnEb0J1LnMmQbj50AUA423V8dMs4E3YAohsyRyGBFnpbJ+KKzieSG/n2A6T0klZQ==",
+ "Microsoft.Extensions.Configuration/1.1.0": {
+ "sha512": "iqp8UepCsS902j0kPO/d7hrd9PSyK7l84UFlpqdV8QY+/pMUY5k8wlAIuN6mWdW97HI8a8BJyvjhJbJps2GwZw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration/1.0.0",
+ "path": "Microsoft.Extensions.Configuration/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.xml"
]
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
- "sha512": "nJ+Et/rnDMDmGhxvFAKdN3va7y+YDPICv1nUEP8I4IKgOkWwr/dCZHMqxVhJFrkbW9ux8Kd7erC4mvxfZh0WnA==",
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
+ "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
]
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
- "sha512": "kK8QuBcPQtmKJCkC9enc1uMRFa++mPTuVNm2K5jDVXcAYKRBcFSbdEBvIe1JIgA6dEsAQeqjfHfKSaUJ8f5NFQ==",
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
+ "sha512": "1dTFEL493MfC5O7MNaElQBhX4txb9ivSmTMwB3qDqEJHXnnUdgThTChn32FjhLIA6Fn7YXjqkZzAB/LdZEKupw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Binder/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Binder/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Binder.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Binder.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Binder.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.xml"
]
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
- "sha512": "A0yqS98VtPNlFkFI7YBlwkAekUHE/9mMeNc+K4RmgTjCrskuk6pX3LGhDU7aD5CPYc9Px7M2To/2u4xDSnRikg==",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
+ "sha512": "7AWmPQoX4Kx0Kf4VAig5yKbCziHjO6F2povXeToOaWuZnKahi5qXCG7wrWtATFrheOQLfkrqxxLyarTP3J1mnA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
@@ -5546,12 +5852,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.xml"
]
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
- "sha512": "MO7XtmLiqnpgVTX34uzFPvIS7jPmBUGLN0MP5MsYu6CqYTIs90ULjtrV5TegH5mTqKTXWjZRGXL26R6apTyc4w==",
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
+ "sha512": "jZRdMHops4npC8qKFEmqw6QODfA5h50sUYBIyB31DICzYSp+IQyvf5yb1zwW2x1EFuUEMv+aWZi1WDDc7JPdqA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.FileExtensions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.FileExtensions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.FileExtensions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.FileExtensions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.FileExtensions.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll",
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml",
@@ -5559,12 +5865,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.xml"
]
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
- "sha512": "KRyEOe5/Xi3qyDMdEVh++e2pQRsI6C3wzINVExOcu9lOsFmXK/k4qOf244fyo59rnn6s5xKnIW3WbhxWS1hu2w==",
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
+ "sha512": "QmHQbrOoVxXblM2x9NzGPbX3XpQGTCXiO6jZghx4KqUxPfJMS0VgBlgOUnLAz7sJyx3GvhUG6SEX6Xz70dpwDw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Json/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Json/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Json.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Json.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Json.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.Json.dll",
"lib/net451/Microsoft.Extensions.Configuration.Json.xml",
@@ -5572,67 +5878,68 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.xml"
]
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
- "sha512": "zdtkiZNV6LB8xtpmfyUjP/9N9ZCL/ydQ+0bfjun38fbrk+MDEm9M2yeLzRdq+OIt5xExw/KU04wFaVwJ1bhQPg==",
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
+ "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
]
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
- "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==",
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
+ "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
]
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==",
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
+ "sha512": "TG7dJ8GY1Myz9lZ8DJL4i6D05ncJQBi5CjBMXMdJ4edKxaW+vP2DndDd1jJabdMdmVRdGrvybzqkB+A6Df7eDw==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyModel/1.0.0",
+ "path": "Microsoft.Extensions.DependencyModel/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyModel.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyModel.nuspec",
"lib/net451/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
]
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
- "sha512": "4jsqTxG3py/hYSsOtZMkNJ2/CQqPdpwyK7bDUkrwHgqowCFSmx/C+R4IzQ+2AK2Up1fVcu+ldC0gktwidL828A==",
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
+ "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
]
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
- "sha512": "4nbDQfagNr1eILXSFZbTNuAKuZ6SsOyK6ySTMryo67ECi8+EcZBQ12E0aXcxX/aT3v+3pbWSt71NXlEm8tKIxw==",
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
+ "sha512": "S6vQ4HcjYKAmPqyuGNDQ1ILBaTx7SnDvfg/Dby+s55dXNI2WA/blkeIufbDm0MukALsukWya9mdbe7upWj8U5g==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Composite/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Composite/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Composite.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Composite.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Composite.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.xml"
]
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
- "sha512": "Ej5hGWtK3xM9YU+B2O8EdlMcJf5utbDQs9ecnfvwhENQeeNU7iI2jjnRB2d7V6o9SQZmNHPzdPvaNb3PlSMz+Q==",
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
+ "sha512": "ckyGwMGd4v1nE70wZ7ytax+Ef9WHQ6IcE4apLYG4um6Dfcw/Y6QJY0Fcv3Ck9WK/Uj0YMxHnNCZH6MBp6boeEw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Physical/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Physical/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Physical.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Physical.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Physical.nuspec",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.xml",
@@ -5640,36 +5947,36 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml"
]
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
- "sha512": "scXp1Y+hmhQKLe57Z7cSjsAEFtE4zSHHydkg1SpvG56nWwWQVpVcRAbRZsv1qIBR5/vNB4LA9xiOKnvKO/Halg==",
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
+ "sha512": "/NKs5LrUCUARfFbGik/ML5L2YnN33XTf+TUyghjhCzl9HlvLA4l6s3bW+xsbCU0GEmI/MottEEhiDa1dLJJh4A==",
"type": "package",
- "path": "Microsoft.Extensions.FileSystemGlobbing/1.0.0",
+ "path": "Microsoft.Extensions.FileSystemGlobbing/1.1.0",
"files": [
- "Microsoft.Extensions.FileSystemGlobbing.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileSystemGlobbing.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileSystemGlobbing.nuspec",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.xml",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml"
]
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
- "sha512": "nxGoN8o+4clQk103krYRqS5FVVCZc3Tlc09AYj4W8gZ9Q5Jxa2BLW7ss+ogKU/hvNSg2NkJyQTfi9SegGU6ssQ==",
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
+ "sha512": "KAuadrKH0hLZGXfLO/+L6bv4vIeOYpQTjglR5Tu4hm9TJ8sVcPf11qIoU+BXSwalXiaJuazSI9fxbyoIVBsX4A==",
"type": "package",
- "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0",
+ "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0",
"files": [
- "Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Globalization.CultureInfoCache.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Globalization.CultureInfoCache.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml"
]
},
- "Microsoft.Extensions.Localization/1.0.0": {
- "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==",
+ "Microsoft.Extensions.Localization/1.1.0": {
+ "sha512": "1DWqIC1k383XaQ3h+WxyKYmerLHDYH7TY7mDcglylG3Wq+zlX3/UUhUEKO0Ft8RKCLxLh/LhIa9NBvM3cYzLIg==",
"type": "package",
- "path": "Microsoft.Extensions.Localization/1.0.0",
+ "path": "Microsoft.Extensions.Localization/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.nuspec",
"lib/net451/Microsoft.Extensions.Localization.dll",
"lib/net451/Microsoft.Extensions.Localization.xml",
@@ -5677,45 +5984,45 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
]
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
- "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==",
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
+ "sha512": "8KkP9veQupIfAEQFLLQFTo75s2fVKOM9SWeHhdSSUD35uD8DX1zOXAUsuaXwQY8cyt6mSUR5zuUEkgbZXnUKCA==",
"type": "package",
- "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Localization.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging/1.0.0": {
- "sha512": "0mDuASVrd/nMeBYIJSK+9lT3TSmWxUXP/ipVB1pF1ApMN5fqGCckPTNwmOfT4Z9wPkXGnhbwFTGrxZvbzTWxOg==",
+ "Microsoft.Extensions.Logging/1.1.0": {
+ "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
"type": "package",
- "path": "Microsoft.Extensions.Logging/1.0.0",
+ "path": "Microsoft.Extensions.Logging/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
]
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
- "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==",
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
+ "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Abstractions.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
- "sha512": "GN4gFFONP12KbFEG9rNFpXuz6D2Tybcm8+c1wilaQ1eSl9zVX0gVRrKw/YRwxdwbM3eK7nWfRRqJaQPzOjtLnA==",
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
+ "sha512": "MkFjLvtMdYN1g3NesmkeuQ56f/LuQS46PvjhbF1rUoH9L1ZM3/uteuTknVDUryeWlh18oh6ew7Xo9H50KWPAog==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Console/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Console/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Console.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Console.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Console.nuspec",
"lib/net451/Microsoft.Extensions.Logging.Console.dll",
"lib/net451/Microsoft.Extensions.Logging.Console.xml",
@@ -5723,12 +6030,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.xml"
]
},
- "Microsoft.Extensions.Logging.Debug/1.0.0": {
- "sha512": "V8fP8pGJxieGa1DAYOF1RX+cCGGqdOGNoAQUzxmy27+qNzbHB/cUXc7mCZT72jPZMB4U12zSVWlIt26GMsUIOg==",
+ "Microsoft.Extensions.Logging.Debug/1.1.0": {
+ "sha512": "6Kg1PyEbQjd37ZeWkrseJNvb99iUCdXRAjUqFd2zxW9ZCwjn9h+aSC2bMbyERvC+n6lImp053jqRBsotIrMiXw==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Debug/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Debug/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Debug.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Debug.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Debug.nuspec",
"lib/net451/Microsoft.Extensions.Logging.Debug.dll",
"lib/net451/Microsoft.Extensions.Logging.Debug.xml",
@@ -5736,12 +6043,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.xml"
]
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
- "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==",
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
+ "sha512": "8tg7DpFubtj98Lf+N+zpu5VXe9EHCPrqcukpsjC9BSfcnC0Oq8CUZKYUsLScS2pnqEkSNHwuHoWRtJ6xhMO/xg==",
"type": "package",
- "path": "Microsoft.Extensions.ObjectPool/1.0.0",
+ "path": "Microsoft.Extensions.ObjectPool/1.1.0",
"files": [
- "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.ObjectPool.1.1.0.nupkg.sha512",
"Microsoft.Extensions.ObjectPool.nuspec",
"lib/net451/Microsoft.Extensions.ObjectPool.dll",
"lib/net451/Microsoft.Extensions.ObjectPool.xml",
@@ -5749,34 +6056,34 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
]
},
- "Microsoft.Extensions.Options/1.0.0": {
- "sha512": "SdP3yPKF++JTkoa91pBDiE70uQkR/gdXWzOnMPbSj+eOqY1vgY+b8RVl+gh7TrJ2wlCK2QqnQtvCQlPPZRK36w==",
+ "Microsoft.Extensions.Options/1.1.0": {
+ "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
"type": "package",
- "path": "Microsoft.Extensions.Options/1.0.0",
+ "path": "Microsoft.Extensions.Options/1.1.0",
"files": [
- "Microsoft.Extensions.Options.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Options.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Options.dll",
"lib/netstandard1.0/Microsoft.Extensions.Options.xml"
]
},
- "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0": {
- "sha512": "ov+cv1w81/lVrjqorjSpUvTzJhRVFu2GSRyRQYcGfGWPwrCz6473YoiqK/XNbeBmmF9VVyGPHVMubAH+Atsr3g==",
+ "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
+ "sha512": "loehh0znbtZw+mqk2VY7VyJu7t7N2TvEjSpln0Twkli/rF26HcxWQ3rdSvSr66yOCt7Dnur6DcW6HWXfa2u/PA==",
"type": "package",
- "path": "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0",
+ "path": "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0",
"files": [
- "Microsoft.Extensions.Options.ConfigurationExtensions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Options.ConfigurationExtensions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Options.ConfigurationExtensions.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml"
]
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
- "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==",
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
+ "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
"type": "package",
- "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0",
+ "path": "Microsoft.Extensions.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.PlatformAbstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.PlatformAbstractions.nuspec",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
@@ -5784,105 +6091,105 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
]
},
- "Microsoft.Extensions.Primitives/1.0.0": {
- "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==",
+ "Microsoft.Extensions.Primitives/1.1.0": {
+ "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
"type": "package",
- "path": "Microsoft.Extensions.Primitives/1.0.0",
+ "path": "Microsoft.Extensions.Primitives/1.1.0",
"files": [
- "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Primitives.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
]
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
- "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==",
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
+ "sha512": "YnUfcLe/FYL3Mft5HPv7dSSKfZZCZwLG2GQfv3vuxdY4AbWOYLqq/3wIPCNIrgMXvzralWdkESNsb9iw5gKdpg==",
"type": "package",
- "path": "Microsoft.Extensions.WebEncoders/1.0.0",
+ "path": "Microsoft.Extensions.WebEncoders/1.1.0",
"files": [
- "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.WebEncoders.1.1.0.nupkg.sha512",
"Microsoft.Extensions.WebEncoders.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
]
},
- "Microsoft.Net.Http.Headers/1.0.0": {
- "sha512": "1lr92itF1fKR2oEQ6gk1IUsuCgp7UMlf/b1sjlAyuDeUnttj39ra59GQHYpomglJX1UVNpi1/cSBbEsXoNeIhw==",
+ "Microsoft.Net.Http.Headers/1.1.0": {
+ "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
"type": "package",
- "path": "Microsoft.Net.Http.Headers/1.0.0",
+ "path": "Microsoft.Net.Http.Headers/1.1.0",
"files": [
- "Microsoft.Net.Http.Headers.1.0.0.nupkg.sha512",
+ "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
"Microsoft.Net.Http.Headers.nuspec",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
]
},
- "Microsoft.NETCore.App/1.0.1": {
- "sha512": "M3iH7u95LntTkJtI/DqN/96MRlb8Wa0SjnXldxHA4FjlvEqghOhwK087bDZAZaTN9C4YHckvaYH3ka9eYWZZZw==",
+ "Microsoft.NETCore.App/1.1.0": {
+ "sha512": "DFec+OUojDVocn1GxAL9uJg4qwsgkvKiQpv6BKd9ljGezvc9p6GpFv51IIakiujkVW/wBtQ0xlfjVSgS1UG/uw==",
"type": "package",
- "path": "Microsoft.NETCore.App/1.0.1",
+ "path": "Microsoft.NETCore.App/1.1.0",
"files": [
- "Microsoft.NETCore.App.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.App.1.1.0.nupkg.sha512",
"Microsoft.NETCore.App.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netcoreapp1.0/_._"
]
},
- "Microsoft.NETCore.DotNetHost/1.0.1": {
- "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==",
+ "Microsoft.NETCore.DotNetHost/1.1.0": {
+ "sha512": "1xk/a9uXjJWDQqXw8l4067aoNwUfugq4UVQQinlIM2W4posm0+wcW+bi3uKuyufsjG6KBhlCqKuFBqa5DXO6ug==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHost/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHost/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHost.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHost.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
- "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==",
+ "Microsoft.NETCore.DotNetHostPolicy/1.1.0": {
+ "sha512": "xa5FjffmB4QMfWIdwrW1cUKX6UD1VEePyzDcMqV8b/d9onZLJwIamPIRmDpN5lTlvdCnyUOI+5ZqZEjQIqSqxQ==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHostPolicy/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHostPolicy.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHostPolicy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
- "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==",
+ "Microsoft.NETCore.DotNetHostResolver/1.1.0": {
+ "sha512": "xf7RRVJ4M1w1Hg9TTzTH4g+zFqGtu6uXBjpcyy+o5UYrRj44dtJkmlnc1OnoKQFU0pZ8i9C8eNbSeqq/p6n19w==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHostResolver/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHostResolver.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHostResolver.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Jit/1.0.4": {
- "sha512": "IcHTGj+vTFcOu7/flwNg+CWIfTsxqHWgj08MKOtYwS5k0EuLvx6PrYsn7vHCV0SUTk1zbQ1l0EJj1UdxTMyx4w==",
+ "Microsoft.NETCore.Jit/1.1.0": {
+ "sha512": "Zsrh7C1ncfJe1tLGExgHrdal8I0U7qBHeLkpjbxd6M8uPtR8ck+R1Gynyjn01M3VO1Px416WvrJ4rxQFeR3jTQ==",
"type": "package",
- "path": "Microsoft.NETCore.Jit/1.0.4",
+ "path": "Microsoft.NETCore.Jit/1.1.0",
"files": [
- "Microsoft.NETCore.Jit.1.0.4.nupkg.sha512",
+ "Microsoft.NETCore.Jit.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Jit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Platforms/1.0.1": {
- "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==",
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"type": "package",
- "path": "Microsoft.NETCore.Platforms/1.0.1",
+ "path": "Microsoft.NETCore.Platforms/1.1.0",
"files": [
- "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Platforms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5890,24 +6197,24 @@
"runtime.json"
]
},
- "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
- "sha512": "r4/aP7VYcJ+W/rJVFU+jAdjF4KrsHRDYQJ+p8weUP5n65yLzWXlQTVY6OsR560aV5EF7jc65dqsNXIryUCrEkQ==",
+ "Microsoft.NETCore.Runtime.CoreCLR/1.1.0": {
+ "sha512": "dwvlgs9yX8Y1phaXqNJC8qOgEeZfsM8mVB4vprv7OOhttjXoiaiYQAEYa4D4fbiqTjx/gD6/fVPJ/aSmk5byhg==",
"type": "package",
- "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4",
+ "path": "Microsoft.NETCore.Runtime.CoreCLR/1.1.0",
"files": [
- "Microsoft.NETCore.Runtime.CoreCLR.1.0.4.nupkg.sha512",
+ "Microsoft.NETCore.Runtime.CoreCLR.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Targets/1.0.1": {
- "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"type": "package",
- "path": "Microsoft.NETCore.Targets/1.0.1",
+ "path": "Microsoft.NETCore.Targets/1.1.0",
"files": [
- "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Targets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5916,7 +6223,7 @@
]
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
- "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==",
+ "sha512": "jH+MpPZ4afpEBEUxOHuV6kNwIFu21ECEP7UlwcYaM2oORy7mWIm/iJbXSml4Z6ayoIgzc4xHrx8g5tDxzy9Cfw==",
"type": "package",
"path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
"files": [
@@ -5927,12 +6234,12 @@
"runtime.json"
]
},
- "Microsoft.VisualBasic/10.0.1": {
- "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==",
+ "Microsoft.VisualBasic/10.1.0": {
+ "sha512": "jgBfelga8QHZDTtUBtLNgcDPuXzaplCeXLqQcf5qB4jeVdPpX1AtnZnGeHbbi2tmp+P96hgI+KhXbUN567K60Q==",
"type": "package",
- "path": "Microsoft.VisualBasic/10.0.1",
+ "path": "Microsoft.VisualBasic/10.1.0",
"files": [
- "Microsoft.VisualBasic.10.0.1.nupkg.sha512",
+ "Microsoft.VisualBasic.10.1.0.nupkg.sha512",
"Microsoft.VisualBasic.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -5942,6 +6249,8 @@
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
+ "ref/MonoAndroid10/Microsoft.VisualBasic.dll",
+ "ref/MonoTouch10/Microsoft.VisualBasic.dll",
"ref/net45/_._",
"ref/netcore50/Microsoft.VisualBasic.dll",
"ref/netcore50/Microsoft.VisualBasic.xml",
@@ -5967,15 +6276,18 @@
"ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
- "ref/wpa81/_._"
+ "ref/wpa81/_._",
+ "ref/xamarinios10/Microsoft.VisualBasic.dll",
+ "ref/xamarintvos10/Microsoft.VisualBasic.dll",
+ "ref/xamarinwatchos10/Microsoft.VisualBasic.dll"
]
},
- "Microsoft.Win32.Primitives/4.0.1": {
- "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"type": "package",
- "path": "Microsoft.Win32.Primitives/4.0.1",
+ "path": "Microsoft.Win32.Primitives/4.3.0",
"files": [
- "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
+ "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
"Microsoft.Win32.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6006,12 +6318,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "Microsoft.Win32.Registry/4.0.0": {
- "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
+ "Microsoft.Win32.Registry/4.3.0": {
+ "sha512": "Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==",
"type": "package",
- "path": "Microsoft.Win32.Registry/4.0.0",
+ "path": "Microsoft.Win32.Registry/4.3.0",
"files": [
- "Microsoft.Win32.Registry.4.0.0.nupkg.sha512",
+ "Microsoft.Win32.Registry.4.3.0.nupkg.sha512",
"Microsoft.Win32.Registry.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6034,12 +6346,12 @@
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
]
},
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
+ "NETStandard.Library/1.6.1": {
+ "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"type": "package",
- "path": "NETStandard.Library/1.6.0",
+ "path": "NETStandard.Library/1.6.1",
"files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
+ "NETStandard.Library.1.6.1.nupkg.sha512",
"NETStandard.Library.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
@@ -6069,72 +6381,216 @@
"tools/install.ps1"
]
},
- "runtime.native.System/4.0.0": {
- "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "type": "package",
+ "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
+ "type": "package",
+ "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "type": "package",
+ "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
"type": "package",
- "path": "runtime.native.System/4.0.0",
+ "path": "runtime.native.System/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.4.0.0.nupkg.sha512",
+ "runtime.native.System.4.3.0.nupkg.sha512",
"runtime.native.System.nuspec"
]
},
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
+ "path": "runtime.native.System.IO.Compression/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512",
+ "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
"runtime.native.System.IO.Compression.nuspec"
]
},
- "runtime.native.System.Net.Http/4.0.1": {
- "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
+ "runtime.native.System.Net.Http/4.3.0": {
+ "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"type": "package",
- "path": "runtime.native.System.Net.Http/4.0.1",
+ "path": "runtime.native.System.Net.Http/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Http.nuspec"
]
},
- "runtime.native.System.Net.Security/4.0.1": {
- "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==",
+ "runtime.native.System.Net.Security/4.3.0": {
+ "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
"type": "package",
- "path": "runtime.native.System.Net.Security/4.0.1",
+ "path": "runtime.native.System.Net.Security/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Security.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Security.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Security.nuspec"
]
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
"type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
+ "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.nuspec"
+ "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.Apple.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
+ "type": "package",
+ "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
+ ]
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "type": "package",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "type": "package",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
+ ]
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "type": "package",
+ "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "type": "package",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
+ "System.AppContext/4.3.0": {
+ "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
"type": "package",
- "path": "System.AppContext/4.1.0",
+ "path": "System.AppContext/4.3.0",
"files": [
- "System.AppContext.4.1.0.nupkg.sha512",
+ "System.AppContext.4.3.0.nupkg.sha512",
"System.AppContext.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6182,12 +6638,12 @@
"runtimes/aot/lib/netcore50/System.AppContext.dll"
]
},
- "System.Buffers/4.0.0": {
- "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==",
+ "System.Buffers/4.3.0": {
+ "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
"type": "package",
- "path": "System.Buffers/4.0.0",
+ "path": "System.Buffers/4.3.0",
"files": [
- "System.Buffers.4.0.0.nupkg.sha512",
+ "System.Buffers.4.3.0.nupkg.sha512",
"System.Buffers.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6195,12 +6651,12 @@
"lib/netstandard1.1/System.Buffers.dll"
]
},
- "System.Collections/4.0.11": {
- "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"type": "package",
- "path": "System.Collections/4.0.11",
+ "path": "System.Collections/4.3.0",
"files": [
- "System.Collections.4.0.11.nupkg.sha512",
+ "System.Collections.4.3.0.nupkg.sha512",
"System.Collections.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6261,12 +6717,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Concurrent/4.0.12": {
- "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"type": "package",
- "path": "System.Collections.Concurrent/4.0.12",
+ "path": "System.Collections.Concurrent/4.3.0",
"files": [
- "System.Collections.Concurrent.4.0.12.nupkg.sha512",
+ "System.Collections.Concurrent.4.3.0.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6327,12 +6783,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Immutable/1.2.0": {
- "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
+ "System.Collections.Immutable/1.3.0": {
+ "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
"type": "package",
- "path": "System.Collections.Immutable/1.2.0",
+ "path": "System.Collections.Immutable/1.3.0",
"files": [
- "System.Collections.Immutable.1.2.0.nupkg.sha512",
+ "System.Collections.Immutable.1.3.0.nupkg.sha512",
"System.Collections.Immutable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6342,12 +6798,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
]
},
- "System.Collections.NonGeneric/4.0.1": {
- "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"type": "package",
- "path": "System.Collections.NonGeneric/4.0.1",
+ "path": "System.Collections.NonGeneric/4.3.0",
"files": [
- "System.Collections.NonGeneric.4.0.1.nupkg.sha512",
+ "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
"System.Collections.NonGeneric.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6379,12 +6835,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Specialized/4.0.1": {
- "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
+ "System.Collections.Specialized/4.3.0": {
+ "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"type": "package",
- "path": "System.Collections.Specialized/4.0.1",
+ "path": "System.Collections.Specialized/4.3.0",
"files": [
- "System.Collections.Specialized.4.0.1.nupkg.sha512",
+ "System.Collections.Specialized.4.3.0.nupkg.sha512",
"System.Collections.Specialized.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6416,12 +6872,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel/4.0.1": {
- "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
+ "System.ComponentModel/4.3.0": {
+ "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"type": "package",
- "path": "System.ComponentModel/4.0.1",
+ "path": "System.ComponentModel/4.3.0",
"files": [
- "System.ComponentModel.4.0.1.nupkg.sha512",
+ "System.ComponentModel.4.3.0.nupkg.sha512",
"System.ComponentModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6473,12 +6929,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Annotations/4.1.0": {
- "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==",
+ "System.ComponentModel.Annotations/4.3.0": {
+ "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
"type": "package",
- "path": "System.ComponentModel.Annotations/4.1.0",
+ "path": "System.ComponentModel.Annotations/4.3.0",
"files": [
- "System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
"System.ComponentModel.Annotations.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6550,12 +7006,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Primitives/4.1.0": {
- "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
+ "System.ComponentModel.Primitives/4.3.0": {
+ "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"type": "package",
- "path": "System.ComponentModel.Primitives/4.1.0",
+ "path": "System.ComponentModel.Primitives/4.3.0",
"files": [
- "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Primitives.4.3.0.nupkg.sha512",
"System.ComponentModel.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6587,12 +7043,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.TypeConverter/4.1.0": {
- "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"type": "package",
- "path": "System.ComponentModel.TypeConverter/4.1.0",
+ "path": "System.ComponentModel.TypeConverter/4.3.0",
"files": [
- "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
+ "System.ComponentModel.TypeConverter.4.3.0.nupkg.sha512",
"System.ComponentModel.TypeConverter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6638,12 +7094,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"type": "package",
- "path": "System.Console/4.0.0",
+ "path": "System.Console/4.3.0",
"files": [
- "System.Console.4.0.0.nupkg.sha512",
+ "System.Console.4.3.0.nupkg.sha512",
"System.Console.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6674,12 +7130,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Contracts/4.0.1": {
- "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
+ "System.Diagnostics.Contracts/4.3.0": {
+ "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
"type": "package",
- "path": "System.Diagnostics.Contracts/4.0.1",
+ "path": "System.Diagnostics.Contracts/4.3.0",
"files": [
- "System.Diagnostics.Contracts.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
"System.Diagnostics.Contracts.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6732,12 +7188,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
]
},
- "System.Diagnostics.Debug/4.0.11": {
- "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
- "path": "System.Diagnostics.Debug/4.0.11",
+ "path": "System.Diagnostics.Debug/4.3.0",
"files": [
- "System.Diagnostics.Debug.4.0.11.nupkg.sha512",
+ "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6798,12 +7254,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
- "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
"type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.0.0",
+ "path": "System.Diagnostics.DiagnosticSource/4.3.0",
"files": [
- "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512",
+ "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
"System.Diagnostics.DiagnosticSource.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6818,7 +7274,7 @@
]
},
"System.Diagnostics.FileVersionInfo/4.0.0": {
- "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==",
+ "sha512": "VtXkqPMWpaXDFEvbuhroVemeTaaU/j6C3yu6rd+JFLg5AvHAZJb8hUpxwJCM7OFrUpeKmv3A7ZTME8hFYWL6pA==",
"type": "package",
"path": "System.Diagnostics.FileVersionInfo/4.0.0",
"files": [
@@ -6857,12 +7313,12 @@
"runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll"
]
},
- "System.Diagnostics.Process/4.1.0": {
- "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
+ "System.Diagnostics.Process/4.3.0": {
+ "sha512": "J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==",
"type": "package",
- "path": "System.Diagnostics.Process/4.1.0",
+ "path": "System.Diagnostics.Process/4.3.0",
"files": [
- "System.Diagnostics.Process.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Process.4.3.0.nupkg.sha512",
"System.Diagnostics.Process.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6912,12 +7368,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Diagnostics.StackTrace/4.0.1": {
- "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==",
+ "System.Diagnostics.StackTrace/4.3.0": {
+ "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
"type": "package",
- "path": "System.Diagnostics.StackTrace/4.0.1",
+ "path": "System.Diagnostics.StackTrace/4.3.0",
"files": [
- "System.Diagnostics.StackTrace.4.0.1.nupkg.sha512",
+ "System.Diagnostics.StackTrace.4.3.0.nupkg.sha512",
"System.Diagnostics.StackTrace.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -6950,12 +7406,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
]
},
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "System.Diagnostics.Tools/4.3.0": {
+ "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
+ "path": "System.Diagnostics.Tools/4.3.0",
"files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7005,12 +7461,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Tracing/4.1.0": {
- "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"type": "package",
- "path": "System.Diagnostics.Tracing/4.1.0",
+ "path": "System.Diagnostics.Tracing/4.3.0",
"files": [
- "System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7093,12 +7549,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Dynamic.Runtime/4.0.11": {
- "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "System.Dynamic.Runtime/4.3.0": {
+ "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"type": "package",
- "path": "System.Dynamic.Runtime/4.0.11",
+ "path": "System.Dynamic.Runtime/4.3.0",
"files": [
- "System.Dynamic.Runtime.4.0.11.nupkg.sha512",
+ "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
"System.Dynamic.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7162,12 +7618,12 @@
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
]
},
- "System.Globalization/4.0.11": {
- "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"type": "package",
- "path": "System.Globalization/4.0.11",
+ "path": "System.Globalization/4.3.0",
"files": [
- "System.Globalization.4.0.11.nupkg.sha512",
+ "System.Globalization.4.3.0.nupkg.sha512",
"System.Globalization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7228,12 +7684,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Calendars/4.0.1": {
- "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
+ "System.Globalization.Calendars/4.3.0": {
+ "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"type": "package",
- "path": "System.Globalization.Calendars/4.0.1",
+ "path": "System.Globalization.Calendars/4.3.0",
"files": [
- "System.Globalization.Calendars.4.0.1.nupkg.sha512",
+ "System.Globalization.Calendars.4.3.0.nupkg.sha512",
"System.Globalization.Calendars.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7264,12 +7720,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Extensions/4.0.1": {
- "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"type": "package",
- "path": "System.Globalization.Extensions/4.0.1",
+ "path": "System.Globalization.Extensions/4.3.0",
"files": [
- "System.Globalization.Extensions.4.0.1.nupkg.sha512",
+ "System.Globalization.Extensions.4.3.0.nupkg.sha512",
"System.Globalization.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7303,12 +7759,12 @@
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll"
]
},
- "System.IO/4.1.0": {
- "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"type": "package",
- "path": "System.IO/4.1.0",
+ "path": "System.IO/4.3.0",
"files": [
- "System.IO.4.1.0.nupkg.sha512",
+ "System.IO.4.3.0.nupkg.sha512",
"System.IO.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7382,12 +7838,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
+ "System.IO.Compression/4.3.0": {
+ "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"type": "package",
- "path": "System.IO.Compression/4.1.0",
+ "path": "System.IO.Compression/4.3.0",
"files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
+ "System.IO.Compression.4.3.0.nupkg.sha512",
"System.IO.Compression.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7451,12 +7907,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
]
},
- "System.IO.Compression.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
"type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
+ "path": "System.IO.Compression.ZipFile/4.3.0",
"files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
+ "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
"System.IO.Compression.ZipFile.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7488,12 +7944,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem/4.0.1": {
- "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"type": "package",
- "path": "System.IO.FileSystem/4.0.1",
+ "path": "System.IO.FileSystem/4.3.0",
"files": [
- "System.IO.FileSystem.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.4.3.0.nupkg.sha512",
"System.IO.FileSystem.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7524,12 +7980,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Primitives/4.0.1": {
- "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"type": "package",
- "path": "System.IO.FileSystem.Primitives/4.0.1",
+ "path": "System.IO.FileSystem.Primitives/4.3.0",
"files": [
- "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7561,12 +8017,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Watcher/4.0.0": {
- "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==",
+ "System.IO.FileSystem.Watcher/4.3.0": {
+ "sha512": "37IDFU2w6LJ4FrohcVlV1EXviUmAOJIbejVgOUtNaPQyeZW2D/0QSkH8ykehoOd19bWfxp3RRd0xj+yRRIqLhw==",
"type": "package",
- "path": "System.IO.FileSystem.Watcher/4.0.0",
+ "path": "System.IO.FileSystem.Watcher/4.3.0",
"files": [
- "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
+ "System.IO.FileSystem.Watcher.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Watcher.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7602,12 +8058,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.IO.MemoryMappedFiles/4.0.0": {
- "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==",
+ "System.IO.MemoryMappedFiles/4.3.0": {
+ "sha512": "mz2JJFxCQLdMzXVOPyVibDKDKFZey66YHgQy8M1/vUCQzMSrbiXhpsyV04vSlBeqQUdM7wTL2WG+X3GZALKsIQ==",
"type": "package",
- "path": "System.IO.MemoryMappedFiles/4.0.0",
+ "path": "System.IO.MemoryMappedFiles/4.3.0",
"files": [
- "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512",
+ "System.IO.MemoryMappedFiles.4.3.0.nupkg.sha512",
"System.IO.MemoryMappedFiles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7642,12 +8098,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
]
},
- "System.IO.UnmanagedMemoryStream/4.0.1": {
- "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==",
+ "System.IO.UnmanagedMemoryStream/4.3.0": {
+ "sha512": "tS89nK7pw8ebkkEfWujA05+ZReHKzz39W+bcX1okVR0GJCJuzPyfYfQZyiLSrjp121BB5J4uewZQiUTKri2pSQ==",
"type": "package",
- "path": "System.IO.UnmanagedMemoryStream/4.0.1",
+ "path": "System.IO.UnmanagedMemoryStream/4.3.0",
"files": [
- "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
+ "System.IO.UnmanagedMemoryStream.4.3.0.nupkg.sha512",
"System.IO.UnmanagedMemoryStream.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7679,12 +8135,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq/4.1.0": {
- "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"type": "package",
- "path": "System.Linq/4.1.0",
+ "path": "System.Linq/4.3.0",
"files": [
- "System.Linq.4.1.0.nupkg.sha512",
+ "System.Linq.4.3.0.nupkg.sha512",
"System.Linq.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7749,12 +8205,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"type": "package",
- "path": "System.Linq.Expressions/4.1.0",
+ "path": "System.Linq.Expressions/4.3.0",
"files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
+ "System.Linq.Expressions.4.3.0.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7831,12 +8287,12 @@
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
]
},
- "System.Linq.Parallel/4.0.1": {
- "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==",
+ "System.Linq.Parallel/4.3.0": {
+ "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==",
"type": "package",
- "path": "System.Linq.Parallel/4.0.1",
+ "path": "System.Linq.Parallel/4.3.0",
"files": [
- "System.Linq.Parallel.4.0.1.nupkg.sha512",
+ "System.Linq.Parallel.4.3.0.nupkg.sha512",
"System.Linq.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7886,12 +8342,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
"type": "package",
- "path": "System.Linq.Queryable/4.0.1",
+ "path": "System.Linq.Queryable/4.3.0",
"files": [
- "System.Linq.Queryable.4.0.1.nupkg.sha512",
+ "System.Linq.Queryable.4.3.0.nupkg.sha512",
"System.Linq.Queryable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -7943,12 +8399,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
+ "System.Net.Http/4.3.0": {
+ "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
"type": "package",
- "path": "System.Net.Http/4.1.0",
+ "path": "System.Net.Http/4.3.0",
"files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
+ "System.Net.Http.4.3.0.nupkg.sha512",
"System.Net.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8023,12 +8479,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
]
},
- "System.Net.NameResolution/4.0.0": {
- "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
+ "System.Net.NameResolution/4.3.0": {
+ "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
"type": "package",
- "path": "System.Net.NameResolution/4.0.0",
+ "path": "System.Net.NameResolution/4.3.0",
"files": [
- "System.Net.NameResolution.4.0.0.nupkg.sha512",
+ "System.Net.NameResolution.4.3.0.nupkg.sha512",
"System.Net.NameResolution.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8063,12 +8519,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
]
},
- "System.Net.Primitives/4.0.11": {
- "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"type": "package",
- "path": "System.Net.Primitives/4.0.11",
+ "path": "System.Net.Primitives/4.3.0",
"files": [
- "System.Net.Primitives.4.0.11.nupkg.sha512",
+ "System.Net.Primitives.4.3.0.nupkg.sha512",
"System.Net.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8140,12 +8596,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Requests/4.0.11": {
- "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==",
+ "System.Net.Requests/4.3.0": {
+ "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
"type": "package",
- "path": "System.Net.Requests/4.0.11",
+ "path": "System.Net.Requests/4.3.0",
"files": [
- "System.Net.Requests.4.0.11.nupkg.sha512",
+ "System.Net.Requests.4.3.0.nupkg.sha512",
"System.Net.Requests.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8221,12 +8677,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
]
},
- "System.Net.Security/4.0.0": {
- "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==",
+ "System.Net.Security/4.3.0": {
+ "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
"type": "package",
- "path": "System.Net.Security/4.0.0",
+ "path": "System.Net.Security/4.3.0",
"files": [
- "System.Net.Security.4.0.0.nupkg.sha512",
+ "System.Net.Security.4.3.0.nupkg.sha512",
"System.Net.Security.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8261,12 +8717,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Net.Sockets/4.1.0": {
- "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
+ "System.Net.Sockets/4.3.0": {
+ "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
"type": "package",
- "path": "System.Net.Sockets/4.1.0",
+ "path": "System.Net.Sockets/4.3.0",
"files": [
- "System.Net.Sockets.4.1.0.nupkg.sha512",
+ "System.Net.Sockets.4.3.0.nupkg.sha512",
"System.Net.Sockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8297,12 +8753,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebHeaderCollection/4.0.1": {
- "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==",
+ "System.Net.WebHeaderCollection/4.3.0": {
+ "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
"type": "package",
- "path": "System.Net.WebHeaderCollection/4.0.1",
+ "path": "System.Net.WebHeaderCollection/4.3.0",
"files": [
- "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
+ "System.Net.WebHeaderCollection.4.3.0.nupkg.sha512",
"System.Net.WebHeaderCollection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8334,12 +8790,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebSockets/4.0.0": {
- "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
+ "System.Net.WebSockets/4.3.0": {
+ "sha512": "u6fFNY5q4T8KerUAVbya7bR6b7muBuSTAersyrihkcmE5QhEOiH3t5rh4il15SexbVlpXFHGuMwr/m8fDrnkQg==",
"type": "package",
- "path": "System.Net.WebSockets/4.0.0",
+ "path": "System.Net.WebSockets/4.3.0",
"files": [
- "System.Net.WebSockets.4.0.0.nupkg.sha512",
+ "System.Net.WebSockets.4.3.0.nupkg.sha512",
"System.Net.WebSockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8371,12 +8827,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Numerics.Vectors/4.1.1": {
- "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==",
+ "System.Numerics.Vectors/4.3.0": {
+ "sha512": "uAIqmwiQPPXdCz59MQcyHwsH2MzIv24VGCS54kP/1GzTRTuU3hazmiPnGUTlKFia4B1DnbLWjTHoGyTI5BMCTQ==",
"type": "package",
- "path": "System.Numerics.Vectors/4.1.1",
+ "path": "System.Numerics.Vectors/4.3.0",
"files": [
- "System.Numerics.Vectors.4.1.1.nupkg.sha512",
+ "System.Numerics.Vectors.4.3.0.nupkg.sha512",
"System.Numerics.Vectors.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8404,12 +8860,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"type": "package",
- "path": "System.ObjectModel/4.0.12",
+ "path": "System.ObjectModel/4.3.0",
"files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
+ "System.ObjectModel.4.3.0.nupkg.sha512",
"System.ObjectModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8472,12 +8928,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection/4.1.0": {
- "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"type": "package",
- "path": "System.Reflection/4.1.0",
+ "path": "System.Reflection/4.3.0",
"files": [
- "System.Reflection.4.1.0.nupkg.sha512",
+ "System.Reflection.4.3.0.nupkg.sha512",
"System.Reflection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8551,12 +9007,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.DispatchProxy/4.0.1": {
- "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==",
+ "System.Reflection.DispatchProxy/4.3.0": {
+ "sha512": "vFln4g7zbLRyJbioExbMaW4BGuE2urDE2IKQk02x1y1uhQWntD+4rcYA4xQGJ19PlMdYPMWExHVQj3zKDODBFw==",
"type": "package",
- "path": "System.Reflection.DispatchProxy/4.0.1",
+ "path": "System.Reflection.DispatchProxy/4.3.0",
"files": [
- "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
+ "System.Reflection.DispatchProxy.4.3.0.nupkg.sha512",
"System.Reflection.DispatchProxy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8587,20 +9043,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
]
},
- "System.Reflection.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"type": "package",
- "path": "System.Reflection.Emit/4.0.1",
+ "path": "System.Reflection.Emit/4.3.0",
"files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.4.3.0.nupkg.sha512",
"System.Reflection.Emit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.dll",
"lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/net45/_._",
"ref/netstandard1.1/System.Reflection.Emit.dll",
@@ -8617,20 +9077,28 @@
"ref/xamarinmac20/_._"
]
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.0.1",
+ "path": "System.Reflection.Emit.ILGeneration/4.3.0",
"files": [
- "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
"System.Reflection.Emit.ILGeneration.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
@@ -8645,23 +9113,35 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.0.1",
+ "path": "System.Reflection.Emit.Lightweight/4.3.0",
"files": [
- "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
"System.Reflection.Emit.Lightweight.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.Lightweight.dll",
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
@@ -8676,15 +9156,19 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Extensions/4.0.1": {
- "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"type": "package",
- "path": "System.Reflection.Extensions/4.0.1",
+ "path": "System.Reflection.Extensions/4.3.0",
"files": [
- "System.Reflection.Extensions.4.0.1.nupkg.sha512",
+ "System.Reflection.Extensions.4.3.0.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8734,12 +9218,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.Metadata/1.3.0": {
- "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
+ "System.Reflection.Metadata/1.4.1": {
+ "sha512": "tc2ZyJgweHCLci5oQGuhQn9TD0Ii9DReXkHtZm3aAGp8xe40rpRjiTbMXOtZU+fr0BOQ46goE9+qIqRGjR9wGg==",
"type": "package",
- "path": "System.Reflection.Metadata/1.3.0",
+ "path": "System.Reflection.Metadata/1.4.1",
"files": [
- "System.Reflection.Metadata.1.3.0.nupkg.sha512",
+ "System.Reflection.Metadata.1.4.1.nupkg.sha512",
"System.Reflection.Metadata.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8749,12 +9233,12 @@
"lib/portable-net45+win8/System.Reflection.Metadata.xml"
]
},
- "System.Reflection.Primitives/4.0.1": {
- "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"type": "package",
- "path": "System.Reflection.Primitives/4.0.1",
+ "path": "System.Reflection.Primitives/4.3.0",
"files": [
- "System.Reflection.Primitives.4.0.1.nupkg.sha512",
+ "System.Reflection.Primitives.4.3.0.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8804,12 +9288,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.TypeExtensions/4.1.0": {
- "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"type": "package",
- "path": "System.Reflection.TypeExtensions/4.1.0",
+ "path": "System.Reflection.TypeExtensions/4.3.0",
"files": [
- "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512",
+ "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8856,24 +9340,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
- "System.Resources.Reader/4.0.0": {
- "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==",
+ "System.Resources.Reader/4.3.0": {
+ "sha512": "AeSwdrdgsRnGRJDofYEJPlotJm6gDDg6WJ1/1lX2Yq8bPwicba7lanPi7adK0SE58zgN5PcGg/h0tuZS+IRAdw==",
"type": "package",
- "path": "System.Resources.Reader/4.0.0",
+ "path": "System.Resources.Reader/4.3.0",
"files": [
- "System.Resources.Reader.4.0.0.nupkg.sha512",
+ "System.Resources.Reader.4.3.0.nupkg.sha512",
"System.Resources.Reader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Resources.Reader.dll"
]
},
- "System.Resources.ResourceManager/4.0.1": {
- "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"type": "package",
- "path": "System.Resources.ResourceManager/4.0.1",
+ "path": "System.Resources.ResourceManager/4.3.0",
"files": [
- "System.Resources.ResourceManager.4.0.1.nupkg.sha512",
+ "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8923,12 +9407,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime/4.1.0": {
- "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"type": "package",
- "path": "System.Runtime/4.1.0",
+ "path": "System.Runtime/4.3.0",
"files": [
- "System.Runtime.4.1.0.nupkg.sha512",
+ "System.Runtime.4.3.0.nupkg.sha512",
"System.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9013,12 +9497,25 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Extensions/4.1.0": {
- "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "sha512": "rcnXA1U9W3QUtMSGoyoNHH6w4V5Rxa/EKXmzpORUYlDAlDB34hIQoU57ATXl8xHa83VvzRm6PcElEizgUd7U5w==",
+ "type": "package",
+ "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
+ "files": [
+ "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
+ "System.Runtime.CompilerServices.Unsafe.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"type": "package",
- "path": "System.Runtime.Extensions/4.1.0",
+ "path": "System.Runtime.Extensions/4.3.0",
"files": [
- "System.Runtime.Extensions.4.1.0.nupkg.sha512",
+ "System.Runtime.Extensions.4.3.0.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9092,12 +9589,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Handles/4.0.1": {
- "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"type": "package",
- "path": "System.Runtime.Handles/4.0.1",
+ "path": "System.Runtime.Handles/4.3.0",
"files": [
- "System.Runtime.Handles.4.0.1.nupkg.sha512",
+ "System.Runtime.Handles.4.3.0.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9128,12 +9625,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices/4.1.0": {
- "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"type": "package",
- "path": "System.Runtime.InteropServices/4.1.0",
+ "path": "System.Runtime.InteropServices/4.3.0",
"files": [
- "System.Runtime.InteropServices.4.1.0.nupkg.sha512",
+ "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9141,6 +9638,7 @@
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
@@ -9152,6 +9650,7 @@
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
@@ -9163,6 +9662,7 @@
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
@@ -9216,18 +9716,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
"type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0",
+ "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
"files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.0.0.nupkg.sha512",
+ "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.RuntimeInformation.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/xamarinios10/_._",
@@ -9248,17 +9749,23 @@
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
]
},
- "System.Runtime.Loader/4.0.0": {
- "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
"type": "package",
- "path": "System.Runtime.Loader/4.0.0",
+ "path": "System.Runtime.Loader/4.3.0",
"files": [
- "System.Runtime.Loader.4.0.0.nupkg.sha512",
+ "System.Runtime.Loader.4.3.0.nupkg.sha512",
"System.Runtime.Loader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net462/_._",
"lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/netstandard1.5/System.Runtime.Loader.dll",
"ref/netstandard1.5/System.Runtime.Loader.xml",
"ref/netstandard1.5/de/System.Runtime.Loader.xml",
@@ -9272,12 +9779,12 @@
"ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
]
},
- "System.Runtime.Numerics/4.0.1": {
- "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
+ "System.Runtime.Numerics/4.3.0": {
+ "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"type": "package",
- "path": "System.Runtime.Numerics/4.0.1",
+ "path": "System.Runtime.Numerics/4.3.0",
"files": [
- "System.Runtime.Numerics.4.0.1.nupkg.sha512",
+ "System.Runtime.Numerics.4.3.0.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9327,12 +9834,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"type": "package",
- "path": "System.Runtime.Serialization.Primitives/4.1.1",
+ "path": "System.Runtime.Serialization.Primitives/4.3.0",
"files": [
- "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
+ "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
"System.Runtime.Serialization.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9398,12 +9905,12 @@
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
]
},
- "System.Security.Claims/4.0.1": {
- "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==",
+ "System.Security.Claims/4.3.0": {
+ "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
"type": "package",
- "path": "System.Security.Claims/4.0.1",
+ "path": "System.Security.Claims/4.3.0",
"files": [
- "System.Security.Claims.4.0.1.nupkg.sha512",
+ "System.Security.Claims.4.3.0.nupkg.sha512",
"System.Security.Claims.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9435,12 +9942,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
- "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.2.0",
+ "path": "System.Security.Cryptography.Algorithms/4.3.0",
"files": [
- "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9465,6 +9972,7 @@
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
@@ -9473,12 +9981,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
]
},
- "System.Security.Cryptography.Cng/4.2.0": {
- "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
"type": "package",
- "path": "System.Security.Cryptography.Cng/4.2.0",
+ "path": "System.Security.Cryptography.Cng/4.3.0",
"files": [
- "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Cng.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9499,12 +10007,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
]
},
- "System.Security.Cryptography.Csp/4.0.0": {
- "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"type": "package",
- "path": "System.Security.Cryptography.Csp/4.0.0",
+ "path": "System.Security.Cryptography.Csp/4.3.0",
"files": [
- "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Csp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9529,12 +10037,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
]
},
- "System.Security.Cryptography.Encoding/4.0.0": {
- "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"type": "package",
- "path": "System.Security.Cryptography.Encoding/4.0.0",
+ "path": "System.Security.Cryptography.Encoding/4.3.0",
"files": [
- "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9568,12 +10076,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
]
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
- "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
"type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.0.0",
+ "path": "System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
- "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
"System.Security.Cryptography.OpenSsl.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9582,12 +10090,12 @@
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
]
},
- "System.Security.Cryptography.Primitives/4.0.0": {
- "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"type": "package",
- "path": "System.Security.Cryptography.Primitives/4.0.0",
+ "path": "System.Security.Cryptography.Primitives/4.3.0",
"files": [
- "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9609,12 +10117,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.1.0",
+ "path": "System.Security.Cryptography.X509Certificates/4.3.0",
"files": [
- "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512",
+ "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9663,12 +10171,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
]
},
- "System.Security.Principal/4.0.1": {
- "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==",
+ "System.Security.Principal/4.3.0": {
+ "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
"type": "package",
- "path": "System.Security.Principal/4.0.1",
+ "path": "System.Security.Principal/4.3.0",
"files": [
- "System.Security.Principal.4.0.1.nupkg.sha512",
+ "System.Security.Principal.4.3.0.nupkg.sha512",
"System.Security.Principal.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9720,12 +10228,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Principal.Windows/4.0.0": {
- "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==",
+ "System.Security.Principal.Windows/4.3.0": {
+ "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
"type": "package",
- "path": "System.Security.Principal.Windows/4.0.0",
+ "path": "System.Security.Principal.Windows/4.3.0",
"files": [
- "System.Security.Principal.Windows.4.0.0.nupkg.sha512",
+ "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
"System.Security.Principal.Windows.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9747,12 +10255,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
]
},
- "System.Text.Encoding/4.0.11": {
- "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"type": "package",
- "path": "System.Text.Encoding/4.0.11",
+ "path": "System.Text.Encoding/4.3.0",
"files": [
- "System.Text.Encoding.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.4.3.0.nupkg.sha512",
"System.Text.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9814,7 +10322,7 @@
]
},
"System.Text.Encoding.CodePages/4.0.1": {
- "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
+ "sha512": "Mknrs0YEgYwQbDuTYiOqqos9jx6vXvqH/YTQARKLUv8TJCYXuL7M9Yq7DAlxHDELI39BmSmMDA9/cVIw7ExT+A==",
"type": "package",
"path": "System.Text.Encoding.CodePages/4.0.1",
"files": [
@@ -9850,12 +10358,12 @@
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
]
},
- "System.Text.Encoding.Extensions/4.0.11": {
- "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"type": "package",
- "path": "System.Text.Encoding.Extensions/4.0.11",
+ "path": "System.Text.Encoding.Extensions/4.3.0",
"files": [
- "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
"System.Text.Encoding.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9916,12 +10424,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encodings.Web/4.0.0": {
- "sha512": "TWZnuiJgPDAEEUfobD7njXvSVR2Toz+jvKWds6yL4oSztmKQfnWzucczjzA+6Dv1bktBdY71sZW1YN0X6m9chQ==",
+ "System.Text.Encodings.Web/4.3.0": {
+ "sha512": "ilLTKoirqw+Mbt+6x1MOxZKEwflasdP5WNuo5m5rKSXtAqazlEDqdyBH1XbvENuDQUtKNeP48CI1dyDNlEAeOA==",
"type": "package",
- "path": "System.Text.Encodings.Web/4.0.0",
+ "path": "System.Text.Encodings.Web/4.3.0",
"files": [
- "System.Text.Encodings.Web.4.0.0.nupkg.sha512",
+ "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
"System.Text.Encodings.Web.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9929,12 +10437,12 @@
"lib/netstandard1.0/System.Text.Encodings.Web.xml"
]
},
- "System.Text.RegularExpressions/4.1.0": {
- "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "System.Text.RegularExpressions/4.3.0": {
+ "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"type": "package",
- "path": "System.Text.RegularExpressions/4.1.0",
+ "path": "System.Text.RegularExpressions/4.3.0",
"files": [
- "System.Text.RegularExpressions.4.1.0.nupkg.sha512",
+ "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
"System.Text.RegularExpressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9967,6 +10475,7 @@
"ref/netcore50/ru/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
@@ -10010,12 +10519,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading/4.0.11": {
- "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"type": "package",
- "path": "System.Threading/4.0.11",
+ "path": "System.Threading/4.3.0",
"files": [
- "System.Threading.4.0.11.nupkg.sha512",
+ "System.Threading.4.3.0.nupkg.sha512",
"System.Threading.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10079,12 +10588,12 @@
"runtimes/aot/lib/netcore50/System.Threading.dll"
]
},
- "System.Threading.Overlapped/4.0.1": {
- "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==",
+ "System.Threading.Overlapped/4.3.0": {
+ "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
"type": "package",
- "path": "System.Threading.Overlapped/4.0.1",
+ "path": "System.Threading.Overlapped/4.3.0",
"files": [
- "System.Threading.Overlapped.4.0.1.nupkg.sha512",
+ "System.Threading.Overlapped.4.3.0.nupkg.sha512",
"System.Threading.Overlapped.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10107,12 +10616,12 @@
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
]
},
- "System.Threading.Tasks/4.0.11": {
- "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"type": "package",
- "path": "System.Threading.Tasks/4.0.11",
+ "path": "System.Threading.Tasks/4.3.0",
"files": [
- "System.Threading.Tasks.4.0.11.nupkg.sha512",
+ "System.Threading.Tasks.4.3.0.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10173,27 +10682,29 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Tasks.Dataflow/4.6.0": {
- "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==",
+ "System.Threading.Tasks.Dataflow/4.7.0": {
+ "sha512": "wcKLDI8tN5KpcMcTQwXfcLHrFdfINIxDBOZS3rE8QqOds/0fRhCkR+IEfQokxT7s/Yluqk+LG/ZqZdQmA/xgCw==",
"type": "package",
- "path": "System.Threading.Tasks.Dataflow/4.6.0",
+ "path": "System.Threading.Tasks.Dataflow/4.7.0",
"files": [
- "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
+ "System.Threading.Tasks.Dataflow.4.7.0.nupkg.sha512",
"System.Threading.Tasks.Dataflow.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
- "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
+ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll"
]
},
- "System.Threading.Tasks.Extensions/4.0.0": {
- "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"type": "package",
- "path": "System.Threading.Tasks.Extensions/4.0.0",
+ "path": "System.Threading.Tasks.Extensions/4.3.0",
"files": [
- "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512",
+ "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10203,12 +10714,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
]
},
- "System.Threading.Tasks.Parallel/4.0.1": {
- "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==",
+ "System.Threading.Tasks.Parallel/4.3.0": {
+ "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
"type": "package",
- "path": "System.Threading.Tasks.Parallel/4.0.1",
+ "path": "System.Threading.Tasks.Parallel/4.3.0",
"files": [
- "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
+ "System.Threading.Tasks.Parallel.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10258,12 +10769,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Thread/4.0.0": {
- "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
+ "System.Threading.Thread/4.3.0": {
+ "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
"type": "package",
- "path": "System.Threading.Thread/4.0.0",
+ "path": "System.Threading.Thread/4.3.0",
"files": [
- "System.Threading.Thread.4.0.0.nupkg.sha512",
+ "System.Threading.Thread.4.3.0.nupkg.sha512",
"System.Threading.Thread.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10296,12 +10807,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.ThreadPool/4.0.10": {
- "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
+ "System.Threading.ThreadPool/4.3.0": {
+ "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
"type": "package",
- "path": "System.Threading.ThreadPool/4.0.10",
+ "path": "System.Threading.ThreadPool/4.3.0",
"files": [
- "System.Threading.ThreadPool.4.0.10.nupkg.sha512",
+ "System.Threading.ThreadPool.4.3.0.nupkg.sha512",
"System.Threading.ThreadPool.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10334,12 +10845,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Timer/4.0.1": {
- "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "System.Threading.Timer/4.3.0": {
+ "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
"type": "package",
- "path": "System.Threading.Timer/4.0.1",
+ "path": "System.Threading.Timer/4.3.0",
"files": [
- "System.Threading.Timer.4.0.1.nupkg.sha512",
+ "System.Threading.Timer.4.3.0.nupkg.sha512",
"System.Threading.Timer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10387,18 +10898,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.ReaderWriter/4.0.11": {
- "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "System.Xml.ReaderWriter/4.3.0": {
+ "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"type": "package",
- "path": "System.Xml.ReaderWriter/4.0.11",
+ "path": "System.Xml.ReaderWriter/4.3.0",
"files": [
- "System.Xml.ReaderWriter.4.0.11.nupkg.sha512",
+ "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
"System.Xml.ReaderWriter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
+ "lib/net46/System.Xml.ReaderWriter.dll",
"lib/netcore50/System.Xml.ReaderWriter.dll",
"lib/netstandard1.3/System.Xml.ReaderWriter.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
@@ -10412,6 +10924,7 @@
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
+ "ref/net46/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.xml",
"ref/netcore50/de/System.Xml.ReaderWriter.xml",
@@ -10455,12 +10968,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "System.Xml.XDocument/4.3.0": {
+ "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"type": "package",
- "path": "System.Xml.XDocument/4.0.11",
+ "path": "System.Xml.XDocument/4.3.0",
"files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
+ "System.Xml.XDocument.4.3.0.nupkg.sha512",
"System.Xml.XDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10524,7 +11037,7 @@
]
},
"System.Xml.XmlDocument/4.0.1": {
- "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
+ "sha512": "QUdzLPVLBXg+3hQiTgLSy6lnMIN4Pj6+kRU2GJCwMooXHJvHp2PUjBg5Ms3r+ewPcu3dewET6v0a9UqPaUrTaw==",
"type": "package",
"path": "System.Xml.XmlDocument/4.0.1",
"files": [
@@ -10561,7 +11074,7 @@
]
},
"System.Xml.XPath/4.0.1": {
- "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
+ "sha512": "drxlpwgSyGH1S1lsW5pqBCQ7TLdAKjVl+G1F1HYAVDFdRBtAHCORwW2/IbMCidAb8jxjJPBTyUkcTrEedIXvoQ==",
"type": "package",
"path": "System.Xml.XPath/4.0.1",
"files": [
@@ -10598,7 +11111,7 @@
]
},
"System.Xml.XPath.XDocument/4.0.1": {
- "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==",
+ "sha512": "9beITE7Jz3Q0vTBbs7OeYVI57jpJJP5s5O7l6s5OnfOoY87o4lau9HbXARVaZ5leWeDPch/xvw7tO4oEBa2r2w==",
"type": "package",
"path": "System.Xml.XPath.XDocument/4.0.1",
"files": [
@@ -10637,32 +11150,32 @@
},
"projectFileDependencyGroups": {
"": [
- "Microsoft.AspNetCore.Mvc >= 1.0.1",
- "Microsoft.AspNetCore.Routing >= 1.0.1",
- "Microsoft.AspNetCore.Server.IISIntegration >= 1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel >= 1.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables >= 1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions >= 1.0.0",
- "Microsoft.Extensions.Configuration.Json >= 1.0.0",
- "Microsoft.Extensions.Logging >= 1.0.0",
- "Microsoft.Extensions.Logging.Console >= 1.0.0",
- "Microsoft.Extensions.Logging.Debug >= 1.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions >= 1.0.0"
+ "Microsoft.AspNetCore.Mvc >= 1.1.0",
+ "Microsoft.AspNetCore.Routing >= 1.1.0",
+ "Microsoft.AspNetCore.Server.IISIntegration >= 1.1.0",
+ "Microsoft.AspNetCore.Server.Kestrel >= 1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables >= 1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions >= 1.1.0",
+ "Microsoft.Extensions.Configuration.Json >= 1.1.0",
+ "Microsoft.Extensions.Logging >= 1.1.0",
+ "Microsoft.Extensions.Logging.Console >= 1.1.0",
+ "Microsoft.Extensions.Logging.Debug >= 1.1.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions >= 1.1.0"
],
- ".NETCoreApp,Version=v1.0": [
- "Microsoft.NETCore.App >= 1.0.1"
+ ".NETCoreApp,Version=v1.1": [
+ "Microsoft.NETCore.App >= 1.1.0"
],
".NETFramework,Version=v4.5.1": []
},
"tools": {
".NETCoreApp,Version=v1.0": {
- "Microsoft.AspNetCore.Server.IISIntegration.Tools/1.0.0-preview2-final": {
+ "Microsoft.AspNetCore.Server.IISIntegration.Tools/1.1.0-preview4-final": {
"type": "package",
"dependencies": {
"Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121",
- "Microsoft.Extensions.CommandLineUtils": "1.0.0",
- "Microsoft.NETCore.App": "1.0.0",
- "System.Diagnostics.Process": "4.1.0"
+ "Microsoft.Extensions.CommandLineUtils": "1.1.0",
+ "Microsoft.NETCore.App": "1.1.0",
+ "System.Diagnostics.Process": "4.3.0"
},
"compile": {
"lib/netcoreapp1.0/dotnet-publish-iis.dll": {}
@@ -10675,7 +11188,7 @@
},
"projectFileToolGroups": {
".NETCoreApp,Version=v1.0": [
- "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.0.0-preview2-final"
+ "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.1.0-preview4-final"
]
}
}
\ No newline at end of file
diff --git a/samples/MusicStore/MusicStore.Test/Controllers/ShoppingCartControllerTest.cs b/samples/MusicStore/MusicStore.Test/Controllers/ShoppingCartControllerTest.cs
index 5e2e80d41..250d72c99 100644
--- a/samples/MusicStore/MusicStore.Test/Controllers/ShoppingCartControllerTest.cs
+++ b/samples/MusicStore/MusicStore.Test/Controllers/ShoppingCartControllerTest.cs
@@ -85,7 +85,7 @@ public void AddToCartShouldAddItemsToCart()
.WithDbContext(db => db
.WithEntities(entities => entities
.AddRange(CreateTestAlbums(itemPrice: 10))))
- .Calling(c => c.AddToCart(albumId))
+ .Calling(c => c.AddToCart(albumId, CancellationToken.None))
.ShouldReturn()
.Redirect()
.To(c => c.Index())
diff --git a/samples/MusicStore/MusicStore.Test/Routing/ShoppingCartRouteTest.cs b/samples/MusicStore/MusicStore.Test/Routing/ShoppingCartRouteTest.cs
index fcd003fb4..6500a813b 100644
--- a/samples/MusicStore/MusicStore.Test/Routing/ShoppingCartRouteTest.cs
+++ b/samples/MusicStore/MusicStore.Test/Routing/ShoppingCartRouteTest.cs
@@ -22,7 +22,7 @@ public void AddToCartShouldBeRoutedCorrectly()
MyMvc
.Routing()
.ShouldMap("/ShoppingCart/AddToCart/1")
- .To(c => c.AddToCart(1));
+ .To(c => c.AddToCart(1, With.Any()));
}
[Fact]
diff --git a/samples/MusicStore/MusicStore.Test/project.json b/samples/MusicStore/MusicStore.Test/project.json
index b35f9b81f..77e1bdeaf 100644
--- a/samples/MusicStore/MusicStore.Test/project.json
+++ b/samples/MusicStore/MusicStore.Test/project.json
@@ -11,18 +11,19 @@
},
"dependencies": {
+ "Microsoft.DotNet.InternalAbstractions": "1.0.0", // remove when not needed
"dotnet-test-xunit": "2.2.0-*",
"xunit": "2.2.0-*",
- "MyTested.AspNetCore.Mvc.Universe": "1.0.0",
+ "MyTested.AspNetCore.Mvc.Universe": "1.1.0",
"MusicStore.Web": "*"
},
"frameworks": {
- "netcoreapp1.0": {
+ "netcoreapp1.1": {
"imports": "dotnet5.4",
"dependencies": {
"Microsoft.NETCore.App": {
- "version": "1.0.1",
+ "version": "1.1.0",
"type": "platform"
}
}
diff --git a/samples/MusicStore/MusicStore.Test/project.lock.json b/samples/MusicStore/MusicStore.Test/project.lock.json
index bf51ca854..d27b83471 100644
--- a/samples/MusicStore/MusicStore.Test/project.lock.json
+++ b/samples/MusicStore/MusicStore.Test/project.lock.json
@@ -2,7 +2,7 @@
"locked": false,
"version": 2,
"targets": {
- ".NETCoreApp,Version=v1.0": {
+ ".NETCoreApp,Version=v1.1": {
"dotnet-test-xunit/2.2.0-preview2-build1029": {
"type": "package",
"dependencies": {
@@ -17,7 +17,7 @@
"lib/netcoreapp1.0/dotnet-test-xunit.dll": {}
}
},
- "Libuv/1.9.0": {
+ "Libuv/1.9.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
@@ -57,13 +57,32 @@
}
}
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.Diagnostics": "1.1.0",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Logging.Console": "1.1.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
+ }
+ },
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -72,16 +91,16 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
- "System.Net.Http": "4.1.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.dll": {}
@@ -90,12 +109,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
@@ -104,10 +124,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Facebook/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Facebook/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Facebook.dll": {}
@@ -116,10 +137,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Facebook.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Google/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Google/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Google.dll": {}
@@ -128,10 +150,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Google.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.MicrosoftAccount/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {}
@@ -140,12 +163,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.OAuth/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.OAuth/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.OAuth.dll": {}
@@ -154,11 +178,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.OAuth.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.OpenIdConnect/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.OpenIdConnect/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.4/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {}
@@ -167,10 +192,11 @@
"lib/netstandard1.4/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Twitter/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Twitter/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -180,12 +206,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Twitter.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Claims": "4.0.1"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
@@ -194,13 +221,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
@@ -209,15 +237,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
@@ -226,13 +249,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
@@ -241,22 +262,19 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
@@ -265,13 +283,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
@@ -280,20 +296,20 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.StackTrace": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Metadata": "1.3.0"
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.StackTrace": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.dll": {}
@@ -302,10 +318,10 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -314,12 +330,12 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
@@ -328,43 +344,43 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Console": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.StackTrace": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.StackTrace": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {}
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
},
"runtime": {
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll": {}
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -373,11 +389,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -386,12 +403,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -400,16 +416,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
@@ -418,15 +434,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Globalization.Extensions": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -435,14 +451,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.IO.FileSystem": "4.0.1"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -451,19 +467,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebSockets": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0",
+ "System.Net.WebSockets": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -472,12 +484,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
@@ -486,13 +499,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll": {}
}
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
+ "Microsoft.AspNetCore.Identity/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.dll": {}
@@ -501,12 +514,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.dll": {}
}
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Identity": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.AspNetCore.Identity": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
@@ -515,36 +529,29 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
@@ -553,19 +560,20 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
@@ -574,15 +582,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -591,10 +598,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -603,21 +611,22 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -626,11 +635,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -639,12 +649,13 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0",
- "System.ComponentModel.Annotations": "4.1.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.Annotations": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
@@ -653,11 +664,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -666,13 +678,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -681,15 +694,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.Loader": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -698,16 +711,14 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -716,13 +727,15 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -731,19 +744,20 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Buffers": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -752,16 +766,11 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Threading": "4.0.11",
- "System.Threading.Thread": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
@@ -770,18 +779,13 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Xml.XDocument": "4.0.11"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
@@ -790,16 +794,28 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
@@ -808,13 +824,11 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -823,16 +837,17 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Principal.Windows": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Principal.Windows": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
@@ -841,30 +856,18 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
}
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Numerics.Vectors": "4.1.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "System.Threading.Timer": "4.0.1"
+ "Libuv": "1.9.1",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
@@ -873,13 +876,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll": {}
}
},
- "Microsoft.AspNetCore.Server.WebListener/1.0.0-rc2-final": {
+ "Microsoft.AspNetCore.Server.WebListener/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "Microsoft.Net.Http.Server": "1.0.0-rc2-final",
- "System.Security.Claims": "4.0.1"
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "Microsoft.Net.Http.Server": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Claims": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Server.WebListener.dll": {}
@@ -888,15 +892,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.WebListener.dll": {}
}
},
- "Microsoft.AspNetCore.Session/1.0.0": {
+ "Microsoft.AspNetCore.Session/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Security.Cryptography.Algorithms": "4.2.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.Session.dll": {}
@@ -905,14 +909,15 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Session.dll": {}
}
},
- "Microsoft.AspNetCore.StaticFiles/1.0.0": {
+ "Microsoft.AspNetCore.StaticFiles/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.dll": {}
@@ -921,12 +926,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.dll": {}
}
},
- "Microsoft.AspNetCore.TestHost/1.0.0": {
+ "Microsoft.AspNetCore.TestHost/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Net.Http": "4.1.0"
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.TestHost.dll": {}
@@ -935,15 +940,14 @@
"lib/netstandard1.3/Microsoft.AspNetCore.TestHost.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -1029,25 +1033,25 @@
"lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.0/Microsoft.CSharp.dll": {}
@@ -1070,7 +1074,7 @@
"lib/netstandard1.1/Microsoft.DiaSymReader.dll": {}
}
},
- "Microsoft.DiaSymReader.Native/1.4.0-rc2": {
+ "Microsoft.DiaSymReader.Native/1.4.0": {
"type": "package",
"runtimeTargets": {
"runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll": {
@@ -1118,6 +1122,25 @@
"lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
}
},
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "System.AppContext": "4.1.0",
+ "System.Collections": "4.0.11",
+ "System.IO": "4.1.0",
+ "System.IO.FileSystem": "4.0.1",
+ "System.Reflection.TypeExtensions": "4.1.0",
+ "System.Runtime.Extensions": "4.1.0",
+ "System.Runtime.InteropServices": "4.1.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ },
+ "compile": {
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ }
+ },
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
"type": "package",
"dependencies": {
@@ -1141,21 +1164,18 @@
"lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll": {}
}
},
- "Microsoft.EntityFrameworkCore/1.0.1": {
+ "Microsoft.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Remotion.Linq": "2.1.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.Collections.Immutable": "1.2.0",
- "System.ComponentModel.Annotations": "4.1.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.ComponentModel.Annotations": "4.3.0",
"System.Interactive.Async": "3.0.0",
- "System.Linq.Queryable": "4.0.1",
- "System.ObjectModel": "4.0.12",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0"
+ "System.Linq.Queryable": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
@@ -1164,10 +1184,11 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.InMemory/1.0.1": {
+ "Microsoft.EntityFrameworkCore.InMemory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "1.0.1"
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.InMemory.dll": {}
@@ -1176,14 +1197,14 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.InMemory.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.1": {
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Microsoft.EntityFrameworkCore": "1.0.1",
- "System.Data.Common": "4.1.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Text.RegularExpressions": "4.1.0"
+ "Microsoft.CSharp": "4.3.0",
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Data.Common": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
@@ -1192,12 +1213,13 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.SqlServer/1.0.1": {
+ "Microsoft.EntityFrameworkCore.SqlServer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "1.0.1",
- "System.Data.SqlClient": "4.1.0",
- "System.Threading.Thread": "4.0.0"
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Data.SqlClient": "4.3.0",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
@@ -1206,13 +1228,11 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -1221,14 +1241,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Linq": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -1237,17 +1256,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0": {
+ "Microsoft.Extensions.Configuration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
@@ -1256,11 +1269,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -1269,11 +1282,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
@@ -1282,10 +1296,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
- "Microsoft.Extensions.Configuration.CommandLine/1.0.0": {
+ "Microsoft.Extensions.Configuration.CommandLine/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.CommandLine.dll": {}
@@ -1294,10 +1309,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.CommandLine.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
@@ -1306,12 +1322,13 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "System.AppContext": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Threading.Thread": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
@@ -1320,15 +1337,15 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Dynamic.Runtime": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Runtime.Serialization.Primitives": "4.1.1"
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Runtime.Serialization.Primitives": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
@@ -1337,15 +1354,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -1354,16 +1367,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -1372,10 +1380,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1",
"System.Diagnostics.Debug": "4.0.11",
"System.Dynamic.Runtime": "4.0.11",
@@ -1388,12 +1396,11 @@
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -1402,10 +1409,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -1414,16 +1422,13 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.IO.FileSystem.Watcher": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -1432,14 +1437,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
@@ -1448,12 +1449,10 @@
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -1462,15 +1461,15 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Resources.Reader": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Resources.Reader": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
@@ -1479,12 +1478,11 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -1493,12 +1491,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -1507,18 +1505,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -1527,14 +1517,12 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Console": "4.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
@@ -1543,13 +1531,10 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
@@ -1558,20 +1543,13 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -1580,13 +1558,14 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0": {
+ "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Binder": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
@@ -1595,15 +1574,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.AppContext": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Reflection.TypeExtensions": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
@@ -1612,11 +1587,11 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -1642,12 +1617,13 @@
"lib/netstandard1.6/Microsoft.Extensions.Testing.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -1656,13 +1632,13 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.IdentityModel.Logging/1.0.0": {
+ "Microsoft.IdentityModel.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1"
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0"
},
"compile": {
"lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll": {}
@@ -1671,13 +1647,13 @@
"lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll": {}
}
},
- "Microsoft.IdentityModel.Protocols/2.0.0": {
+ "Microsoft.IdentityModel.Protocols/2.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Specialized": "4.0.1",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.IdentityModel.Tokens.Jwt": "5.0.0",
- "System.Net.Http": "4.1.0"
+ "System.Collections.Specialized": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0",
+ "System.IdentityModel.Tokens.Jwt": "5.1.0",
+ "System.Net.Http": "4.3.0"
},
"compile": {
"lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll": {}
@@ -1686,11 +1662,11 @@
"lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll": {}
}
},
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.0.0": {
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.IdentityModel.Protocols": "2.0.0",
- "System.Dynamic.Runtime": "4.0.11"
+ "Microsoft.IdentityModel.Protocols": "2.1.0",
+ "System.Dynamic.Runtime": "4.3.0"
},
"compile": {
"lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
@@ -1699,25 +1675,24 @@
"lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
}
},
- "Microsoft.IdentityModel.Tokens/5.0.0": {
+ "Microsoft.IdentityModel.Tokens/5.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.IdentityModel.Logging": "1.0.0",
+ "Microsoft.IdentityModel.Logging": "1.1.0",
"Newtonsoft.Json": "9.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Cng": "4.2.0",
- "System.Security.Cryptography.Csp": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
"lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll": {}
@@ -1726,17 +1701,13 @@
"lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -1745,28 +1716,17 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.Net.Http.Server/1.0.0-rc2-final": {
+ "Microsoft.Net.Http.Server/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebSockets": "4.0.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Timer": "4.0.1"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.Contracts": "4.3.0",
+ "System.Net.WebSockets": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.Net.Http.Server.dll": {}
@@ -1775,50 +1735,51 @@
"lib/netstandard1.3/Microsoft.Net.Http.Server.dll": {}
}
},
- "Microsoft.NETCore.App/1.0.1": {
+ "Microsoft.NETCore.App/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.CSharp": "4.0.1",
+ "Libuv": "1.9.1",
+ "Microsoft.CSharp": "4.3.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
"Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
- "Microsoft.NETCore.DotNetHostPolicy": "1.0.1",
- "Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
- "Microsoft.VisualBasic": "10.0.1",
- "NETStandard.Library": "1.6.0",
- "System.Buffers": "4.0.0",
- "System.Collections.Immutable": "1.2.0",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Annotations": "4.1.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Process": "4.1.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO.FileSystem.Watcher": "4.0.0",
- "System.IO.MemoryMappedFiles": "4.0.0",
- "System.IO.UnmanagedMemoryStream": "4.0.1",
- "System.Linq.Expressions": "4.1.0",
- "System.Linq.Parallel": "4.0.1",
- "System.Linq.Queryable": "4.0.1",
- "System.Net.NameResolution": "4.0.0",
- "System.Net.Requests": "4.0.11",
- "System.Net.Security": "4.0.0",
- "System.Net.WebHeaderCollection": "4.0.1",
- "System.Numerics.Vectors": "4.1.1",
- "System.Reflection.DispatchProxy": "4.0.1",
- "System.Reflection.Metadata": "1.3.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.Reader": "4.0.0",
- "System.Runtime.Loader": "4.0.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Threading.Tasks.Dataflow": "4.6.0",
- "System.Threading.Tasks.Extensions": "4.0.0",
- "System.Threading.Tasks.Parallel": "4.0.1",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10"
+ "Microsoft.DiaSymReader.Native": "1.4.0",
+ "Microsoft.NETCore.DotNetHostPolicy": "1.1.0",
+ "Microsoft.NETCore.Runtime.CoreCLR": "1.1.0",
+ "Microsoft.VisualBasic": "10.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Annotations": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Process": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO.FileSystem.Watcher": "4.3.0",
+ "System.IO.MemoryMappedFiles": "4.3.0",
+ "System.IO.UnmanagedMemoryStream": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Linq.Parallel": "4.3.0",
+ "System.Linq.Queryable": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Net.Requests": "4.3.0",
+ "System.Net.Security": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Reflection.DispatchProxy": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.Reader": "4.3.0",
+ "System.Runtime.Loader": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Threading.Tasks.Dataflow": "4.7.0",
+ "System.Threading.Tasks.Extensions": "4.3.0",
+ "System.Threading.Tasks.Parallel": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0"
},
"compile": {
"lib/netcoreapp1.0/_._": {}
@@ -1827,25 +1788,25 @@
"lib/netcoreapp1.0/_._": {}
}
},
- "Microsoft.NETCore.DotNetHost/1.0.1": {
+ "Microsoft.NETCore.DotNetHost/1.1.0": {
"type": "package"
},
- "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
+ "Microsoft.NETCore.DotNetHostPolicy/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.DotNetHostResolver": "1.0.1"
+ "Microsoft.NETCore.DotNetHostResolver": "1.1.0"
}
},
- "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
+ "Microsoft.NETCore.DotNetHostResolver/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.DotNetHost": "1.0.1"
+ "Microsoft.NETCore.DotNetHost": "1.1.0"
}
},
- "Microsoft.NETCore.Jit/1.0.4": {
+ "Microsoft.NETCore.Jit/1.1.0": {
"type": "package"
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1854,14 +1815,14 @@
"lib/netstandard1.0/_._": {}
}
},
- "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
+ "Microsoft.NETCore.Runtime.CoreCLR/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Jit": "1.0.4",
+ "Microsoft.NETCore.Jit": "1.1.0",
"Microsoft.NETCore.Windows.ApiSets": "1.0.1"
}
},
- "Microsoft.NETCore.Targets/1.0.1": {
+ "Microsoft.NETCore.Targets/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -1873,25 +1834,25 @@
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
"type": "package"
},
- "Microsoft.VisualBasic/10.0.1": {
+ "Microsoft.VisualBasic/10.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.1/Microsoft.VisualBasic.dll": {}
@@ -1900,28 +1861,28 @@
"lib/netstandard1.3/Microsoft.VisualBasic.dll": {}
}
},
- "Microsoft.Win32.Primitives/4.0.1": {
+ "Microsoft.Win32.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
}
},
- "Microsoft.Win32.Registry/4.0.0": {
+ "Microsoft.Win32.Registry/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
@@ -1937,53 +1898,53 @@
}
}
},
- "NETStandard.Library/1.6.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Console": "4.0.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.Compression.ZipFile": "4.0.1",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XDocument": "4.0.11"
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.AppContext": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Console": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.Compression.ZipFile": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
}
},
"Newtonsoft.Json/9.0.1": {
@@ -2141,11 +2102,38 @@
"lib/netstandard1.0/Remotion.Linq.dll": {}
}
},
- "runtime.native.System/4.0.0": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "debian.8-x64"
+ }
+ }
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.23-x64"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.24-x64"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2154,18 +2142,18 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Data.SqlClient.sni/4.0.0": {
+ "runtime.native.System.Data.SqlClient.sni/4.3.0": {
"type": "package",
"dependencies": {
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.0.1",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.0.1"
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.3.0",
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.3.0"
}
},
- "runtime.native.System.IO.Compression/4.1.0": {
+ "runtime.native.System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2174,11 +2162,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Http/4.0.1": {
+ "runtime.native.System.Net.Http/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2187,11 +2175,11 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Net.Security/4.0.1": {
+ "runtime.native.System.Net.Security/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2200,11 +2188,31 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"lib/netstandard1.0/_._": {}
@@ -2213,7 +2221,79 @@
"lib/netstandard1.0/_._": {}
}
},
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1": {
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.13.2-x64"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.42.1-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "rhel.7-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.14.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.10-x64"
+ }
+ }
+ },
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/win7-x64/native/sni.dll": {
@@ -2222,7 +2302,7 @@
}
}
},
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1": {
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
"type": "package",
"runtimeTargets": {
"runtimes/win7-x86/native/sni.dll": {
@@ -2231,10 +2311,10 @@
}
}
},
- "System.AppContext/4.1.0": {
+ "System.AppContext/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.AppContext.dll": {}
@@ -2243,14 +2323,14 @@
"lib/netstandard1.6/System.AppContext.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -2259,30 +2339,30 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.dll": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Concurrent.dll": {}
@@ -2291,17 +2371,17 @@
"lib/netstandard1.3/System.Collections.Concurrent.dll": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
@@ -2310,15 +2390,15 @@
"lib/netstandard1.0/System.Collections.Immutable.dll": {}
}
},
- "System.Collections.NonGeneric/4.0.1": {
+ "System.Collections.NonGeneric/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
@@ -2327,16 +2407,16 @@
"lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
}
},
- "System.Collections.Specialized/4.0.1": {
+ "System.Collections.Specialized/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.NonGeneric": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Collections.Specialized.dll": {}
@@ -2345,10 +2425,10 @@
"lib/netstandard1.3/System.Collections.Specialized.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.dll": {}
@@ -2357,20 +2437,20 @@
"lib/netstandard1.3/System.ComponentModel.dll": {}
}
},
- "System.ComponentModel.Annotations/4.1.0": {
+ "System.ComponentModel.Annotations/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.ComponentModel": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
@@ -2379,12 +2459,12 @@
"lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.ComponentModel": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
@@ -2393,24 +2473,24 @@
"lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.NonGeneric": "4.0.1",
- "System.Collections.Specialized": "4.0.1",
- "System.ComponentModel": "4.0.1",
- "System.ComponentModel.Primitives": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.NonGeneric": "4.3.0",
+ "System.Collections.Specialized": "4.3.0",
+ "System.ComponentModel": "4.3.0",
+ "System.ComponentModel.Primitives": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
@@ -2419,30 +2499,30 @@
"lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Console/4.0.0": {
+ "System.Console/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Console.dll": {}
}
},
- "System.Data.Common/4.1.0": {
+ "System.Data.Common/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Data.Common.dll": {}
@@ -2451,46 +2531,46 @@
"lib/netstandard1.2/System.Data.Common.dll": {}
}
},
- "System.Data.SqlClient/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Data.Common": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.Pipes": "4.0.0",
- "System.Linq": "4.1.0",
- "System.Net.NameResolution": "4.0.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Security": "4.0.0",
- "System.Net.Sockets": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.CodePages": "4.0.1",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "System.Threading.Timer": "4.0.1",
- "System.Xml.ReaderWriter": "4.0.11",
- "runtime.native.System.Data.SqlClient.sni": "4.0.0"
+ "System.Data.SqlClient/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Data.Common": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Pipes": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Net.NameResolution": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Security": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.CodePages": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "runtime.native.System.Data.SqlClient.sni": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Data.SqlClient.dll": {}
@@ -2506,10 +2586,10 @@
}
}
},
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
@@ -2518,25 +2598,25 @@
"lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
@@ -2572,30 +2652,30 @@
}
}
},
- "System.Diagnostics.Process/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "Microsoft.Win32.Registry": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0"
+ "System.Diagnostics.Process/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "Microsoft.Win32.Registry": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Diagnostics.Process.dll": {}
@@ -2615,15 +2695,13 @@
}
}
},
- "System.Diagnostics.StackTrace/4.0.1": {
+ "System.Diagnostics.StackTrace/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "1.2.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.IO.FileSystem": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
@@ -2632,46 +2710,45 @@
"lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
}
},
- "System.Diagnostics.Tools/4.0.1": {
+ "System.Diagnostics.Tools/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
}
},
- "System.Diagnostics.Tracing/4.1.0": {
+ "System.Diagnostics.Tracing/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
}
},
- "System.Dynamic.Runtime/4.0.11": {
+ "System.Dynamic.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
@@ -2680,38 +2757,38 @@
"lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Globalization/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.dll": {}
}
},
- "System.Globalization.Calendars/4.0.1": {
+ "System.Globalization.Calendars/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Calendars.dll": {}
}
},
- "System.Globalization.Extensions/4.0.1": {
+ "System.Globalization.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Globalization.Extensions.dll": {}
@@ -2727,10 +2804,10 @@
}
}
},
- "System.IdentityModel.Tokens.Jwt/5.0.0": {
+ "System.IdentityModel.Tokens.Jwt/5.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.IdentityModel.Tokens": "5.0.0"
+ "Microsoft.IdentityModel.Tokens": "5.1.0"
},
"compile": {
"lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll": {}
@@ -2758,36 +2835,37 @@
"lib/netstandard1.0/System.Interactive.Async.dll": {}
}
},
- "System.IO/4.1.0": {
+ "System.IO/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.IO.dll": {}
}
},
- "System.IO.Compression/4.1.0": {
+ "System.IO.Compression/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.IO.Compression": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.IO.Compression": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.dll": {}
@@ -2803,18 +2881,18 @@
}
}
},
- "System.IO.Compression.ZipFile/4.0.1": {
+ "System.IO.Compression.ZipFile/4.3.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.IO": "4.1.0",
- "System.IO.Compression": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
@@ -2823,26 +2901,26 @@
"lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
}
},
- "System.IO.FileSystem/4.0.1": {
+ "System.IO.FileSystem/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.dll": {}
}
},
- "System.IO.FileSystem.Primitives/4.0.1": {
+ "System.IO.FileSystem.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
@@ -2851,25 +2929,25 @@
"lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
}
},
- "System.IO.FileSystem.Watcher/4.0.0": {
+ "System.IO.FileSystem.Watcher/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Thread": "4.0.0",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Thread": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
@@ -2889,22 +2967,22 @@
}
}
},
- "System.IO.MemoryMappedFiles/4.0.0": {
+ "System.IO.MemoryMappedFiles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.IO.UnmanagedMemoryStream": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.IO.UnmanagedMemoryStream": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
@@ -2920,27 +2998,28 @@
}
}
},
- "System.IO.Pipes/4.0.0": {
+ "System.IO.Pipes/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Net.Sockets": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Overlapped": "4.0.1",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.Sockets": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Overlapped": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -2956,16 +3035,18 @@
}
}
},
- "System.IO.UnmanagedMemoryStream/4.0.1": {
+ "System.IO.UnmanagedMemoryStream/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
@@ -2974,14 +3055,14 @@
"lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.dll": {}
@@ -2990,26 +3071,26 @@
"lib/netstandard1.6/System.Linq.dll": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Emit.Lightweight": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Reflection.TypeExtensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Linq.Expressions.dll": {}
@@ -3018,19 +3099,19 @@
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
}
},
- "System.Linq.Parallel/4.0.1": {
+ "System.Linq.Parallel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Linq.Parallel.dll": {}
@@ -3039,17 +3120,17 @@
"lib/netstandard1.3/System.Linq.Parallel.dll": {}
}
},
- "System.Linq.Queryable/4.0.1": {
+ "System.Linq.Queryable/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Linq.Queryable.dll": {}
@@ -3058,35 +3139,35 @@
"lib/netstandard1.3/System.Linq.Queryable.dll": {}
}
},
- "System.Net.Http/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Http/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Http.dll": {}
@@ -3102,23 +3183,23 @@
}
}
},
- "System.Net.NameResolution/4.0.0": {
+ "System.Net.NameResolution/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Principal.Windows": "4.0.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Principal.Windows": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.NameResolution.dll": {}
@@ -3134,34 +3215,34 @@
}
}
},
- "System.Net.Primitives/4.0.11": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Primitives.dll": {}
}
},
- "System.Net.Requests/4.0.11": {
+ "System.Net.Requests/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Net.Http": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Net.WebHeaderCollection": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Net.WebHeaderCollection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Requests.dll": {}
@@ -3177,37 +3258,37 @@
}
}
},
- "System.Net.Security/4.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Globalization.Extensions": "4.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Security.Cryptography.X509Certificates": "4.1.0",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.ThreadPool": "4.0.10",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Security": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Net.Security/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.ThreadPool": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Security": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Security.dll": {}
@@ -3223,27 +3304,27 @@
}
}
},
- "System.Net.Sockets/4.1.0": {
+ "System.Net.Sockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Net.Primitives": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.Sockets.dll": {}
}
},
- "System.Net.WebHeaderCollection/4.0.1": {
+ "System.Net.WebHeaderCollection/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Collections": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
@@ -3252,13 +3333,13 @@
"lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
}
},
- "System.Net.WebSockets/4.0.0": {
+ "System.Net.WebSockets/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Net.WebSockets.dll": {}
@@ -3267,13 +3348,13 @@
"lib/netstandard1.3/System.Net.WebSockets.dll": {}
}
},
- "System.Numerics.Vectors/4.1.1": {
+ "System.Numerics.Vectors/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
@@ -3282,14 +3363,14 @@
"lib/netstandard1.0/System.Numerics.Vectors.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.ObjectModel.dll": {}
@@ -3298,32 +3379,32 @@
"lib/netstandard1.3/System.ObjectModel.dll": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.dll": {}
}
},
- "System.Reflection.DispatchProxy/4.0.1": {
+ "System.Reflection.DispatchProxy/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
@@ -3332,14 +3413,14 @@
"lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
}
},
- "System.Reflection.Emit/4.0.1": {
+ "System.Reflection.Emit/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.1/_._": {}
@@ -3348,12 +3429,12 @@
"lib/netstandard1.3/System.Reflection.Emit.dll": {}
}
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -3362,13 +3443,13 @@
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
}
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
+ "System.Reflection.Emit.Lightweight/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Emit.ILGeneration": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/_._": {}
@@ -3377,36 +3458,37 @@
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Extensions.dll": {}
}
},
- "System.Reflection.Metadata/1.3.0": {
+ "System.Reflection.Metadata/1.4.1": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Immutable": "1.2.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Immutable": "1.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
@@ -3415,22 +3497,22 @@
"lib/netstandard1.1/System.Reflection.Metadata.dll": {}
}
},
- "System.Reflection.Primitives/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Reflection.Primitives.dll": {}
}
},
- "System.Reflection.TypeExtensions/4.1.0": {
+ "System.Reflection.TypeExtensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
@@ -3439,14 +3521,14 @@
"lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
}
},
- "System.Resources.Reader/4.0.0": {
+ "System.Resources.Reader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Resources.Reader.dll": {}
@@ -3455,79 +3537,94 @@
"lib/netstandard1.0/System.Resources.Reader.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.dll": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Extensions.dll": {}
}
},
- "System.Runtime.Handles/4.0.1": {
+ "System.Runtime.Handles/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Handles.dll": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
- "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0"
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
},
+ "runtime": {
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
+ },
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
"assetType": "runtime",
@@ -3539,12 +3636,12 @@
}
}
},
- "System.Runtime.Loader/4.0.0": {
+ "System.Runtime.Loader/4.3.0": {
"type": "package",
"dependencies": {
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.5/System.Runtime.Loader.dll": {}
@@ -3553,13 +3650,13 @@
"lib/netstandard1.5/System.Runtime.Loader.dll": {}
}
},
- "System.Runtime.Numerics/4.0.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"dependencies": {
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0"
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Runtime.Numerics.dll": {}
@@ -3568,11 +3665,11 @@
"lib/netstandard1.3/System.Runtime.Numerics.dll": {}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
+ "System.Runtime.Serialization.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
@@ -3581,16 +3678,16 @@
"lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
}
},
- "System.Security.Claims/4.0.1": {
+ "System.Security.Claims/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Security.Principal": "4.0.1"
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Security.Principal": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Claims.dll": {}
@@ -3599,27 +3696,32 @@
"lib/netstandard1.3/System.Security.Claims.dll": {}
}
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
+ "System.Security.Cryptography.Algorithms/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
},
"runtimeTargets": {
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
"assetType": "runtime",
"rid": "unix"
@@ -3630,23 +3732,23 @@
}
}
},
- "System.Security.Cryptography.Cng/4.2.0": {
+ "System.Security.Cryptography.Cng/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Security.Cryptography.Cng.dll": {}
+ "ref/netstandard1.6/_._": {}
},
"runtimeTargets": {
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
@@ -3659,22 +3761,22 @@
}
}
},
- "System.Security.Cryptography.Csp/4.0.0": {
+ "System.Security.Cryptography.Csp/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Csp.dll": {}
@@ -3690,21 +3792,21 @@
}
}
},
- "System.Security.Cryptography.Encoding/4.0.0": {
+ "System.Security.Cryptography.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
@@ -3720,22 +3822,22 @@
}
}
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.6/_._": {}
@@ -3750,16 +3852,16 @@
}
}
},
- "System.Security.Cryptography.Primitives/4.0.0": {
+ "System.Security.Cryptography.Primitives/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
@@ -3768,34 +3870,34 @@
"lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
}
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Globalization.Calendars": "4.0.1",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.Numerics": "4.0.1",
- "System.Security.Cryptography.Algorithms": "4.2.0",
- "System.Security.Cryptography.Cng": "4.2.0",
- "System.Security.Cryptography.Csp": "4.0.0",
- "System.Security.Cryptography.Encoding": "4.0.0",
- "System.Security.Cryptography.OpenSsl": "4.0.0",
- "System.Security.Cryptography.Primitives": "4.0.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "runtime.native.System": "4.0.0",
- "runtime.native.System.Net.Http": "4.0.1",
- "runtime.native.System.Security.Cryptography": "4.0.0"
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
},
"compile": {
"ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
@@ -3811,36 +3913,36 @@
}
}
},
- "System.Security.Principal/4.0.1": {
+ "System.Security.Principal/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.0/System.Security.Principal.dll": {}
},
- "runtime": {
- "lib/netstandard1.0/System.Security.Principal.dll": {}
- }
- },
- "System.Security.Principal.Windows/4.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.Win32.Primitives": "4.0.1",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Security.Claims": "4.0.1",
- "System.Security.Principal": "4.0.1",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
- },
+ "runtime": {
+ "lib/netstandard1.0/System.Security.Principal.dll": {}
+ }
+ },
+ "System.Security.Principal.Windows/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.Win32.Primitives": "4.3.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Claims": "4.3.0",
+ "System.Security.Principal": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
"compile": {
"ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
},
@@ -3855,32 +3957,32 @@
}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.dll": {}
}
},
- "System.Text.Encoding.CodePages/4.0.1": {
+ "System.Text.Encoding.CodePages/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Handles": "4.0.1",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"ref/netstandard1.3/_._": {}
@@ -3896,28 +3998,28 @@
}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"dependencies": {
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -3926,28 +4028,23 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Text.RegularExpressions/4.1.0": {
+ "System.Text.RegularExpressions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "System.Runtime": "4.3.0"
},
"compile": {
- "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
},
"runtime": {
"lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Threading/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.dll": {}
@@ -3956,13 +4053,13 @@
"lib/netstandard1.3/System.Threading.dll": {}
}
},
- "System.Threading.Overlapped/4.0.1": {
+ "System.Threading.Overlapped/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Overlapped.dll": {}
@@ -3978,31 +4075,31 @@
}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Tasks.dll": {}
}
},
- "System.Threading.Tasks.Dataflow/4.6.0": {
+ "System.Threading.Tasks.Dataflow/4.7.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Dynamic.Runtime": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
@@ -4011,12 +4108,12 @@
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
@@ -4025,17 +4122,17 @@
"lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
}
},
- "System.Threading.Tasks.Parallel/4.0.1": {
+ "System.Threading.Tasks.Parallel/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
@@ -4044,10 +4141,10 @@
"lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
}
},
- "System.Threading.Thread/4.0.0": {
+ "System.Threading.Thread/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0"
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.Thread.dll": {}
@@ -4056,11 +4153,11 @@
"lib/netstandard1.3/System.Threading.Thread.dll": {}
}
},
- "System.Threading.ThreadPool/4.0.10": {
+ "System.Threading.ThreadPool/4.3.0": {
"type": "package",
"dependencies": {
- "System.Runtime": "4.1.0",
- "System.Runtime.Handles": "4.0.1"
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
@@ -4069,35 +4166,35 @@
"lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
}
},
- "System.Threading.Timer/4.0.1": {
+ "System.Threading.Timer/4.3.0": {
"type": "package",
"dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
},
"compile": {
"ref/netstandard1.2/System.Threading.Timer.dll": {}
}
},
- "System.Xml.ReaderWriter/4.0.11": {
+ "System.Xml.ReaderWriter/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.IO.FileSystem.Primitives": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading.Tasks": "4.0.11",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
@@ -4106,21 +4203,21 @@
"lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
}
},
- "System.Xml.XDocument/4.0.11": {
+ "System.Xml.XDocument/4.3.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tools": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11"
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0"
},
"compile": {
"ref/netstandard1.3/System.Xml.XDocument.dll": {}
@@ -4190,20 +4287,17 @@
"lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
}
},
- "xunit/2.2.0-beta2-build3300": {
+ "xunit/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.assert": "[2.2.0-beta2-build3300]",
- "xunit.core": "[2.2.0-beta2-build3300]"
+ "xunit.assert": "[2.2.0-beta4-build3444]",
+ "xunit.core": "[2.2.0-beta4-build3444]"
}
},
- "xunit.abstractions/2.0.1-rc2": {
+ "xunit.abstractions/2.0.1": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11-rc2-24027",
- "System.Diagnostics.Tools": "4.0.1-rc2-24027",
- "System.Reflection": "4.1.0-rc2-24027",
- "System.Runtime": "4.1.0-rc2-24027"
+ "NETStandard.Library": "1.6.0"
},
"compile": {
"lib/netstandard1.0/xunit.abstractions.dll": {}
@@ -4212,7 +4306,7 @@
"lib/netstandard1.0/xunit.abstractions.dll": {}
}
},
- "xunit.assert/2.2.0-beta2-build3300": {
+ "xunit.assert/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
"NETStandard.Library": "1.6.0"
@@ -4224,18 +4318,18 @@
"lib/netstandard1.0/xunit.assert.dll": {}
}
},
- "xunit.core/2.2.0-beta2-build3300": {
+ "xunit.core/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.extensibility.core": "[2.2.0-beta2-build3300]",
- "xunit.extensibility.execution": "[2.2.0-beta2-build3300]"
+ "xunit.extensibility.core": "[2.2.0-beta4-build3444]",
+ "xunit.extensibility.execution": "[2.2.0-beta4-build3444]"
}
},
- "xunit.extensibility.core/2.2.0-beta2-build3300": {
+ "xunit.extensibility.core/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
"NETStandard.Library": "1.6.0",
- "xunit.abstractions": "2.0.1-rc2"
+ "xunit.abstractions": "2.0.1"
},
"compile": {
"lib/netstandard1.0/xunit.core.dll": {}
@@ -4244,11 +4338,11 @@
"lib/netstandard1.0/xunit.core.dll": {}
}
},
- "xunit.extensibility.execution/2.2.0-beta2-build3300": {
+ "xunit.extensibility.execution/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
"NETStandard.Library": "1.6.0",
- "xunit.extensibility.core": "[2.2.0-beta2-build3300]"
+ "xunit.extensibility.core": "[2.2.0-beta4-build3444]"
},
"compile": {
"lib/netstandard1.0/xunit.execution.dotnet.dll": {}
@@ -4284,51 +4378,45 @@
"lib/netstandard1.1/xunit.runner.utility.dotnet.dll": {}
}
},
- "MusicStore.Web/1.0.0": {
+ "MusicStore.Web/1.1.0": {
"type": "project",
- "framework": ".NETCoreApp,Version=v1.0",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Authentication.Facebook": "1.0.0",
- "Microsoft.AspNetCore.Authentication.Google": "1.0.0",
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.0.0",
- "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0",
- "Microsoft.AspNetCore.Authentication.Twitter": "1.0.0",
- "Microsoft.AspNetCore.Diagnostics": "1.0.0",
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
- "Microsoft.AspNetCore.Server.WebListener": "1.0.0-rc2-final",
- "Microsoft.AspNetCore.Session": "1.0.0",
- "Microsoft.AspNetCore.StaticFiles": "1.0.0",
- "Microsoft.EntityFrameworkCore.InMemory": "1.0.1",
- "Microsoft.EntityFrameworkCore.SqlServer": "1.0.1",
- "Microsoft.Extensions.Configuration.CommandLine": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "Microsoft.Extensions.Logging.Console": "1.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
- "Microsoft.NETCore.App": "1.0.1"
- },
- "compile": {
- "netcoreapp1.0/MusicStore.Web.dll": {}
- },
- "runtime": {
- "netcoreapp1.0/MusicStore.Web.dll": {}
- }
- },
- "MyTested.AspNetCore.Mvc/1.0.0": {
+ "framework": ".NETCoreApp,Version=v1.1",
+ "dependencies": {
+ "Microsoft.AspNetCore": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Facebook": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Google": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Twitter": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Server.WebListener": "1.1.0",
+ "Microsoft.AspNetCore.Session": "1.1.0",
+ "Microsoft.AspNetCore.StaticFiles": "1.1.0",
+ "Microsoft.EntityFrameworkCore.InMemory": "1.1.0",
+ "Microsoft.EntityFrameworkCore.SqlServer": "1.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "1.1.0",
+ "Microsoft.NETCore.App": "1.1.0"
+ },
+ "compile": {
+ "netcoreapp1.1/MusicStore.Web.dll": {}
+ },
+ "runtime": {
+ "netcoreapp1.1/MusicStore.Web.dll": {}
+ }
+ },
+ "MyTested.AspNetCore.Mvc/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "MyTested.AspNetCore.Mvc.Core": "1.0.0",
- "MyTested.AspNetCore.Mvc.DependencyInjection": "1.0.0",
- "MyTested.AspNetCore.Mvc.Options": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewFeatures": "1.0.0"
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Core": "1.1.0",
+ "MyTested.AspNetCore.Mvc.DependencyInjection": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Options": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewFeatures": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.dll": {}
@@ -4337,15 +4425,15 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Abstractions/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.TestHost": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "MyTested.AspNetCore.Mvc.Configuration": "1.0.0",
- "MyTested.AspNetCore.Mvc.Licensing": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.TestHost": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Configuration": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Licensing": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
@@ -4354,11 +4442,11 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Authentication/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Authentication/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Http": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Http": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Authentication.dll": {}
@@ -4367,12 +4455,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Authentication.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Caching/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Caching/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Caching.dll": {}
@@ -4381,12 +4469,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Caching.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Configuration/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Configuration/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "1.0.0",
- "System.Collections.Concurrent": "4.0.12"
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0",
+ "System.Collections.Concurrent": "4.3.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Configuration.dll": {}
@@ -4395,11 +4483,11 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Configuration.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Controllers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Controllers/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Controllers.dll": {}
@@ -4408,13 +4496,13 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Controllers.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Core/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Core/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0",
- "MyTested.AspNetCore.Mvc.Models": "1.0.0",
- "MyTested.AspNetCore.Mvc.Routing": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Models": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Routing": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Core.dll": {}
@@ -4423,13 +4511,13 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Core.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.DataAnnotations/1.0.0": {
+ "MyTested.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "MyTested.AspNetCore.Mvc.Core": "1.0.0",
- "MyTested.AspNetCore.Mvc.ModelState": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Core": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ModelState": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.DataAnnotations.dll": {}
@@ -4438,11 +4526,11 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.DependencyInjection/1.0.0": {
+ "MyTested.AspNetCore.Mvc.DependencyInjection/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.DependencyInjection.dll": {}
@@ -4451,12 +4539,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.DependencyInjection.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.EntityFrameworkCore/1.0.0": {
+ "MyTested.AspNetCore.Mvc.EntityFrameworkCore/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.EntityFrameworkCore.InMemory": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.EntityFrameworkCore.InMemory": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.EntityFrameworkCore.dll": {}
@@ -4465,14 +4553,14 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.EntityFrameworkCore.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Helpers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Helpers/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0",
- "MyTested.AspNetCore.Mvc.Models": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewActionResults": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewComponents": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Models": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewActionResults": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewComponents": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Helpers.dll": {}
@@ -4481,12 +4569,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Helpers.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Http/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Http/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Http.dll": {}
@@ -4495,12 +4583,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Http.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Licensing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Licensing/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.4",
"dependencies": {
- "NETStandard.Library": "1.6.0",
- "System.Security.Cryptography.Csp": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Security.Cryptography.Csp": "4.3.0"
},
"compile": {
"netstandard1.4/MyTested.AspNetCore.Mvc.Licensing.dll": {}
@@ -4509,11 +4597,11 @@
"netstandard1.4/MyTested.AspNetCore.Mvc.Licensing.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Models/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Models/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Models.dll": {}
@@ -4522,12 +4610,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Models.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ModelState/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ModelState/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.ModelState.dll": {}
@@ -4536,12 +4624,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.ModelState.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Options/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Options/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.Extensions.Options": "1.0.0",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.Extensions.Options": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Options.dll": {}
@@ -4550,11 +4638,11 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Options.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Routing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Routing/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Http": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Http": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Routing.dll": {}
@@ -4563,12 +4651,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Routing.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Session/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Session/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Session": "1.0.0",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Session": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Session.dll": {}
@@ -4577,12 +4665,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Session.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.TempData/1.0.0": {
+ "MyTested.AspNetCore.Mvc.TempData/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.TempData.dll": {}
@@ -4591,15 +4679,15 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.TempData.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Universe/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Universe/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "MyTested.AspNetCore.Mvc": "1.0.0",
- "MyTested.AspNetCore.Mvc.Authentication": "1.0.0",
- "MyTested.AspNetCore.Mvc.Caching": "1.0.0",
- "MyTested.AspNetCore.Mvc.EntityFrameworkCore": "1.0.0",
- "MyTested.AspNetCore.Mvc.Session": "1.0.0"
+ "MyTested.AspNetCore.Mvc": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Authentication": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Caching": "1.1.0",
+ "MyTested.AspNetCore.Mvc.EntityFrameworkCore": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Session": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.Universe.dll": {}
@@ -4608,12 +4696,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.Universe.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewActionResults/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewActionResults/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewActionResults.dll": {}
@@ -4622,12 +4710,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewActionResults.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewComponents/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewComponents/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewComponents.dll": {}
@@ -4636,12 +4724,12 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewComponents.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewData/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewData/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewData.dll": {}
@@ -4650,17 +4738,17 @@
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewData.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewFeatures/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.DataAnnotations": "1.0.0",
- "MyTested.AspNetCore.Mvc.Helpers": "1.0.0",
- "MyTested.AspNetCore.Mvc.TempData": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewActionResults": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewComponents": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewData": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Helpers": "1.1.0",
+ "MyTested.AspNetCore.Mvc.TempData": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewActionResults": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewComponents": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewData": "1.1.0"
},
"compile": {
"netstandard1.6/MyTested.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -4702,7 +4790,7 @@
}
}
},
- "Libuv/1.9.0": {
+ "Libuv/1.9.1": {
"type": "package",
"dependencies": {
"Microsoft.NETCore.Platforms": "1.0.1"
@@ -4742,13 +4830,32 @@
}
}
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
+ "Microsoft.AspNetCore/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Diagnostics": "1.1.0",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
+ "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Logging.Console": "1.1.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
+ }
+ },
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
@@ -4757,15 +4864,16 @@
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Net.Http"
@@ -4777,12 +4885,13 @@
"lib/net451/Microsoft.AspNetCore.Authentication.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
@@ -4791,10 +4900,11 @@
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Facebook/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Facebook/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authentication.Facebook.dll": {}
@@ -4803,10 +4913,11 @@
"lib/net451/Microsoft.AspNetCore.Authentication.Facebook.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Google/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Google/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authentication.Google.dll": {}
@@ -4815,10 +4926,11 @@
"lib/net451/Microsoft.AspNetCore.Authentication.Google.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.MicrosoftAccount/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.OAuth": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {}
@@ -4827,10 +4939,11 @@
"lib/net451/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.OAuth/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.OAuth/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -4840,11 +4953,12 @@
"lib/net451/Microsoft.AspNetCore.Authentication.OAuth.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.OpenIdConnect/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.OpenIdConnect/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.0.0"
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {}
@@ -4853,10 +4967,11 @@
"lib/net451/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {}
}
},
- "Microsoft.AspNetCore.Authentication.Twitter/1.0.0": {
+ "Microsoft.AspNetCore.Authentication.Twitter/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication": "1.0.0",
+ "Microsoft.AspNetCore.Authentication": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -4866,11 +4981,12 @@
"lib/net451/Microsoft.AspNetCore.Authentication.Twitter.dll": {}
}
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
@@ -4879,13 +4995,14 @@
"lib/net451/Microsoft.AspNetCore.Authorization.dll": {}
}
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
+ "Microsoft.AspNetCore.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
@@ -4894,8 +5011,11 @@
"lib/net451/Microsoft.AspNetCore.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
},
@@ -4903,10 +5023,11 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
}
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
@@ -4915,15 +5036,16 @@
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
+ "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Security",
@@ -4937,8 +5059,11 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.dll": {}
}
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
},
@@ -4946,18 +5071,19 @@
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Reflection.Metadata": "1.3.0"
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Diagnostics.dll": {}
@@ -4966,10 +5092,10 @@
"lib/net451/Microsoft.AspNetCore.Diagnostics.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
@@ -4978,11 +5104,12 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Configuration",
@@ -4995,23 +5122,23 @@
"lib/net451/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0",
- "System.Reflection.Metadata": "1.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Reflection.Metadata": "1.4.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.dll": {}
@@ -5020,15 +5147,16 @@
"lib/net451/Microsoft.AspNetCore.Hosting.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
@@ -5037,11 +5165,12 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
@@ -5050,12 +5179,11 @@
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Text.Encodings.Web": "4.0.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
@@ -5064,15 +5192,16 @@
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http/1.0.0": {
+ "Microsoft.AspNetCore.Http/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.WebUtilities": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.WebUtilities": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
@@ -5081,11 +5210,13 @@
"lib/net451/Microsoft.AspNetCore.Http.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Features": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.AspNetCore.Http.Features": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
@@ -5094,13 +5225,14 @@
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "System.Buffers": "4.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
@@ -5109,10 +5241,11 @@
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {}
}
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
@@ -5121,12 +5254,13 @@
"lib/net451/Microsoft.AspNetCore.Http.Features.dll": {}
}
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {}
@@ -5135,12 +5269,13 @@
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {}
}
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
+ "Microsoft.AspNetCore.Identity/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Identity.dll": {}
@@ -5149,11 +5284,12 @@
"lib/net451/Microsoft.AspNetCore.Identity.dll": {}
}
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Identity": "1.0.0",
- "Microsoft.EntityFrameworkCore.Relational": "1.0.0"
+ "Microsoft.AspNetCore.Identity": "1.1.0",
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
@@ -5162,36 +5298,27 @@
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "Newtonsoft.Json": "9.0.1",
- "System.Collections.Concurrent": "4.0.12",
- "System.ComponentModel.TypeConverter": "4.1.0",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding.Extensions": "4.0.11"
+ "NETStandard.Library": "1.6.1",
+ "Newtonsoft.Json": "9.0.1"
},
"compile": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
},
"runtime": {
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll": {}
}
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
+ "Microsoft.AspNetCore.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.Globalization.CultureInfoCache": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
@@ -5200,19 +5327,20 @@
"lib/net451/Microsoft.AspNetCore.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Cors": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
@@ -5221,11 +5349,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0"
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
@@ -5234,10 +5363,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
@@ -5246,20 +5376,22 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Authorization": "1.0.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
- "Microsoft.AspNetCore.Routing": "1.0.0",
- "Microsoft.Extensions.DependencyModel": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.AspNetCore.Authorization": "1.1.0",
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Routing": "1.1.0",
+ "Microsoft.Extensions.DependencyModel": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
@@ -5268,11 +5400,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Cors": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.Cors": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
@@ -5281,11 +5414,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.ComponentModel.DataAnnotations"
@@ -5297,11 +5431,12 @@
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
+ "Microsoft.AspNetCore.JsonPatch": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
@@ -5310,13 +5445,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Localization": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Localization": "1.0.0"
+ "Microsoft.AspNetCore.Localization": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Localization": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
@@ -5325,13 +5461,14 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.1",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
+ "Microsoft.AspNetCore.Mvc.Razor.Host": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
- "Microsoft.Extensions.FileProviders.Composite": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Composite": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
@@ -5340,12 +5477,13 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Razor.Runtime": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.AspNetCore.Razor.Runtime": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
@@ -5354,13 +5492,15 @@
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "1.0.1",
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Razor": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
@@ -5369,18 +5509,19 @@
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
}
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "1.0.1",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "Microsoft.Extensions.WebEncoders": "1.0.0",
+ "Microsoft.AspNetCore.Antiforgery": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1",
- "System.Buffers": "4.0.0"
+ "System.Buffers": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -5389,8 +5530,11 @@
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
}
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
+ "Microsoft.AspNetCore.Razor/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
},
@@ -5398,11 +5542,12 @@
"lib/net451/Microsoft.AspNetCore.Razor.dll": {}
}
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Razor": "1.0.0"
+ "Microsoft.AspNetCore.Html.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Razor": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Xml",
@@ -5415,14 +5560,27 @@
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll": {}
}
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "1.1.0"
+ },
+ "compile": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
+ }
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.ObjectPool": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.Routing.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.ObjectPool": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
@@ -5431,10 +5589,11 @@
"lib/net451/Microsoft.AspNetCore.Routing.dll": {}
}
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
@@ -5443,15 +5602,16 @@
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
}
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.AspNetCore.HttpOverrides": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.AspNetCore.HttpOverrides": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
@@ -5460,16 +5620,16 @@
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
}
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
"type": "package",
"dependencies": {
- "Libuv": "1.9.0",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Numerics.Vectors": "4.1.1",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
- "System.Threading.Tasks.Extensions": "4.0.0"
+ "Libuv": "1.9.1",
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Numerics.Vectors": "4.3.0",
+ "System.Threading.Tasks.Extensions": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {}
@@ -5478,12 +5638,13 @@
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {}
}
},
- "Microsoft.AspNetCore.Server.WebListener/1.0.0-rc2-final": {
+ "Microsoft.AspNetCore.Server.WebListener/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Net.Http.Headers": "1.0.0",
- "Microsoft.Net.Http.Server": "1.0.0-rc2-final"
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "Microsoft.Net.Http.Server": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Server.WebListener.dll": {}
@@ -5492,14 +5653,15 @@
"lib/net451/Microsoft.AspNetCore.Server.WebListener.dll": {}
}
},
- "Microsoft.AspNetCore.Session/1.0.0": {
+ "Microsoft.AspNetCore.Session/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.DataProtection": "1.0.0",
- "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.DataProtection": "1.1.0",
+ "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.Session.dll": {}
@@ -5508,14 +5670,15 @@
"lib/net451/Microsoft.AspNetCore.Session.dll": {}
}
},
- "Microsoft.AspNetCore.StaticFiles/1.0.0": {
+ "Microsoft.AspNetCore.StaticFiles/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.WebEncoders": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.WebEncoders": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.StaticFiles.dll": {}
@@ -5524,10 +5687,11 @@
"lib/net451/Microsoft.AspNetCore.StaticFiles.dll": {}
}
},
- "Microsoft.AspNetCore.TestHost/1.0.0": {
+ "Microsoft.AspNetCore.TestHost/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting": "1.0.0"
+ "Microsoft.AspNetCore.Hosting": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"frameworkAssemblies": [
"System.Net.Http"
@@ -5539,12 +5703,14 @@
"lib/net451/Microsoft.AspNetCore.TestHost.dll": {}
}
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Buffers": "4.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "Microsoft.Net.Http.Headers": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll": {}
@@ -5585,7 +5751,7 @@
"lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
- "Microsoft.CSharp/4.0.1": {
+ "Microsoft.CSharp/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"Microsoft.CSharp"
@@ -5649,6 +5815,15 @@
"lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {}
}
},
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ },
+ "runtime": {
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll": {}
+ }
+ },
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
"type": "package",
"dependencies": {
@@ -5665,14 +5840,15 @@
"lib/net451/Microsoft.DotNet.ProjectModel.dll": {}
}
},
- "Microsoft.EntityFrameworkCore/1.0.1": {
+ "Microsoft.EntityFrameworkCore/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "Microsoft.Extensions.DependencyInjection": "1.0.0",
- "Microsoft.Extensions.Logging": "1.0.0",
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection": "1.1.0",
+ "Microsoft.Extensions.Logging": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Remotion.Linq": "2.1.1",
- "System.Collections.Immutable": "1.2.0",
+ "System.Collections.Immutable": "1.3.0",
"System.Interactive.Async": "3.0.0"
},
"frameworkAssemblies": [
@@ -5685,10 +5861,11 @@
"lib/net451/Microsoft.EntityFrameworkCore.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.InMemory/1.0.1": {
+ "Microsoft.EntityFrameworkCore.InMemory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "1.0.1"
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.EntityFrameworkCore.InMemory.dll": {}
@@ -5697,11 +5874,12 @@
"lib/net451/Microsoft.EntityFrameworkCore.InMemory.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.1": {
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore": "1.0.1",
- "System.Diagnostics.DiagnosticSource": "4.0.0"
+ "Microsoft.EntityFrameworkCore": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Diagnostics.DiagnosticSource": "4.3.0"
},
"frameworkAssemblies": [
"System.Data",
@@ -5714,10 +5892,11 @@
"lib/net451/Microsoft.EntityFrameworkCore.Relational.dll": {}
}
},
- "Microsoft.EntityFrameworkCore.SqlServer/1.0.1": {
+ "Microsoft.EntityFrameworkCore.SqlServer/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "1.0.1"
+ "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
@@ -5726,13 +5905,11 @@
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
}
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
@@ -5741,12 +5918,13 @@
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
@@ -5755,17 +5933,11 @@
"lib/net451/Microsoft.Extensions.Caching.Memory.dll": {}
}
},
- "Microsoft.Extensions.Configuration/1.0.0": {
+ "Microsoft.Extensions.Configuration/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
@@ -5774,11 +5946,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.Linq": "4.1.0"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
@@ -5787,11 +5959,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "System.ComponentModel.TypeConverter": "4.1.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel.TypeConverter": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
@@ -5800,10 +5973,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll": {}
}
},
- "Microsoft.Extensions.Configuration.CommandLine/1.0.0": {
+ "Microsoft.Extensions.Configuration.CommandLine/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Configuration.CommandLine.dll": {}
@@ -5812,10 +5986,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Configuration.CommandLine.dll": {}
}
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
@@ -5824,11 +5999,12 @@
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
}
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "1.0.0"
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.FileProviders.Physical": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
@@ -5837,11 +6013,12 @@
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
}
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
+ "Microsoft.Extensions.Configuration": "1.1.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
+ "NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -5851,15 +6028,11 @@
"lib/net451/Microsoft.Extensions.Configuration.Json.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
@@ -5868,16 +6041,11 @@
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
}
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
@@ -5886,10 +6054,10 @@
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.DotNet.InternalAbstractions": "1.0.0",
+ "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
"Newtonsoft.Json": "9.0.1"
},
"compile": {
@@ -5899,12 +6067,11 @@
"lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.IO": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
@@ -5913,10 +6080,11 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
@@ -5925,11 +6093,12 @@
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
}
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "1.0.0"
+ "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
@@ -5938,21 +6107,22 @@
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {}
}
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
},
"runtime": {
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {}
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll": {}
}
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
@@ -5961,13 +6131,14 @@
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {}
}
},
- "Microsoft.Extensions.Localization/1.0.0": {
+ "Microsoft.Extensions.Localization/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Localization.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Localization.dll": {}
@@ -5976,12 +6147,11 @@
"lib/net451/Microsoft.Extensions.Localization.dll": {}
}
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.CSharp": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Resources.ResourceManager": "4.0.1"
+ "Microsoft.CSharp": "4.3.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
@@ -5990,12 +6160,12 @@
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging/1.0.0": {
+ "Microsoft.Extensions.Logging/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
@@ -6004,18 +6174,10 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
}
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
"type": "package",
"dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0"
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
@@ -6024,12 +6186,12 @@
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Extensions.Logging.Console.dll": {}
@@ -6038,8 +6200,11 @@
"lib/net451/Microsoft.Extensions.Logging.Console.dll": {}
}
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
},
@@ -6047,20 +6212,13 @@
"lib/net451/Microsoft.Extensions.ObjectPool.dll": {}
}
},
- "Microsoft.Extensions.Options/1.0.0": {
+ "Microsoft.Extensions.Options/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0",
- "System.ComponentModel": "4.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.ComponentModel": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
@@ -6069,13 +6227,14 @@
"lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
}
},
- "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0": {
+ "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
- "Microsoft.Extensions.Configuration.Binder": "1.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0"
+ "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
@@ -6084,8 +6243,11 @@
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
}
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
"type": "package",
+ "dependencies": {
+ "NETStandard.Library": "1.6.1"
+ },
"compile": {
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
},
@@ -6093,11 +6255,11 @@
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {}
}
},
- "Microsoft.Extensions.Primitives/1.0.0": {
+ "Microsoft.Extensions.Primitives/1.1.0": {
"type": "package",
"dependencies": {
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
+ "NETStandard.Library": "1.6.1",
+ "System.Runtime.CompilerServices.Unsafe": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
@@ -6121,12 +6283,13 @@
"lib/net451/Microsoft.Extensions.Testing.Abstractions.dll": {}
}
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
- "Microsoft.Extensions.Options": "1.0.0",
- "System.Text.Encodings.Web": "4.0.0"
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Options": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Text.Encodings.Web": "4.3.0"
},
"compile": {
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
@@ -6135,7 +6298,7 @@
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
}
},
- "Microsoft.IdentityModel.Logging/1.0.0": {
+ "Microsoft.IdentityModel.Logging/1.1.0": {
"type": "package",
"compile": {
"lib/net451/Microsoft.IdentityModel.Logging.dll": {}
@@ -6144,10 +6307,10 @@
"lib/net451/Microsoft.IdentityModel.Logging.dll": {}
}
},
- "Microsoft.IdentityModel.Protocols/2.0.0": {
+ "Microsoft.IdentityModel.Protocols/2.1.0": {
"type": "package",
"dependencies": {
- "System.IdentityModel.Tokens.Jwt": "5.0.0"
+ "System.IdentityModel.Tokens.Jwt": "5.1.0"
},
"frameworkAssemblies": [
"System.Net.Http"
@@ -6159,10 +6322,10 @@
"lib/net451/Microsoft.IdentityModel.Protocols.dll": {}
}
},
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.0.0": {
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.IdentityModel.Protocols": "2.0.0"
+ "Microsoft.IdentityModel.Protocols": "2.1.0"
},
"compile": {
"lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
@@ -6171,10 +6334,10 @@
"lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
}
},
- "Microsoft.IdentityModel.Tokens/5.0.0": {
+ "Microsoft.IdentityModel.Tokens/5.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.IdentityModel.Logging": "1.0.0",
+ "Microsoft.IdentityModel.Logging": "1.1.0",
"Newtonsoft.Json": "9.0.1"
},
"frameworkAssemblies": [
@@ -6187,17 +6350,13 @@
"lib/net451/Microsoft.IdentityModel.Tokens.dll": {}
}
},
- "Microsoft.Net.Http.Headers/1.0.0": {
+ "Microsoft.Net.Http.Headers/1.1.0": {
"type": "package",
"dependencies": {
- "System.Buffers": "4.0.0",
- "System.Collections": "4.0.11",
- "System.Diagnostics.Contracts": "4.0.1",
- "System.Globalization": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.Encoding": "4.0.11"
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1",
+ "System.Buffers": "4.3.0",
+ "System.Diagnostics.Contracts": "4.3.0"
},
"compile": {
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
@@ -6206,11 +6365,12 @@
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
}
},
- "Microsoft.Net.Http.Server/1.0.0-rc2-final": {
+ "Microsoft.Net.Http.Server/1.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "Microsoft.Extensions.Primitives": "1.0.0"
+ "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
+ "Microsoft.Extensions.Primitives": "1.1.0",
+ "NETStandard.Library": "1.6.1"
},
"compile": {
"lib/net451/Microsoft.Net.Http.Server.dll": {}
@@ -6219,7 +6379,7 @@
"lib/net451/Microsoft.Net.Http.Server.dll": {}
}
},
- "Microsoft.NETCore.Platforms/1.0.1": {
+ "Microsoft.NETCore.Platforms/1.1.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/_._": {}
@@ -6228,6 +6388,42 @@
"lib/netstandard1.0/_._": {}
}
},
+ "NETStandard.Library/1.6.1": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tools": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.Compression": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Linq.Expressions": "4.3.0",
+ "System.Net.Http": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.ObjectModel": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Extensions": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Text.Encoding.Extensions": "4.3.0",
+ "System.Text.RegularExpressions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "System.Threading.Timer": "4.3.0",
+ "System.Xml.ReaderWriter": "4.3.0",
+ "System.Xml.XDocument": "4.3.0"
+ }
+ },
"Newtonsoft.Json/9.0.1": {
"type": "package",
"compile": {
@@ -6355,7 +6551,7 @@
"lib/net45/Remotion.Linq.dll": {}
}
},
- "System.Buffers/4.0.0": {
+ "System.Buffers/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.1/System.Buffers.dll": {}
@@ -6364,7 +6560,7 @@
"lib/netstandard1.1/System.Buffers.dll": {}
}
},
- "System.Collections/4.0.11": {
+ "System.Collections/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6377,7 +6573,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Concurrent/4.0.12": {
+ "System.Collections.Concurrent/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6389,7 +6585,7 @@
"lib/net45/_._": {}
}
},
- "System.Collections.Immutable/1.2.0": {
+ "System.Collections.Immutable/1.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
@@ -6398,7 +6594,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {}
}
},
- "System.ComponentModel/4.0.1": {
+ "System.ComponentModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6410,7 +6606,7 @@
"lib/net45/_._": {}
}
},
- "System.ComponentModel.Primitives/4.1.0": {
+ "System.ComponentModel.Primitives/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6423,10 +6619,10 @@
"lib/net45/System.ComponentModel.Primitives.dll": {}
}
},
- "System.ComponentModel.TypeConverter/4.1.0": {
+ "System.ComponentModel.TypeConverter/4.3.0": {
"type": "package",
"dependencies": {
- "System.ComponentModel.Primitives": "4.1.0"
+ "System.ComponentModel.Primitives": "4.3.0"
},
"frameworkAssemblies": [
"System",
@@ -6439,7 +6635,7 @@
"lib/net45/System.ComponentModel.TypeConverter.dll": {}
}
},
- "System.Diagnostics.Contracts/4.0.1": {
+ "System.Diagnostics.Contracts/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6448,7 +6644,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.Debug/4.0.11": {
+ "System.Diagnostics.Debug/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6460,7 +6656,7 @@
"lib/net45/_._": {}
}
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
@@ -6469,7 +6665,28 @@
"lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll": {}
}
},
- "System.Globalization/4.0.11": {
+ "System.Diagnostics.Tools/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Globalization/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6478,10 +6695,10 @@
"lib/net45/_._": {}
}
},
- "System.IdentityModel.Tokens.Jwt/5.0.0": {
+ "System.IdentityModel.Tokens.Jwt/5.1.0": {
"type": "package",
"dependencies": {
- "Microsoft.IdentityModel.Tokens": "5.0.0"
+ "Microsoft.IdentityModel.Tokens": "5.1.0"
},
"compile": {
"lib/net451/System.IdentityModel.Tokens.Jwt.dll": {}
@@ -6500,13 +6717,49 @@
"lib/net45/System.Interactive.Async.dll": {}
},
"runtime": {
- "lib/net45/System.Interactive.Async.dll": {}
+ "lib/net45/System.Interactive.Async.dll": {}
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.IO.Compression/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.IO.Compression"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.Core"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
}
},
- "System.IO/4.1.0": {
+ "System.Linq.Expressions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
- "System"
+ "System.Core"
],
"compile": {
"ref/net45/_._": {}
@@ -6515,7 +6768,7 @@
"lib/net45/_._": {}
}
},
- "System.Linq/4.1.0": {
+ "System.Linq.Queryable/4.0.1": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -6527,10 +6780,10 @@
"lib/net45/_._": {}
}
},
- "System.Linq.Expressions/4.1.0": {
+ "System.Net.Http/4.3.0": {
"type": "package",
"frameworkAssemblies": [
- "System.Core"
+ "System.Net.Http"
],
"compile": {
"ref/net45/_._": {}
@@ -6539,10 +6792,10 @@
"lib/net45/_._": {}
}
},
- "System.Linq.Queryable/4.0.1": {
+ "System.Net.Primitives/4.3.0": {
"type": "package",
"frameworkAssemblies": [
- "System.Core"
+ "System"
],
"compile": {
"ref/net45/_._": {}
@@ -6551,7 +6804,7 @@
"lib/net45/_._": {}
}
},
- "System.Numerics.Vectors/4.1.1": {
+ "System.Numerics.Vectors/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.0/System.Numerics.Vectors.dll": {}
@@ -6560,7 +6813,7 @@
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll": {}
}
},
- "System.ObjectModel/4.0.12": {
+ "System.ObjectModel/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6572,7 +6825,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection/4.1.0": {
+ "System.Reflection/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6581,7 +6834,7 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Extensions/4.0.1": {
+ "System.Reflection.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6590,10 +6843,10 @@
"lib/net45/_._": {}
}
},
- "System.Reflection.Metadata/1.3.0": {
+ "System.Reflection.Metadata/1.4.1": {
"type": "package",
"dependencies": {
- "System.Collections.Immutable": "1.2.0"
+ "System.Collections.Immutable": "1.3.0"
},
"compile": {
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
@@ -6602,7 +6855,16 @@
"lib/portable-net45+win8/System.Reflection.Metadata.dll": {}
}
},
- "System.Resources.ResourceManager/4.0.1": {
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6611,7 +6873,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime/4.1.0": {
+ "System.Runtime/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6625,7 +6887,16 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.Extensions/4.1.0": {
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System"
@@ -6637,7 +6908,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices/4.1.0": {
+ "System.Runtime.InteropServices/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6650,7 +6921,7 @@
"lib/net45/_._": {}
}
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
"type": "package",
"compile": {
"ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
@@ -6669,10 +6940,10 @@
}
}
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
+ "System.Runtime.Numerics/4.3.0": {
"type": "package",
"frameworkAssemblies": [
- "System.Runtime.Serialization"
+ "System.Numerics"
],
"compile": {
"ref/net45/_._": {}
@@ -6681,7 +6952,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding/4.0.11": {
+ "System.Text.Encoding/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6690,7 +6961,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encoding.Extensions/4.0.11": {
+ "System.Text.Encoding.Extensions/4.3.0": {
"type": "package",
"compile": {
"ref/net45/_._": {}
@@ -6699,7 +6970,7 @@
"lib/net45/_._": {}
}
},
- "System.Text.Encodings.Web/4.0.0": {
+ "System.Text.Encodings.Web/4.3.0": {
"type": "package",
"compile": {
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
@@ -6708,7 +6979,19 @@
"lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
}
},
- "System.Threading/4.0.11": {
+ "System.Text.RegularExpressions/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Threading/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System",
@@ -6721,7 +7004,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks/4.0.11": {
+ "System.Threading.Tasks/4.3.0": {
"type": "package",
"frameworkAssemblies": [
"System.Core"
@@ -6733,7 +7016,7 @@
"lib/net45/_._": {}
}
},
- "System.Threading.Tasks.Extensions/4.0.0": {
+ "System.Threading.Tasks.Extensions/4.3.0": {
"type": "package",
"compile": {
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
@@ -6742,14 +7025,47 @@
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {}
}
},
- "xunit/2.2.0-beta2-build3300": {
+ "System.Threading.Timer/4.3.0": {
+ "type": "package",
+ "compile": {
+ "ref/net451/_._": {}
+ },
+ "runtime": {
+ "lib/net451/_._": {}
+ }
+ },
+ "System.Xml.ReaderWriter/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.Xml"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "System.Xml.XDocument/4.3.0": {
+ "type": "package",
+ "frameworkAssemblies": [
+ "System.Xml.Linq"
+ ],
+ "compile": {
+ "ref/net45/_._": {}
+ },
+ "runtime": {
+ "lib/net45/_._": {}
+ }
+ },
+ "xunit/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.assert": "[2.2.0-beta2-build3300]",
- "xunit.core": "[2.2.0-beta2-build3300]"
+ "xunit.assert": "[2.2.0-beta4-build3444]",
+ "xunit.core": "[2.2.0-beta4-build3444]"
}
},
- "xunit.abstractions/2.0.1-rc2": {
+ "xunit.abstractions/2.0.1": {
"type": "package",
"compile": {
"lib/net35/xunit.abstractions.dll": {}
@@ -6758,7 +7074,7 @@
"lib/net35/xunit.abstractions.dll": {}
}
},
- "xunit.assert/2.2.0-beta2-build3300": {
+ "xunit.assert/2.2.0-beta4-build3444": {
"type": "package",
"compile": {
"lib/netstandard1.0/xunit.assert.dll": {}
@@ -6767,17 +7083,17 @@
"lib/netstandard1.0/xunit.assert.dll": {}
}
},
- "xunit.core/2.2.0-beta2-build3300": {
+ "xunit.core/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.extensibility.core": "[2.2.0-beta2-build3300]",
- "xunit.extensibility.execution": "[2.2.0-beta2-build3300]"
+ "xunit.extensibility.core": "[2.2.0-beta4-build3444]",
+ "xunit.extensibility.execution": "[2.2.0-beta4-build3444]"
}
},
- "xunit.extensibility.core/2.2.0-beta2-build3300": {
+ "xunit.extensibility.core/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.abstractions": "2.0.1-rc2"
+ "xunit.abstractions": "2.0.1"
},
"compile": {
"lib/net45/xunit.core.dll": {}
@@ -6786,10 +7102,10 @@
"lib/net45/xunit.core.dll": {}
}
},
- "xunit.extensibility.execution/2.2.0-beta2-build3300": {
+ "xunit.extensibility.execution/2.2.0-beta4-build3444": {
"type": "package",
"dependencies": {
- "xunit.extensibility.core": "[2.2.0-beta2-build3300]"
+ "xunit.extensibility.core": "[2.2.0-beta4-build3444]"
},
"compile": {
"lib/net45/xunit.execution.desktop.dll": {}
@@ -6822,33 +7138,27 @@
"lib/net45/xunit.runner.utility.desktop.dll": {}
}
},
- "MusicStore.Web/1.0.0": {
+ "MusicStore.Web/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "1.0.0",
- "Microsoft.AspNetCore.Authentication.Facebook": "1.0.0",
- "Microsoft.AspNetCore.Authentication.Google": "1.0.0",
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.0.0",
- "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.0.0",
- "Microsoft.AspNetCore.Authentication.Twitter": "1.0.0",
- "Microsoft.AspNetCore.Diagnostics": "1.0.0",
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.0.0",
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
- "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
- "Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
- "Microsoft.AspNetCore.Server.WebListener": "1.0.0-rc2-final",
- "Microsoft.AspNetCore.Session": "1.0.0",
- "Microsoft.AspNetCore.StaticFiles": "1.0.0",
- "Microsoft.EntityFrameworkCore.InMemory": "1.0.1",
- "Microsoft.EntityFrameworkCore.SqlServer": "1.0.1",
- "Microsoft.Extensions.Configuration.CommandLine": "1.0.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "Microsoft.Extensions.Logging.Console": "1.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0"
+ "Microsoft.AspNetCore": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Cookies": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Facebook": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Google": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.OpenIdConnect": "1.1.0",
+ "Microsoft.AspNetCore.Authentication.Twitter": "1.1.0",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "1.1.0",
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "Microsoft.AspNetCore.Mvc.TagHelpers": "1.1.0",
+ "Microsoft.AspNetCore.Server.WebListener": "1.1.0",
+ "Microsoft.AspNetCore.Session": "1.1.0",
+ "Microsoft.AspNetCore.StaticFiles": "1.1.0",
+ "Microsoft.EntityFrameworkCore.InMemory": "1.1.0",
+ "Microsoft.EntityFrameworkCore.SqlServer": "1.1.0",
+ "Microsoft.Extensions.Configuration.CommandLine": "1.1.0"
},
"compile": {
"net451/MusicStore.Web.dll": {}
@@ -6857,15 +7167,15 @@
"net451/MusicStore.Web.dll": {}
}
},
- "MyTested.AspNetCore.Mvc/1.0.0": {
+ "MyTested.AspNetCore.Mvc/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc": "1.0.1",
- "MyTested.AspNetCore.Mvc.Core": "1.0.0",
- "MyTested.AspNetCore.Mvc.DependencyInjection": "1.0.0",
- "MyTested.AspNetCore.Mvc.Options": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewFeatures": "1.0.0"
+ "Microsoft.AspNetCore.Mvc": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Core": "1.1.0",
+ "MyTested.AspNetCore.Mvc.DependencyInjection": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Options": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewFeatures": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.dll": {}
@@ -6874,15 +7184,15 @@
"net451/MyTested.AspNetCore.Mvc.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Abstractions/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
- "Microsoft.AspNetCore.TestHost": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "MyTested.AspNetCore.Mvc.Configuration": "1.0.0",
- "MyTested.AspNetCore.Mvc.Licensing": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Core": "1.1.0",
+ "Microsoft.AspNetCore.TestHost": "1.1.0",
+ "Microsoft.Extensions.Configuration.Json": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Configuration": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Licensing": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
@@ -6891,11 +7201,11 @@
"net451/MyTested.AspNetCore.Mvc.Abstractions.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Authentication/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Authentication/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Http": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Http": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Authentication.dll": {}
@@ -6904,12 +7214,12 @@
"net451/MyTested.AspNetCore.Mvc.Authentication.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Caching/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Caching/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.Extensions.Caching.Memory": "1.0.0",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.Extensions.Caching.Memory": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Caching.dll": {}
@@ -6918,11 +7228,11 @@
"net451/MyTested.AspNetCore.Mvc.Caching.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Configuration/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Configuration/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "1.0.0"
+ "Microsoft.Extensions.Configuration.Binder": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Configuration.dll": {}
@@ -6931,11 +7241,11 @@
"net451/MyTested.AspNetCore.Mvc.Configuration.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Controllers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Controllers/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Controllers.dll": {}
@@ -6944,13 +7254,13 @@
"net451/MyTested.AspNetCore.Mvc.Controllers.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Core/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Core/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0",
- "MyTested.AspNetCore.Mvc.Models": "1.0.0",
- "MyTested.AspNetCore.Mvc.Routing": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Models": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Routing": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Core.dll": {}
@@ -6959,13 +7269,13 @@
"net451/MyTested.AspNetCore.Mvc.Core.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.DataAnnotations/1.0.0": {
+ "MyTested.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "MyTested.AspNetCore.Mvc.Core": "1.0.0",
- "MyTested.AspNetCore.Mvc.ModelState": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Core": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ModelState": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.DataAnnotations.dll": {}
@@ -6974,11 +7284,11 @@
"net451/MyTested.AspNetCore.Mvc.DataAnnotations.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.DependencyInjection/1.0.0": {
+ "MyTested.AspNetCore.Mvc.DependencyInjection/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.DependencyInjection.dll": {}
@@ -6987,12 +7297,12 @@
"net451/MyTested.AspNetCore.Mvc.DependencyInjection.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.EntityFrameworkCore/1.0.0": {
+ "MyTested.AspNetCore.Mvc.EntityFrameworkCore/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.EntityFrameworkCore.InMemory": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.EntityFrameworkCore.InMemory": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.EntityFrameworkCore.dll": {}
@@ -7001,14 +7311,14 @@
"net451/MyTested.AspNetCore.Mvc.EntityFrameworkCore.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Helpers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Helpers/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0",
- "MyTested.AspNetCore.Mvc.Models": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewActionResults": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewComponents": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Models": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewActionResults": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewComponents": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Helpers.dll": {}
@@ -7017,12 +7327,12 @@
"net451/MyTested.AspNetCore.Mvc.Helpers.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Http/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Http/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Http.dll": {}
@@ -7031,7 +7341,7 @@
"net451/MyTested.AspNetCore.Mvc.Http.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Licensing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Licensing/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"compile": {
@@ -7041,11 +7351,11 @@
"net451/MyTested.AspNetCore.Mvc.Licensing.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Models/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Models/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Models.dll": {}
@@ -7054,12 +7364,12 @@
"net451/MyTested.AspNetCore.Mvc.Models.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ModelState/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ModelState/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.ModelState.dll": {}
@@ -7068,12 +7378,12 @@
"net451/MyTested.AspNetCore.Mvc.ModelState.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Options/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Options/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.Extensions.Options": "1.0.0",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.Extensions.Options": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Options.dll": {}
@@ -7082,11 +7392,11 @@
"net451/MyTested.AspNetCore.Mvc.Options.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Routing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Routing/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc.Http": "1.0.0"
+ "MyTested.AspNetCore.Mvc.Http": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Routing.dll": {}
@@ -7095,12 +7405,12 @@
"net451/MyTested.AspNetCore.Mvc.Routing.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Session/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Session/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Session": "1.0.0",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Session": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Session.dll": {}
@@ -7109,12 +7419,12 @@
"net451/MyTested.AspNetCore.Mvc.Session.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.TempData/1.0.0": {
+ "MyTested.AspNetCore.Mvc.TempData/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.TempData.dll": {}
@@ -7123,15 +7433,15 @@
"net451/MyTested.AspNetCore.Mvc.TempData.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.Universe/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Universe/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "MyTested.AspNetCore.Mvc": "1.0.0",
- "MyTested.AspNetCore.Mvc.Authentication": "1.0.0",
- "MyTested.AspNetCore.Mvc.Caching": "1.0.0",
- "MyTested.AspNetCore.Mvc.EntityFrameworkCore": "1.0.0",
- "MyTested.AspNetCore.Mvc.Session": "1.0.0"
+ "MyTested.AspNetCore.Mvc": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Authentication": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Caching": "1.1.0",
+ "MyTested.AspNetCore.Mvc.EntityFrameworkCore": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Session": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.Universe.dll": {}
@@ -7140,12 +7450,12 @@
"net451/MyTested.AspNetCore.Mvc.Universe.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewActionResults/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewActionResults/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Controllers": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Controllers": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.ViewActionResults.dll": {}
@@ -7154,12 +7464,12 @@
"net451/MyTested.AspNetCore.Mvc.ViewActionResults.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewComponents/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewComponents/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.ViewComponents.dll": {}
@@ -7168,12 +7478,12 @@
"net451/MyTested.AspNetCore.Mvc.ViewComponents.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewData/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewData/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.Abstractions": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Abstractions": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.ViewData.dll": {}
@@ -7182,17 +7492,17 @@
"net451/MyTested.AspNetCore.Mvc.ViewData.dll": {}
}
},
- "MyTested.AspNetCore.Mvc.ViewFeatures/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "project",
"framework": ".NETFramework,Version=v4.5.1",
"dependencies": {
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
- "MyTested.AspNetCore.Mvc.DataAnnotations": "1.0.0",
- "MyTested.AspNetCore.Mvc.Helpers": "1.0.0",
- "MyTested.AspNetCore.Mvc.TempData": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewActionResults": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewComponents": "1.0.0",
- "MyTested.AspNetCore.Mvc.ViewData": "1.0.0"
+ "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.1.0",
+ "MyTested.AspNetCore.Mvc.DataAnnotations": "1.1.0",
+ "MyTested.AspNetCore.Mvc.Helpers": "1.1.0",
+ "MyTested.AspNetCore.Mvc.TempData": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewActionResults": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewComponents": "1.1.0",
+ "MyTested.AspNetCore.Mvc.ViewData": "1.1.0"
},
"compile": {
"net451/MyTested.AspNetCore.Mvc.ViewFeatures.dll": {}
@@ -7219,12 +7529,12 @@
"runtimes/win7-x86/lib/net451/dotnet-test-xunit.exe"
]
},
- "Libuv/1.9.0": {
- "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==",
+ "Libuv/1.9.1": {
+ "sha512": "uqX2Frwf9PW8MaY7PRNY6HM5BpW1D8oj1EdqzrmbEFD5nH63Yat3aEjN/tws6Tw6Fk7LwmLBvtUh32tTeTaHiA==",
"type": "package",
- "path": "Libuv/1.9.0",
+ "path": "Libuv/1.9.1",
"files": [
- "Libuv.1.9.0.nupkg.sha512",
+ "Libuv.1.9.1.nupkg.sha512",
"Libuv.nuspec",
"License.txt",
"runtimes/debian-x64/native/libuv.so",
@@ -7237,12 +7547,21 @@
"runtimes/win7-x86/native/libuv.dll"
]
},
- "Microsoft.AspNetCore.Antiforgery/1.0.1": {
- "sha512": "MMevi8HnI5GxtNOS9ZqZLuNafltbngXsOrNqyykFveMWFN5a3AfAB7I0qU77tBS9B/N3boRQuyT9AR0BsCQbaw==",
+ "Microsoft.AspNetCore/1.1.0": {
+ "sha512": "NTTfzCLdAWwrwmeF+Djrao1O1dVOCFdvhBJr+hQpBS7aQgAUxZVOBZv7NZziQp8oIdQQ4ocoURsxs8aR/3cCMw==",
+ "type": "package",
+ "path": "Microsoft.AspNetCore/1.1.0",
+ "files": [
+ "Microsoft.AspNetCore.1.1.0.nupkg.sha512",
+ "Microsoft.AspNetCore.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Antiforgery/1.1.0": {
+ "sha512": "6HM8/rsSGAQybSZ9sNP2f0Xqh507OJu3kvqRksXeHUXV72yuwFpnauGkfIMSt+gwPSvyk8qGqZB2m4sKCUomhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Antiforgery/1.0.1",
+ "path": "Microsoft.AspNetCore.Antiforgery/1.1.0",
"files": [
- "Microsoft.AspNetCore.Antiforgery.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Antiforgery.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Antiforgery.nuspec",
"lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
"lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
@@ -7250,12 +7569,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
]
},
- "Microsoft.AspNetCore.Authentication/1.0.0": {
- "sha512": "3af/pZSoaIkZPjGPTlpvIXKDA4NCN6O7++iSO4N2rnKjC5OFHnCX5CLzRxO6721kqovIssRPo84q1HvT4IL6GQ==",
+ "Microsoft.AspNetCore.Authentication/1.1.0": {
+ "sha512": "zapEpMe6NM7S2pNYtR1OMQSHLrDPjRASIt7lktBTt6w6+0ocSxwiIoNyRiBys1VbhGJQnE9jNWjj5VpMJbnB9A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.xml",
@@ -7263,12 +7582,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.xml"
]
},
- "Microsoft.AspNetCore.Authentication.Cookies/1.0.0": {
- "sha512": "zWhEmMwAqLnQIn3eWGlfioBkKngLB/cEqhqw+jAPPrelH8nNNCnHKIoC6ZQf5oSPmpTX9vZU7XEOrpXHFxSQGw==",
+ "Microsoft.AspNetCore.Authentication.Cookies/1.1.0": {
+ "sha512": "0u+Aj0a8PmqUcU0A3ugWH1lE/8jBiww5zjCHTw5RZCTRc6/0M/AVxENDUXcBJXxsVAIkTUXi6iKY8zhFmvLWcw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.Cookies/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.Cookies/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.Cookies.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.Cookies.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.Cookies.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.Cookies.xml",
@@ -7276,12 +7595,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Cookies.xml"
]
},
- "Microsoft.AspNetCore.Authentication.Facebook/1.0.0": {
- "sha512": "fhk2tzh5rL/dOtTx5iFmm0lTUsy3Plv8wojf+AWJSNfgp1M3XxKj7RmPu8O3fBuSECTB7mu68UDjsFPCV3v/QQ==",
+ "Microsoft.AspNetCore.Authentication.Facebook/1.1.0": {
+ "sha512": "Zz4xPNBnXPe4BUKgbNWOz+MsYkBZaqSq3ObMWuoyLU1so0Mw7WsknXsplFrXvik4KljtgtlP+KjM6tX0hPHB2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.Facebook/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.Facebook/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.Facebook.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.Facebook.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.Facebook.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.Facebook.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.Facebook.xml",
@@ -7289,12 +7608,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Facebook.xml"
]
},
- "Microsoft.AspNetCore.Authentication.Google/1.0.0": {
- "sha512": "Y11elEMu4lP5qFnQ0UGbpe8d0uOlaT1KLkgDiRKpPvy1MqmtgPtVjqzvX9GG6+dJ187xY8N7Y1gWlTyAZh7rhg==",
+ "Microsoft.AspNetCore.Authentication.Google/1.1.0": {
+ "sha512": "rJX/pZzyaBivd2w56Ud35eV91UaFAQOoCE1fNLFhLiYTr8H5n3S6NC9gSEzTybuHIV+TLs+UXPJjc/L5GiUB+A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.Google/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.Google/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.Google.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.Google.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.Google.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.Google.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.Google.xml",
@@ -7302,12 +7621,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Google.xml"
]
},
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount/1.0.0": {
- "sha512": "VgDrM9usCK3Z7BAsmPKVjifjTiXgTZtstKXxwwCQ6N/FYqFu2tUtOAQZn8UyqAA7UW+iKsR26gKAVEJhfvjGWg==",
+ "Microsoft.AspNetCore.Authentication.MicrosoftAccount/1.1.0": {
+ "sha512": "WTEQBNWmtmpr1oG1zF73tOQOlgchwcdaDe+CM3aLCmoQdqvOwhtub3AgCno54MbXWa6ekZ3/WCmSIs5p4zBxUQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.MicrosoftAccount/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.MicrosoftAccount/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.MicrosoftAccount.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.MicrosoftAccount.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.MicrosoftAccount.xml",
@@ -7315,12 +7634,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.MicrosoftAccount.xml"
]
},
- "Microsoft.AspNetCore.Authentication.OAuth/1.0.0": {
- "sha512": "QZfUgJPv/jnFCZ+CJOSeAXzhYQVBe864krJcijDfTE0dspuF1+uifRJDaCuHGKSJlnsyOGVGjrBcMZLK3wnCkg==",
+ "Microsoft.AspNetCore.Authentication.OAuth/1.1.0": {
+ "sha512": "jRUrOYmi/CW1zeA+Ympgeb0s7v6MrkBuSvUmxH3Q/5vAL4hWbp6IuR54v6KtET9SWLewhTvHR2lzspYO2XuUYw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.OAuth/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.OAuth/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.OAuth.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.OAuth.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.OAuth.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.OAuth.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.OAuth.xml",
@@ -7328,12 +7647,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.OAuth.xml"
]
},
- "Microsoft.AspNetCore.Authentication.OpenIdConnect/1.0.0": {
- "sha512": "HFVAngZ1BiMYLPGqqjUitULrn6jqukHH3Hku2xpe4QlGWXQGOLOsuElF/tQm+/HNqphTO5q6lWwiwf8Dwc0KRQ==",
+ "Microsoft.AspNetCore.Authentication.OpenIdConnect/1.1.0": {
+ "sha512": "Z6IaGuZZLuItPfidghDM2KGRAwTScaI57yu7aj7Ya+UFsg5Ww623/dUx1OXU0lla0tQkTfb5DeXI2aMCBl5Ftg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.OpenIdConnect/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.OpenIdConnect/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.OpenIdConnect.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.OpenIdConnect.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.OpenIdConnect.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml",
@@ -7341,12 +7660,12 @@
"lib/netstandard1.4/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml"
]
},
- "Microsoft.AspNetCore.Authentication.Twitter/1.0.0": {
- "sha512": "uwt+QdqWsTPvEec6pLB8hFxLmFz53UfAfVk2ITAHnaS0NM0DtIuEzE5dCtS+a/nSjLqfdVrisfryjG63C2aSTw==",
+ "Microsoft.AspNetCore.Authentication.Twitter/1.1.0": {
+ "sha512": "hPXuyKfc3du4Xj3tEej/perRzp9upJxoWrK0dnlIRQNr3hEZ5XQ6PT7Eu/B4YMF/HEc9eUbMpVI/MytZfY1gtQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authentication.Twitter/1.0.0",
+ "path": "Microsoft.AspNetCore.Authentication.Twitter/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authentication.Twitter.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authentication.Twitter.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authentication.Twitter.nuspec",
"lib/net451/Microsoft.AspNetCore.Authentication.Twitter.dll",
"lib/net451/Microsoft.AspNetCore.Authentication.Twitter.xml",
@@ -7354,12 +7673,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authentication.Twitter.xml"
]
},
- "Microsoft.AspNetCore.Authorization/1.0.0": {
- "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==",
+ "Microsoft.AspNetCore.Authorization/1.1.0": {
+ "sha512": "dqveE6pqsnzkab2vw+aFExFYeCikF/T+GKZW9ki8dwJuN7M2+jJcgWtYAv83q7NjBARVh2xH8xf0ahzeuXL/WQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Authorization/1.0.0",
+ "path": "Microsoft.AspNetCore.Authorization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Authorization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Authorization.nuspec",
"lib/net451/Microsoft.AspNetCore.Authorization.dll",
"lib/net451/Microsoft.AspNetCore.Authorization.xml",
@@ -7367,12 +7686,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
]
},
- "Microsoft.AspNetCore.Cors/1.0.0": {
- "sha512": "fC8lWOU3+ltkbgQyD1P7eRQ66fGfZkPNU2UkwOI8tyF5FUsd8nRTfzvsO4mSyQfgmgfk2Hc8TGzx/okevZwXkg==",
+ "Microsoft.AspNetCore.Cors/1.1.0": {
+ "sha512": "GtBPVpgjHIO8R+0xXyh9BHTYq4+XKpwfuy9Uo2Iza4mYzfQI06CsJh5p+qkjIxQzroIXN5XNGNnVS9dURR0zBA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cors/1.0.0",
+ "path": "Microsoft.AspNetCore.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cors.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Cors.xml",
@@ -7380,12 +7699,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cors.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.Internal/1.0.0": {
- "sha512": "0btvxwOqYNpKTUQrD7LA3p6Wi0vrhfWGBVqIKPS1KtEdkCv3QoVgFO4eJYuClGDS9NXhqk7TWh46/8x8wtZHaw==",
+ "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
+ "sha512": "Oy0pgxQkusvQwIrwbHvGVZhwk59qRVKxcer6HsWw0jCEq2LoQ7mj7x7DovE5ub8UvffLYWx77NMF5uwPtkl8KA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.Internal/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.Internal.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.Internal.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.Internal.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
@@ -7393,12 +7712,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
]
},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0": {
- "sha512": "OUBTk5RS7b3+Q9Z7F1jAL9JzdWlkITNpUw8EO5Yu1sP4Rq2jaidXKLiEw7oKFbD1Wmcee2s+U/UyHQfy/og7Sw==",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0": {
+ "sha512": "cVlVvsH4/9G6AjrlXVO6unCzuFHnDCGRhPJNufOCclxpwImZUdhi+EIh09gSaCJ55gme2/Vn0ycig0cF9gKcbg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.0.0",
+ "path": "Microsoft.AspNetCore.Cryptography.KeyDerivation/1.1.0",
"files": [
- "Microsoft.AspNetCore.Cryptography.KeyDerivation.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Cryptography.KeyDerivation.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Cryptography.KeyDerivation.nuspec",
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
"lib/net451/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
@@ -7406,12 +7725,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml"
]
},
- "Microsoft.AspNetCore.DataProtection/1.0.0": {
- "sha512": "gt4URT+8ljPk0ePspLqOGPJBm+s6iMvsZqweplhf7wiZSjFiG1uYBNpQ/0dFY7wSx3NMRjekyXzCjvkGAV570g==",
+ "Microsoft.AspNetCore.DataProtection/1.1.0": {
+ "sha512": "wu8pk94CExaLvwwDSnXkTtsdL8mRxbLH8uCKbbPqbtIstSM6bOw/454OvOYKf61BB+It//ItJJYdZTy2j8Kelw==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.xml",
@@ -7419,12 +7738,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
]
},
- "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0": {
- "sha512": "h5ycDgkqmRdManmYMQVJgzNI7YtVp2X2/os1cKmdfrpfq+m9L8bMKhbd7PCksoLci+aYTOSn45khPl+hpPb9ug==",
+ "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
+ "sha512": "WW6qKPh9A5lNh/bFlXIMttlbLmm2K0O3kyZuFIlL4ShOMyhrJeCHoWPWQ+S5eUBdcuOnd9sPwhlmI5Nvb3NjMA==",
"type": "package",
- "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.DataProtection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
@@ -7432,12 +7751,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics/1.0.0": {
- "sha512": "nGmsbmax1PsMyOzeE+4UyA7dZZ4SlRa5j4eMbt1HArvUaec3Z7ldb7fASyCrC/tlpfKf9Jeruv1qy+yGyjUeQw==",
+ "Microsoft.AspNetCore.Diagnostics/1.1.0": {
+ "sha512": "7UE18ZDvn41VDLVcArv+Wb2CtwmjnPZZNFLIOBUkdffwoDfVh5llfG7e7auKjLPh6GmwB183kWMENUokxEf1gg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.nuspec",
"lib/net451/Microsoft.AspNetCore.Diagnostics.dll",
"lib/net451/Microsoft.AspNetCore.Diagnostics.xml",
@@ -7445,23 +7764,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
- "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0": {
+ "sha512": "OTLXdoqnhxGzjBewpKiil8C8RzaLMCiWjGDIkr/5kdTNhD0LGT1Dobqprqbg9nKpS99ykJisOguFDTtxpoeSFg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0": {
- "sha512": "2GE71Fc6RtjL3w+sydgaWMiGrZJfwbCcy+OZR2ax8jpzdO9E/BzXCRquMUrwP9VinTUk0NKe8b8r/6dAtg2uBA==",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0": {
+ "sha512": "vpbsk4zX7u0gvmAfdHB1E0oQXLKBouOqRXVllIQbUlo0OIzChXysOJlgvwxkepCRgP5TcF+81D19/6cHnkZ8lQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.0.0",
+ "path": "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll",
"lib/net451/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml",
@@ -7469,25 +7788,27 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml"
]
},
- "Microsoft.AspNetCore.Hosting/1.0.0": {
- "sha512": "0M7ZRAxTmGHOQV3B5Lm30VBg33uxxkPIKAxMc/C9yFBMPWPfk6V1uvb2ZL5eEPlo9/MZooITyMcGBQUHiakFjg==",
+ "Microsoft.AspNetCore.Hosting/1.1.0": {
+ "sha512": "yNiCwtCi1mYfTjLyHWQt4A3QRd84ok8XxuTP4wSnr6aT3bIzI7upstGe7diaEDirmku10qnISC/8CsMTG4xd4w==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.xml",
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll",
- "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml"
+ "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml",
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.dll",
+ "lib/netstandard1.5/Microsoft.AspNetCore.Hosting.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0": {
- "sha512": "8r6qOl1jYyC523ZKM1QNl+6ijIoYWELWm0tpEWqtTIOg9DytHJWshB7usgqiuRmfHXM0EUziR6ouFY7iP7Tuzw==",
+ "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
+ "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
@@ -7495,12 +7816,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0": {
- "sha512": "sHZyhQEoW15T9E36rfdm5Ux6a6RZB0KNM79ccf2IplWASqmlRGhX4ydU3dzQRLhkHpLx16fnWOL0KScsO6BevQ==",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
+ "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
@@ -7508,23 +7829,23 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
- "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==",
+ "Microsoft.AspNetCore.Html.Abstractions/1.1.0": {
+ "sha512": "+zN+RCEAJwzeFfsGIRkNn7NQ0/hrLEKHeKQNegqMRTr42JhuJZfPE+Negz7W/WkgFB3ZQQd9QTth9I3BDlsHzQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Html.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Html.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Html.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
"lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http/1.0.0": {
- "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==",
+ "Microsoft.AspNetCore.Http/1.1.0": {
+ "sha512": "N5ejgXmkUH/CQA+lz18HQb9cDZdA365Tm128yYyP34N46uiR9NswEDravug2DXrRiTo+2hOwPT1Tvby3Cdf6lQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http/1.0.0",
+ "path": "Microsoft.AspNetCore.Http/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.dll",
"lib/net451/Microsoft.AspNetCore.Http.xml",
@@ -7532,12 +7853,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
]
},
- "Microsoft.AspNetCore.Http.Abstractions/1.0.0": {
- "sha512": "OJHlqdJOWKKBfsiVdX4Z4KCNuqvBIu6+1MVKuejRDyHnGyMkNHNoP/dtVzhPqvJXaJg9N4HlD0XNc6GDCFVffg==",
+ "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
+ "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
@@ -7545,12 +7866,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Http.Extensions/1.0.0": {
- "sha512": "GlvCPRpnw2jjHLdbGf/C28NQZLMeX1mugv5BS1a3FCQOJYyuwQZil4JwblR0frLyVrUVoJQ7UXRNZIzEVlO5XA==",
+ "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
+ "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Extensions/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Extensions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Extensions.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
"lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
@@ -7558,12 +7879,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
]
},
- "Microsoft.AspNetCore.Http.Features/1.0.0": {
- "sha512": "6x7zgfbTo1gL9xMEb7EMO2ES/48bqwnWyfH09z+ubWhnzxdhHls8rtqstPylu5FPD9nid6Vo2pgDm5vufRAy5Q==",
+ "Microsoft.AspNetCore.Http.Features/1.1.0": {
+ "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Http.Features/1.0.0",
+ "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
"files": [
- "Microsoft.AspNetCore.Http.Features.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Http.Features.nuspec",
"lib/net451/Microsoft.AspNetCore.Http.Features.dll",
"lib/net451/Microsoft.AspNetCore.Http.Features.xml",
@@ -7571,12 +7892,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
]
},
- "Microsoft.AspNetCore.HttpOverrides/1.0.0": {
- "sha512": "gHpdaaAzhaTWJZuJVo3ler2zzdQWrm8wnsoSjcNtoZZdTOkwImndRwK8o4GYoM18dfmfNheM7i4EENI7XHM/lA==",
+ "Microsoft.AspNetCore.HttpOverrides/1.1.0": {
+ "sha512": "nvNbiYTQZhOWIT9zjhbzIMJTRwcJXGx8DqzMRKcrlGeRNG9ysa3M/hEBrxAp8NKIJeVtnp/n46MhLgmx0CLJWw==",
"type": "package",
- "path": "Microsoft.AspNetCore.HttpOverrides/1.0.0",
+ "path": "Microsoft.AspNetCore.HttpOverrides/1.1.0",
"files": [
- "Microsoft.AspNetCore.HttpOverrides.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.HttpOverrides.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.HttpOverrides.nuspec",
"lib/net451/Microsoft.AspNetCore.HttpOverrides.dll",
"lib/net451/Microsoft.AspNetCore.HttpOverrides.xml",
@@ -7584,12 +7905,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.xml"
]
},
- "Microsoft.AspNetCore.Identity/1.0.0": {
- "sha512": "qQXsxDocbx3xMPBVBZ2Es6vw5QalV+z9mGXUPbn/XRbjY1viwQjVToE7BrCanqr7q97ds0ciI2AgQhvny0kkqw==",
+ "Microsoft.AspNetCore.Identity/1.1.0": {
+ "sha512": "M2W5Y0Nd1GLY0M4TYph6zptPp7dhdrMALx1CP4g8iCU5G148j2rRTwMd3o5699+8M8Brtx5cOGiSThadVFKMuQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Identity/1.0.0",
+ "path": "Microsoft.AspNetCore.Identity/1.1.0",
"files": [
- "Microsoft.AspNetCore.Identity.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Identity.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Identity.nuspec",
"lib/net451/Microsoft.AspNetCore.Identity.dll",
"lib/net451/Microsoft.AspNetCore.Identity.xml",
@@ -7597,12 +7918,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.xml"
]
},
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0": {
- "sha512": "+TX5cTpqRqqjWRHM0BHM02pLv0a5jo+Ai73aLQKKqZOZT/GJgvIyTM1sLeY2ybbfNaEzps8AMFb0r3KzRY11yA==",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0": {
+ "sha512": "ZFZmB6PxNw2dnER96m6iTVLaG5SWH/95reGVgGzwwATxRMzIEMmFdRWNCgSpKUdHsPEyDg9Xd9FLRHFiQsG9jw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.0.0",
+ "path": "Microsoft.AspNetCore.Identity.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Identity.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Identity.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
"lib/net451/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
@@ -7610,23 +7931,25 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml"
]
},
- "Microsoft.AspNetCore.JsonPatch/1.0.0": {
- "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==",
+ "Microsoft.AspNetCore.JsonPatch/1.1.0": {
+ "sha512": "/mADp5Q1I3oeptoCF8mmAFDMGvlDCLSBatsKCXxk5vQYZUyzOLxoiHgW5QowgIdwnd3AHPmFDib5vm8U2B6q7g==",
"type": "package",
- "path": "Microsoft.AspNetCore.JsonPatch/1.0.0",
+ "path": "Microsoft.AspNetCore.JsonPatch/1.1.0",
"files": [
- "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.JsonPatch.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.JsonPatch.nuspec",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll",
- "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml"
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/net451/Microsoft.AspNetCore.JsonPatch.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.JsonPatch.xml"
]
},
- "Microsoft.AspNetCore.Localization/1.0.0": {
- "sha512": "DF/maMd9f6ZPoTlU8n6/AGm3fpZNPiiip34bPrBQuloX2a5O0KwyV72qKhJhJNqmVVnDnTu8XYT16ysoFXRxQA==",
+ "Microsoft.AspNetCore.Localization/1.1.0": {
+ "sha512": "Px52xLst9/G4dyGt3fSTIZU3aZoz0IOVoInW/M1WRCOM5DzCkLzPYXOHMpQkc8ZVx7YZmHnB8p9IrvNNyjPO6A==",
"type": "package",
- "path": "Microsoft.AspNetCore.Localization/1.0.0",
+ "path": "Microsoft.AspNetCore.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Localization.xml",
@@ -7634,12 +7957,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc/1.0.1": {
- "sha512": "Perrv2s4hzMbYR/kanzUqcfzxXLo6CThoilhMg7UQXeXEvOtpbDKx0HGimN/pt6Dy2wt3WOQAjAiM1Z8KoRgaA==",
+ "Microsoft.AspNetCore.Mvc/1.1.0": {
+ "sha512": "TDcIjBQRfYAkbcvlU+lMHC0RpuTTSzULEdA0+HvoGgHz6y0Q4wo8CEAWpaRjvt3y3mneuq56d6CReMleFDDd5Q==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.xml",
@@ -7647,12 +7970,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
- "sha512": "Xa9XOA/NEIGSUSyAtc0rQrTRJKcxN8rzvBy0QJn2tRAXVeXc0Lbx4/1ia9kxyn3ygbjhF6bO90ZnC3Z3a2cq5g==",
+ "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0": {
+ "sha512": "r0OA3N1Onua8AcTtFYpK03K3WdwJBL3iFW4XzfMA49ZmAKGf1ARAlrt6Q8WCdBI7nFDJCc1/bdMJ0ozWaq9rhA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Abstractions.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
@@ -7660,12 +7983,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1": {
- "sha512": "ntjDDV+g6eveL67fsvGIY7BqZmaR2XYlZpsrXxzjSWKSYBzDfWaUJna5dsPty0hOwz7DCMNbWYrpD+XEr+H0jA==",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0": {
+ "sha512": "cS2ZVqnh9Db3JU5zgw0SRKSYJ/0aYfLDeYRpgJGwjwMsMNa9pw4JK1H3NLkhs7zRAtoet6asXMEZwqFtO/STbw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ApiExplorer/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ApiExplorer.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ApiExplorer.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ApiExplorer.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
@@ -7673,12 +7996,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ApiExplorer.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
- "sha512": "TfUFH0HYbL3DCGkWE24gUDnHoa3pCr4b6xbUiQTnqIbIXdL79qW8mTtfD+RHmAN5bsf1J1fndJJ84/jKri+kiw==",
+ "Microsoft.AspNetCore.Mvc.Core/1.1.0": {
+ "sha512": "6Gxoe6MJPbc9yVx7IEkDlzfNRzQ+JSvlVmFvugoNbpWAefU2F8d76aj7oiGewucXVI8c7oZ1Q0+rx7059j7/fA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Core/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Core/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Core.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Core.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Core.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
@@ -7686,12 +8009,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Cors/1.0.1": {
- "sha512": "s3Pabc4x5K1xtCpNv/oVAuFyj2Lq+z+qYkmrRqbnqVt+8V39FoW3znPjbVCNu5CjrYSQL2fm3irJ3pM7WLsI/g==",
+ "Microsoft.AspNetCore.Mvc.Cors/1.1.0": {
+ "sha512": "0E+RHtEsYwzkbXvLVC81Vu8Mtp24BC9RMuN8RGjeWzwRHDeZaY9erGtoei/2GiFj+3DpqvCzFsRhKp/yVCzrOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Cors/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Cors/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Cors.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Cors.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Cors.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Cors.xml",
@@ -7699,12 +8022,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Cors.xml"
]
},
- "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
- "sha512": "y3QkHvOI+vopfhncU9NpUH2MvtZ2Z0EfnApb92jqbmfWL1wd5Np3SHrFSXgI4zVLlM38dMa/QU2SYM3e4T7fFQ==",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0": {
+ "sha512": "kV7IfXeoehKpX0zPrjZ/B1RKnHSKQfmOnXKxupGXuNY64Ly2JgJh+XAxPLQtYy2jUIwRG3PWNhVkWZIazq82wg==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.DataAnnotations.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
@@ -7712,12 +8035,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
- "sha512": "wM12hSUlF0Eqed44psOYT4fY/RRjMx049A4bBUfqiGr1UFU54zTR8djRLW0dIp1w7Xv5WQ/bgG9jyqiaRbv6jg==",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0": {
+ "sha512": "NHPfvDnqA21/2pa5Uxe7vfO2sZ1sTafSR/L1pGhQxjTUnVQ2k0X3M3wFKPpM9UH9co9Bx3KjV0AcurbfEaCQvA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Formatters.Json.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
@@ -7725,12 +8048,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Localization/1.0.1": {
- "sha512": "s6Q7l9UtJ/sYxvsbjXuA+5RdKQ70OSLQSLs+UAWrwMtHm9XKTr51gmcG1t1gkWN5f39WSkzJs2brB9fJkFcgvw==",
+ "Microsoft.AspNetCore.Mvc.Localization/1.1.0": {
+ "sha512": "XDLAPLW5hdkO8h6Ki4Du/Dw5NUfIsiDDoyaHkzDL5gX5TxOot0bdw/QClIQ65SJqpjuvIZxZXrJV/MFDKwjZ2g==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Localization/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Localization/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Localization.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Localization.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Localization.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Localization.xml",
@@ -7738,12 +8061,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Localization.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor/1.0.1": {
- "sha512": "Rc1dkP5LZcuxicrmUTFMfrRF8+id9iVSOA3/DjhO036b7g7BBvknLHKtbbsQ59COB9D8fr9MwKF2Eb99TSCJvg==",
+ "Microsoft.AspNetCore.Mvc.Razor/1.1.0": {
+ "sha512": "GKfZhs4I14auXrlOcUHyHVx1zOLt3MeVw2KcABFD8Y8jyVOELj/mnIucREBG73Us4HcT127qenBFkdkz6F/SOQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.xml",
@@ -7751,12 +8074,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.xml"
]
},
- "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1": {
- "sha512": "7A9D7ufew8iYmhK/3w05ZdTGGOi9oNzAqy0BJNNF2rm2n9uImquzPmmoCWXFnar7QawVzhXE+ZMSXRUH9n6Glg==",
+ "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0": {
+ "sha512": "9Qi+KEVkmGfXXjfsciKRVJU/EOVm2AYMZuaDiFCJslEll/OTzXnTlKerj4jFbxB3PB1VRqwPL/HIawRGUouruA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.Razor.Host/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.Razor.Host.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.Razor.Host.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.Razor.Host.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.xml",
@@ -7764,12 +8087,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Razor.Host.xml"
]
},
- "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1": {
- "sha512": "QadZAsqoIc2D5zceTdLtNnyJALkdhoTIiqvlDlO0SgyPBisyUe4gDEiygwSnLzm8NZ+kKSFhNuX+t+b1O2uIVw==",
+ "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0": {
+ "sha512": "qQz5KEv097INfR7T9Q9kiEi2MY3jdGthU9XW5N6UFrHgFGjMZwra/oCyu/9DsTueW+4zk0cCo5SCneXwHR9uRA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.TagHelpers/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.TagHelpers.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.TagHelpers.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.TagHelpers.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
@@ -7777,12 +8100,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.TagHelpers.xml"
]
},
- "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
- "sha512": "1zGeF76JEqvocxdM+H5n/vJunUUVNzKK4LmgnaFdrrCDTrI6MVdok+8TBBUbeI+uNk3ssrLnP3EcHIdvxl66gw==",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0": {
+ "sha512": "Odd9+gRi4DCH3RalGZEdS0xLRcUh8LV9UTCnOVjGwotI1i6Fk2VSxtkAxrVRMd44BL0WfRqJFiTkCixxA2zFig==",
"type": "package",
- "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1",
+ "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.1.0",
"files": [
- "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Mvc.ViewFeatures.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
"lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
@@ -7790,12 +8113,12 @@
"lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
]
},
- "Microsoft.AspNetCore.Razor/1.0.0": {
- "sha512": "+vhlFn8n45hj1M91HYVm2ryLMZ+ZYR/OUdBVE8aUzkvkTVF+3UnNxSY3hAEugcgcbf9/XQTE+DDxEgN4LdYEjg==",
+ "Microsoft.AspNetCore.Razor/1.1.0": {
+ "sha512": "hChh+W6UG0C8aink3KWuX7flFuAiTPrCBfh68fbRJ1sLPk0ELmj6c3zm+VgNXaHEh2OpT/O0eN5XpS1rQ/FcbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.dll",
"lib/net451/Microsoft.AspNetCore.Razor.xml",
@@ -7803,12 +8126,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Razor.xml"
]
},
- "Microsoft.AspNetCore.Razor.Runtime/1.0.0": {
- "sha512": "hsq6xJeqDDb78akZuy79QE3kaCxcigD3vccbIaNrrz7JSXOzayfteF06ToK+J1SXSDRtrBj3XZZfrjiqIY/vCw==",
+ "Microsoft.AspNetCore.Razor.Runtime/1.1.0": {
+ "sha512": "hQW8+DRFHCHmTzviW54umnBfX1vc9bv/390r62k85LQsUd5Lo59QQ+IyD5fe6o9g/h946IF8Yl25wd6dEk7YqA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Razor.Runtime/1.0.0",
+ "path": "Microsoft.AspNetCore.Razor.Runtime/1.1.0",
"files": [
- "Microsoft.AspNetCore.Razor.Runtime.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Razor.Runtime.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Razor.Runtime.nuspec",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll",
"lib/net451/Microsoft.AspNetCore.Razor.Runtime.xml",
@@ -7816,12 +8139,25 @@
"lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.xml"
]
},
- "Microsoft.AspNetCore.Routing/1.0.0": {
- "sha512": "NvFvRtYHXWjBbXz5/7F7JDNcdhrE+tG1/Q9R6LmMxFgu8tkl1bqtFZQbMy17FYFkmm8Fn/T81blRGE2nxCbDRA==",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0": {
+ "sha512": "Mdj0FP6fP44sYaSRmhUBEpOXnN3kykpd0/8e48iEoSybId5x5XreIeDEEhTYF+r/QA7H8Y33fjVR1cP996OgDA==",
+ "type": "package",
+ "path": "Microsoft.AspNetCore.ResponseCaching.Abstractions/1.1.0",
+ "files": [
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.1.1.0.nupkg.sha512",
+ "Microsoft.AspNetCore.ResponseCaching.Abstractions.nuspec",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/net451/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
+ "lib/netstandard1.3/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml"
+ ]
+ },
+ "Microsoft.AspNetCore.Routing/1.1.0": {
+ "sha512": "wrD6DOWc4/euIujz7trLrF3zGVMxOGKRPzYl4e2NFOE/uXz95EnNBHkNuN0Xcgx3xVcb08TMxkoFNT3A+WC0XA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing/1.0.0",
+ "path": "Microsoft.AspNetCore.Routing/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.dll",
"lib/net451/Microsoft.AspNetCore.Routing.xml",
@@ -7829,12 +8165,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
]
},
- "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
- "sha512": "Ne5CFiD1xCGSHrGICw7PsVnj7gijfkMfsw52AO6ingcUhE01dc87cJPpfGLnY22MIvqn11ECLbNZYmzFp/Rs+A==",
+ "Microsoft.AspNetCore.Routing.Abstractions/1.1.0": {
+ "sha512": "/kaFZW4AjHPOIMnqXHGl/KdHxUGOVm9z/U0t3JtKmK5OFnsfuLsUIH2QN2PtXNeOm1eh5Ux2XEyg6YRBgXfPgA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.0",
+ "path": "Microsoft.AspNetCore.Routing.Abstractions/1.1.0",
"files": [
- "Microsoft.AspNetCore.Routing.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Routing.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Routing.Abstractions.nuspec",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
"lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
@@ -7842,12 +8178,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
]
},
- "Microsoft.AspNetCore.Server.IISIntegration/1.0.0": {
- "sha512": "xmn6EivvL4Ymo7LP+Jc49WLcIiYsUiujZo0loEbAg473nY2dIHxcxncpFAKzPf/MzqN0qBtaXEP0igYJ813H3Q==",
+ "Microsoft.AspNetCore.Server.IISIntegration/1.1.0": {
+ "sha512": "Z/K/RsUUh6Cfc8W+uP0IeXu8NJP/7li+E3ep+u4t9McrDUdJMrfgfBSPC5SrrUkTZjrt9udQS6JLrB6v3b8pag==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.IISIntegration/1.0.0",
+ "path": "Microsoft.AspNetCore.Server.IISIntegration/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.IISIntegration.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.IISIntegration.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.IISIntegration.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll",
"lib/net451/Microsoft.AspNetCore.Server.IISIntegration.xml",
@@ -7855,12 +8191,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.xml"
]
},
- "Microsoft.AspNetCore.Server.Kestrel/1.0.1": {
- "sha512": "GrTVDsRR6j2WrrTuNsZkG1R8aV1UbsA8TKUD+MKVSpXIoEpQNryCT181Zu94CARowQwFQdW4Q1DwfO4FdAhXiQ==",
+ "Microsoft.AspNetCore.Server.Kestrel/1.1.0": {
+ "sha512": "PbVYQUVxOwtrl9YCnw8ykXSufELVeEuASYahVh1F7B4LYVtcqwyV5+FhXlJkboGM4ozKMrdhB5w/tlLLcmHxNA==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.Kestrel/1.0.1",
+ "path": "Microsoft.AspNetCore.Server.Kestrel/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.Kestrel.1.0.1.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.Kestrel.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.Kestrel.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll",
"lib/net451/Microsoft.AspNetCore.Server.Kestrel.xml",
@@ -7868,12 +8204,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.xml"
]
},
- "Microsoft.AspNetCore.Server.WebListener/1.0.0-rc2-final": {
- "sha512": "/kX2X6wJj+yhm+LYFrSlQx6gjM/bQ3OAmB7Y4NsjEg8zqDa+v0dI/NrENxvBYKxcMG3r9lEthnADPoOobjjTBg==",
+ "Microsoft.AspNetCore.Server.WebListener/1.1.0": {
+ "sha512": "FFtd0Y9VG5GIyzlb7uNmktx4BkrnADiVydhvuQ5sVXaoyDAQmPthdbOiUKKw/rCXmgZVN0NnsWIdvmG136aJEw==",
"type": "package",
- "path": "Microsoft.AspNetCore.Server.WebListener/1.0.0-rc2-final",
+ "path": "Microsoft.AspNetCore.Server.WebListener/1.1.0",
"files": [
- "Microsoft.AspNetCore.Server.WebListener.1.0.0-rc2-final.nupkg.sha512",
+ "Microsoft.AspNetCore.Server.WebListener.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Server.WebListener.nuspec",
"lib/net451/Microsoft.AspNetCore.Server.WebListener.dll",
"lib/net451/Microsoft.AspNetCore.Server.WebListener.xml",
@@ -7881,12 +8217,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Server.WebListener.xml"
]
},
- "Microsoft.AspNetCore.Session/1.0.0": {
- "sha512": "RPoUeyNC0OXCcelURzsf5PZnrFC97HNUhQJMMEhBjmDNSAhFpKxgLJydKC3J/G7FxPkO4ciXu37zafPlA8AZqw==",
+ "Microsoft.AspNetCore.Session/1.1.0": {
+ "sha512": "69jU5B/xMqHqSN5e/57hGB2NdFMlYp6ATrXJGeAkWqcrRBuMuD4z/Sc22iq4qeI13kdcJ+bIDYNmK5gPNik2xQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.Session/1.0.0",
+ "path": "Microsoft.AspNetCore.Session/1.1.0",
"files": [
- "Microsoft.AspNetCore.Session.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.Session.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.Session.nuspec",
"lib/net451/Microsoft.AspNetCore.Session.dll",
"lib/net451/Microsoft.AspNetCore.Session.xml",
@@ -7894,12 +8230,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.Session.xml"
]
},
- "Microsoft.AspNetCore.StaticFiles/1.0.0": {
- "sha512": "pXiUBJtpO0fIlGEg/ESykhbIZ2+I+9Y+3qXzN19zZDDF+tD88eATg3A5MHMXu/VmqaROLfvpGJmJ6uOLUGsBVQ==",
+ "Microsoft.AspNetCore.StaticFiles/1.1.0": {
+ "sha512": "6LQh5KChqjtPbHeDy91fvwoupL+dW9PYAOaj6ohULmEnR2c2y+IpsIxHADSDJ42hlJ5oFLG+t/xsdbdwQvEsgQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.StaticFiles/1.0.0",
+ "path": "Microsoft.AspNetCore.StaticFiles/1.1.0",
"files": [
- "Microsoft.AspNetCore.StaticFiles.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.StaticFiles.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.StaticFiles.nuspec",
"lib/net451/Microsoft.AspNetCore.StaticFiles.dll",
"lib/net451/Microsoft.AspNetCore.StaticFiles.xml",
@@ -7907,12 +8243,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.StaticFiles.xml"
]
},
- "Microsoft.AspNetCore.TestHost/1.0.0": {
- "sha512": "z2rOPiCMzRgFO318xDg2iyXeY/3hRHwL0Es/o6/qzLvrW/psLV+Qlh/50mWBZX8clVcRM8r5nTSE+m3lkYOddw==",
+ "Microsoft.AspNetCore.TestHost/1.1.0": {
+ "sha512": "0q+jjIMwgs3hcZWI95Y3YUfL4P/MZYltC59vGQbO78ozwthNvanDBBCvaM/awJ8PVL4CWiSmo8BOgL0HskE57A==",
"type": "package",
- "path": "Microsoft.AspNetCore.TestHost/1.0.0",
+ "path": "Microsoft.AspNetCore.TestHost/1.1.0",
"files": [
- "Microsoft.AspNetCore.TestHost.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.TestHost.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.TestHost.nuspec",
"lib/net451/Microsoft.AspNetCore.TestHost.dll",
"lib/net451/Microsoft.AspNetCore.TestHost.xml",
@@ -7920,12 +8256,12 @@
"lib/netstandard1.3/Microsoft.AspNetCore.TestHost.xml"
]
},
- "Microsoft.AspNetCore.WebUtilities/1.0.0": {
- "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==",
+ "Microsoft.AspNetCore.WebUtilities/1.1.0": {
+ "sha512": "9w3aHPRUAx+1xOTcsZF6AJCS42viNqWeTcgIE1dmlK/G3NCFkes+MVxwvKt9U9pFIomxqRnD+MGRoBeruEKPbQ==",
"type": "package",
- "path": "Microsoft.AspNetCore.WebUtilities/1.0.0",
+ "path": "Microsoft.AspNetCore.WebUtilities/1.1.0",
"files": [
- "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512",
+ "Microsoft.AspNetCore.WebUtilities.1.1.0.nupkg.sha512",
"Microsoft.AspNetCore.WebUtilities.nuspec",
"lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
"lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
@@ -7934,7 +8270,7 @@
]
},
"Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
+ "sha512": "jICz4qN7C8Hq8d5UF0LzqeOTqJMuy21cRDCW8N8K3yiojIhQQ+hAwlcUp7yh4gJOcqh7iEWg/5jlZmXbefO00Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
"files": [
@@ -7950,7 +8286,7 @@
]
},
"Microsoft.CodeAnalysis.Common/1.3.0": {
- "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==",
+ "sha512": "hVgAQZDvOO8LpuhAO557wlqwivTSTstAIIknHTK8y62utH9PgdwEey0TDzJRanReEMTFR3bzdvoFXOe2/X6BGw==",
"type": "package",
"path": "Microsoft.CodeAnalysis.Common/1.3.0",
"files": [
@@ -7966,7 +8302,7 @@
]
},
"Microsoft.CodeAnalysis.CSharp/1.3.0": {
- "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==",
+ "sha512": "8fqBJ4I+IH71mTs+F2w9U/UpJz2pbuO+9XicOxN1pUWU6UZlPgRMwS8e+rcnJp5sgz7tXrB2JoCoP3JuKTHBvg==",
"type": "package",
"path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
"files": [
@@ -7982,7 +8318,7 @@
]
},
"Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
- "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==",
+ "sha512": "yfjw7wLtMSV6HjE2/j3vQp+ZtEbR4cMof7cbcWXPah/8XbMVueIS9GOp9HjxWOLTTQWz6uHxeetk36JCeKOR/Q==",
"type": "package",
"path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0",
"files": [
@@ -7997,12 +8333,12 @@
"lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml"
]
},
- "Microsoft.CSharp/4.0.1": {
- "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
+ "Microsoft.CSharp/4.3.0": {
+ "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
"type": "package",
- "path": "Microsoft.CSharp/4.0.1",
+ "path": "Microsoft.CSharp/4.3.0",
"files": [
- "Microsoft.CSharp.4.0.1.nupkg.sha512",
+ "Microsoft.CSharp.4.3.0.nupkg.sha512",
"Microsoft.CSharp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8085,6 +8421,22 @@
"runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
]
},
+ "Microsoft.DiaSymReader.Native/1.4.0": {
+ "sha512": "6HpEBMxIi9KJHKnF2ISRy3HsxhRYL1/CdnXGBqSWOUE8uaY5gthzStdQdbPVFxsKCNwsYcfRc11RXjLVvGF5bQ==",
+ "type": "package",
+ "path": "Microsoft.DiaSymReader.Native/1.4.0",
+ "files": [
+ "Microsoft.DiaSymReader.Native.1.4.0.nupkg.sha512",
+ "Microsoft.DiaSymReader.Native.nuspec",
+ "build/Microsoft.DiaSymReader.Native.props",
+ "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll",
+ "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll",
+ "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll",
+ "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
+ ]
+ },
"Microsoft.DotNet.InternalAbstractions/1.0.0": {
"sha512": "AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==",
"type": "package",
@@ -8096,6 +8448,17 @@
"lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
]
},
+ "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
+ "sha512": "Bl6KYfbFSIW3QIRHAp931iR5h01qHjKghdpAtncwbzNUs0+IUZ+XfwkIU0sQsR33ufGvi3u4dZMIYYFysjpHAA==",
+ "type": "package",
+ "path": "Microsoft.DotNet.PlatformAbstractions/1.1.0",
+ "files": [
+ "Microsoft.DotNet.PlatformAbstractions.1.1.0.nupkg.sha512",
+ "Microsoft.DotNet.PlatformAbstractions.nuspec",
+ "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll",
+ "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll"
+ ]
+ },
"Microsoft.DotNet.ProjectModel/1.0.0-rc3-003121": {
"sha512": "wnWw5KsKinG2wWxdoQIJXZlMFvPNhL7WmIyW9q6xrZFUi/uld5PC3ksq2QDZepF148FUjCIyTP+TnRwU3RJqUg==",
"type": "package",
@@ -8107,12 +8470,12 @@
"lib/netstandard1.6/Microsoft.DotNet.ProjectModel.dll"
]
},
- "Microsoft.EntityFrameworkCore/1.0.1": {
- "sha512": "bprn1t+6muzkNzh64Art4w20L1FKDFac/Tx4h+4d7Sd9ivRqAaec6MqU700CFo6h6CHjAjWeqzYjQFroCouECQ==",
+ "Microsoft.EntityFrameworkCore/1.1.0": {
+ "sha512": "S00vr6pLeoCMbm1PsXNZIceCAA/TUX83W3f2PcLFLGrx2QnGo5aqhtYjHvBhOVKJXZmt52EKEdORoTZVZ/swww==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.dll",
"lib/net451/Microsoft.EntityFrameworkCore.xml",
@@ -8120,12 +8483,12 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml"
]
},
- "Microsoft.EntityFrameworkCore.InMemory/1.0.1": {
- "sha512": "vzlJO6R49b2pat3bkt6+9kGIYGvu48U3gOMIgcdAHbGUbBi0RNOG3XH06pVNfdPF1QVZJdB/VuiwJIY4a3GUqg==",
+ "Microsoft.EntityFrameworkCore.InMemory/1.1.0": {
+ "sha512": "b7rNBaQ2DhJkcElVxC1bwQNO21zD9K16YaNOjdH+TBWf7xkN8TPYbCPU1hL3IlnrBz3p5XKZSoDs9W1T64oALQ==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.InMemory/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore.InMemory/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.InMemory.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.InMemory.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.InMemory.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.InMemory.dll",
"lib/net451/Microsoft.EntityFrameworkCore.InMemory.xml",
@@ -8133,12 +8496,12 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.InMemory.xml"
]
},
- "Microsoft.EntityFrameworkCore.Relational/1.0.1": {
- "sha512": "2LZ746BTMSoAHsqsxFAVYVzo/ziS682z2evAxDnwwg1Fw27MuxqEjl38YWz5OE1TchmtEPxWWVcup+sL6rjPXg==",
+ "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
+ "sha512": "5LkSh1GHK/ZbI/2N6YxyofFKaAVe5/RBN38G6UQzOQVgfJxzucpJVyZt1mGHBkJ4yTlr4WQS9Wr3Ppa5X0opbw==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.Relational/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore.Relational/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.Relational.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.Relational.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.Relational.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.dll",
"lib/net451/Microsoft.EntityFrameworkCore.Relational.xml",
@@ -8146,12 +8509,12 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml"
]
},
- "Microsoft.EntityFrameworkCore.SqlServer/1.0.1": {
- "sha512": "L2G/T2mRUzHN9IrUBh6uz5s0oISR3qmMajAqi+poG1O3swxfxWsvo+dzGcbhyieJN4tT756mw1hzXzfJ8vDx0w==",
+ "Microsoft.EntityFrameworkCore.SqlServer/1.1.0": {
+ "sha512": "3Cg6izj0vvFBG4qenxeUMmFvhdW6bUBH9OqqK1s+f7IvEpgRuxz5vb1e5H15PodzxUziXOLG6je69JMC0Axuig==",
"type": "package",
- "path": "Microsoft.EntityFrameworkCore.SqlServer/1.0.1",
+ "path": "Microsoft.EntityFrameworkCore.SqlServer/1.1.0",
"files": [
- "Microsoft.EntityFrameworkCore.SqlServer.1.0.1.nupkg.sha512",
+ "Microsoft.EntityFrameworkCore.SqlServer.1.1.0.nupkg.sha512",
"Microsoft.EntityFrameworkCore.SqlServer.nuspec",
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll",
"lib/net451/Microsoft.EntityFrameworkCore.SqlServer.xml",
@@ -8159,23 +8522,23 @@
"lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.xml"
]
},
- "Microsoft.Extensions.Caching.Abstractions/1.0.0": {
- "sha512": "IxlFDVOchL6tdR05bk7EiJvMtvZrVkZXBhkbXqc3GxOHOrHFGcN+92WoWFPeBpdpy8ot/Px5ZdXzt7k+2n1Bdg==",
+ "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
+ "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
]
},
- "Microsoft.Extensions.Caching.Memory/1.0.0": {
- "sha512": "6+7zTufCnZ+tfrUo7RbIRR3LB0BxwOwxfXuo0IbLyIvgoToGpWuz5wYEDfCYNOvpig9tY8FA0I1uRHYmITMXMQ==",
+ "Microsoft.Extensions.Caching.Memory/1.1.0": {
+ "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
"type": "package",
- "path": "Microsoft.Extensions.Caching.Memory/1.0.0",
+ "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
"files": [
- "Microsoft.Extensions.Caching.Memory.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Caching.Memory.nuspec",
"lib/net451/Microsoft.Extensions.Caching.Memory.dll",
"lib/net451/Microsoft.Extensions.Caching.Memory.xml",
@@ -8183,56 +8546,56 @@
"lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml"
]
},
- "Microsoft.Extensions.Configuration/1.0.0": {
- "sha512": "hR4yYebruRp6qyFnV3RW4qrnEb0J1LnMmQbj50AUA423V8dMs4E3YAohsyRyGBFnpbJ+KKzieSG/n2A6T0klZQ==",
+ "Microsoft.Extensions.Configuration/1.1.0": {
+ "sha512": "iqp8UepCsS902j0kPO/d7hrd9PSyK7l84UFlpqdV8QY+/pMUY5k8wlAIuN6mWdW97HI8a8BJyvjhJbJps2GwZw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration/1.0.0",
+ "path": "Microsoft.Extensions.Configuration/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.dll",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.xml"
]
},
- "Microsoft.Extensions.Configuration.Abstractions/1.0.0": {
- "sha512": "nJ+Et/rnDMDmGhxvFAKdN3va7y+YDPICv1nUEP8I4IKgOkWwr/dCZHMqxVhJFrkbW9ux8Kd7erC4mvxfZh0WnA==",
+ "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
+ "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
]
},
- "Microsoft.Extensions.Configuration.Binder/1.0.0": {
- "sha512": "kK8QuBcPQtmKJCkC9enc1uMRFa++mPTuVNm2K5jDVXcAYKRBcFSbdEBvIe1JIgA6dEsAQeqjfHfKSaUJ8f5NFQ==",
+ "Microsoft.Extensions.Configuration.Binder/1.1.0": {
+ "sha512": "1dTFEL493MfC5O7MNaElQBhX4txb9ivSmTMwB3qDqEJHXnnUdgThTChn32FjhLIA6Fn7YXjqkZzAB/LdZEKupw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Binder/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Binder/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Binder.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Binder.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Binder.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.dll",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.Binder.xml"
]
},
- "Microsoft.Extensions.Configuration.CommandLine/1.0.0": {
- "sha512": "ofxSCmUb2phEzIF0J+ZZaMLvVEgSENjIQMghY/bLePXdAH2Q7Lpl1q2fMqkp5rYc6gnkUsup7a04VGfKqwnpsA==",
+ "Microsoft.Extensions.Configuration.CommandLine/1.1.0": {
+ "sha512": "buL5gD1M4TZpr8/NB8QF47GwP83ra2KEPOP3oMD8/0Is9WQdzJGKLxziUJ4t+oAA3+b27UrQ4yAYtpSV5HT6Gw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.CommandLine/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.CommandLine/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.CommandLine.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.CommandLine.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.CommandLine.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.CommandLine.dll",
"lib/netstandard1.1/Microsoft.Extensions.Configuration.CommandLine.xml"
]
},
- "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0": {
- "sha512": "A0yqS98VtPNlFkFI7YBlwkAekUHE/9mMeNc+K4RmgTjCrskuk6pX3LGhDU7aD5CPYc9Px7M2To/2u4xDSnRikg==",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0": {
+ "sha512": "7AWmPQoX4Kx0Kf4VAig5yKbCziHjO6F2povXeToOaWuZnKahi5qXCG7wrWtATFrheOQLfkrqxxLyarTP3J1mnA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.EnvironmentVariables/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.EnvironmentVariables.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
"lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
@@ -8240,12 +8603,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.xml"
]
},
- "Microsoft.Extensions.Configuration.FileExtensions/1.0.0": {
- "sha512": "MO7XtmLiqnpgVTX34uzFPvIS7jPmBUGLN0MP5MsYu6CqYTIs90ULjtrV5TegH5mTqKTXWjZRGXL26R6apTyc4w==",
+ "Microsoft.Extensions.Configuration.FileExtensions/1.1.0": {
+ "sha512": "jZRdMHops4npC8qKFEmqw6QODfA5h50sUYBIyB31DICzYSp+IQyvf5yb1zwW2x1EFuUEMv+aWZi1WDDc7JPdqA==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.FileExtensions/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.FileExtensions/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.FileExtensions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.FileExtensions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.FileExtensions.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll",
"lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml",
@@ -8253,12 +8616,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.xml"
]
},
- "Microsoft.Extensions.Configuration.Json/1.0.0": {
- "sha512": "KRyEOe5/Xi3qyDMdEVh++e2pQRsI6C3wzINVExOcu9lOsFmXK/k4qOf244fyo59rnn6s5xKnIW3WbhxWS1hu2w==",
+ "Microsoft.Extensions.Configuration.Json/1.1.0": {
+ "sha512": "QmHQbrOoVxXblM2x9NzGPbX3XpQGTCXiO6jZghx4KqUxPfJMS0VgBlgOUnLAz7sJyx3GvhUG6SEX6Xz70dpwDw==",
"type": "package",
- "path": "Microsoft.Extensions.Configuration.Json/1.0.0",
+ "path": "Microsoft.Extensions.Configuration.Json/1.1.0",
"files": [
- "Microsoft.Extensions.Configuration.Json.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Configuration.Json.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Configuration.Json.nuspec",
"lib/net451/Microsoft.Extensions.Configuration.Json.dll",
"lib/net451/Microsoft.Extensions.Configuration.Json.xml",
@@ -8266,67 +8629,68 @@
"lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.xml"
]
},
- "Microsoft.Extensions.DependencyInjection/1.0.0": {
- "sha512": "zdtkiZNV6LB8xtpmfyUjP/9N9ZCL/ydQ+0bfjun38fbrk+MDEm9M2yeLzRdq+OIt5xExw/KU04wFaVwJ1bhQPg==",
+ "Microsoft.Extensions.DependencyInjection/1.1.0": {
+ "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
"lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
]
},
- "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0": {
- "sha512": "+XwaNo3o9RhLQhUnnOBCaukeRi1X9yYc0Fzye9RlErSflKZdw0VgHtn6rvKo0FTionsW0x8QVULhKH+nkqVjQA==",
+ "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
+ "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
]
},
- "Microsoft.Extensions.DependencyModel/1.0.0": {
- "sha512": "n55Y2T4qMgCNMrJaqAN+nlG2EH4XL+e9uxIg4vdFsQeF+L8UKxRdD3C35Bt+xk3vO3Zwp3g+6KFq2VPH2COSmg==",
+ "Microsoft.Extensions.DependencyModel/1.1.0": {
+ "sha512": "TG7dJ8GY1Myz9lZ8DJL4i6D05ncJQBi5CjBMXMdJ4edKxaW+vP2DndDd1jJabdMdmVRdGrvybzqkB+A6Df7eDw==",
"type": "package",
- "path": "Microsoft.Extensions.DependencyModel/1.0.0",
+ "path": "Microsoft.Extensions.DependencyModel/1.1.0",
"files": [
- "Microsoft.Extensions.DependencyModel.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.DependencyModel.1.1.0.nupkg.sha512",
"Microsoft.Extensions.DependencyModel.nuspec",
"lib/net451/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
"lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
]
},
- "Microsoft.Extensions.FileProviders.Abstractions/1.0.0": {
- "sha512": "4jsqTxG3py/hYSsOtZMkNJ2/CQqPdpwyK7bDUkrwHgqowCFSmx/C+R4IzQ+2AK2Up1fVcu+ldC0gktwidL828A==",
+ "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
+ "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
]
},
- "Microsoft.Extensions.FileProviders.Composite/1.0.0": {
- "sha512": "4nbDQfagNr1eILXSFZbTNuAKuZ6SsOyK6ySTMryo67ECi8+EcZBQ12E0aXcxX/aT3v+3pbWSt71NXlEm8tKIxw==",
+ "Microsoft.Extensions.FileProviders.Composite/1.1.0": {
+ "sha512": "S6vQ4HcjYKAmPqyuGNDQ1ILBaTx7SnDvfg/Dby+s55dXNI2WA/blkeIufbDm0MukALsukWya9mdbe7upWj8U5g==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Composite/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Composite/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Composite.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Composite.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Composite.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll",
"lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.xml"
]
},
- "Microsoft.Extensions.FileProviders.Physical/1.0.0": {
- "sha512": "Ej5hGWtK3xM9YU+B2O8EdlMcJf5utbDQs9ecnfvwhENQeeNU7iI2jjnRB2d7V6o9SQZmNHPzdPvaNb3PlSMz+Q==",
+ "Microsoft.Extensions.FileProviders.Physical/1.1.0": {
+ "sha512": "ckyGwMGd4v1nE70wZ7ytax+Ef9WHQ6IcE4apLYG4um6Dfcw/Y6QJY0Fcv3Ck9WK/Uj0YMxHnNCZH6MBp6boeEw==",
"type": "package",
- "path": "Microsoft.Extensions.FileProviders.Physical/1.0.0",
+ "path": "Microsoft.Extensions.FileProviders.Physical/1.1.0",
"files": [
- "Microsoft.Extensions.FileProviders.Physical.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileProviders.Physical.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileProviders.Physical.nuspec",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.dll",
"lib/net451/Microsoft.Extensions.FileProviders.Physical.xml",
@@ -8334,36 +8698,36 @@
"lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml"
]
},
- "Microsoft.Extensions.FileSystemGlobbing/1.0.0": {
- "sha512": "scXp1Y+hmhQKLe57Z7cSjsAEFtE4zSHHydkg1SpvG56nWwWQVpVcRAbRZsv1qIBR5/vNB4LA9xiOKnvKO/Halg==",
+ "Microsoft.Extensions.FileSystemGlobbing/1.1.0": {
+ "sha512": "/NKs5LrUCUARfFbGik/ML5L2YnN33XTf+TUyghjhCzl9HlvLA4l6s3bW+xsbCU0GEmI/MottEEhiDa1dLJJh4A==",
"type": "package",
- "path": "Microsoft.Extensions.FileSystemGlobbing/1.0.0",
+ "path": "Microsoft.Extensions.FileSystemGlobbing/1.1.0",
"files": [
- "Microsoft.Extensions.FileSystemGlobbing.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.FileSystemGlobbing.1.1.0.nupkg.sha512",
"Microsoft.Extensions.FileSystemGlobbing.nuspec",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.dll",
+ "lib/net45/Microsoft.Extensions.FileSystemGlobbing.xml",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll",
"lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml"
]
},
- "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
- "sha512": "nxGoN8o+4clQk103krYRqS5FVVCZc3Tlc09AYj4W8gZ9Q5Jxa2BLW7ss+ogKU/hvNSg2NkJyQTfi9SegGU6ssQ==",
+ "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0": {
+ "sha512": "KAuadrKH0hLZGXfLO/+L6bv4vIeOYpQTjglR5Tu4hm9TJ8sVcPf11qIoU+BXSwalXiaJuazSI9fxbyoIVBsX4A==",
"type": "package",
- "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0",
+ "path": "Microsoft.Extensions.Globalization.CultureInfoCache/1.1.0",
"files": [
- "Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Globalization.CultureInfoCache.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Globalization.CultureInfoCache.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll",
"lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml"
]
},
- "Microsoft.Extensions.Localization/1.0.0": {
- "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==",
+ "Microsoft.Extensions.Localization/1.1.0": {
+ "sha512": "1DWqIC1k383XaQ3h+WxyKYmerLHDYH7TY7mDcglylG3Wq+zlX3/UUhUEKO0Ft8RKCLxLh/LhIa9NBvM3cYzLIg==",
"type": "package",
- "path": "Microsoft.Extensions.Localization/1.0.0",
+ "path": "Microsoft.Extensions.Localization/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.nuspec",
"lib/net451/Microsoft.Extensions.Localization.dll",
"lib/net451/Microsoft.Extensions.Localization.xml",
@@ -8371,45 +8735,45 @@
"lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
]
},
- "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
- "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==",
+ "Microsoft.Extensions.Localization.Abstractions/1.1.0": {
+ "sha512": "8KkP9veQupIfAEQFLLQFTo75s2fVKOM9SWeHhdSSUD35uD8DX1zOXAUsuaXwQY8cyt6mSUR5zuUEkgbZXnUKCA==",
"type": "package",
- "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Localization.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Localization.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Localization.Abstractions.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
"lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging/1.0.0": {
- "sha512": "0mDuASVrd/nMeBYIJSK+9lT3TSmWxUXP/ipVB1pF1ApMN5fqGCckPTNwmOfT4Z9wPkXGnhbwFTGrxZvbzTWxOg==",
+ "Microsoft.Extensions.Logging/1.1.0": {
+ "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
"type": "package",
- "path": "Microsoft.Extensions.Logging/1.0.0",
+ "path": "Microsoft.Extensions.Logging/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
]
},
- "Microsoft.Extensions.Logging.Abstractions/1.0.0": {
- "sha512": "wHT6oY50q36mAXBRKtFaB7u07WxKC5u2M8fi3PqHOOnHyUo9gD0u1TlCNR8UObHQxKMYwqlgI8TLcErpt29n8A==",
+ "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
+ "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Abstractions/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Abstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Abstractions.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
"lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
]
},
- "Microsoft.Extensions.Logging.Console/1.0.0": {
- "sha512": "GN4gFFONP12KbFEG9rNFpXuz6D2Tybcm8+c1wilaQ1eSl9zVX0gVRrKw/YRwxdwbM3eK7nWfRRqJaQPzOjtLnA==",
+ "Microsoft.Extensions.Logging.Console/1.1.0": {
+ "sha512": "MkFjLvtMdYN1g3NesmkeuQ56f/LuQS46PvjhbF1rUoH9L1ZM3/uteuTknVDUryeWlh18oh6ew7Xo9H50KWPAog==",
"type": "package",
- "path": "Microsoft.Extensions.Logging.Console/1.0.0",
+ "path": "Microsoft.Extensions.Logging.Console/1.1.0",
"files": [
- "Microsoft.Extensions.Logging.Console.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Logging.Console.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Logging.Console.nuspec",
"lib/net451/Microsoft.Extensions.Logging.Console.dll",
"lib/net451/Microsoft.Extensions.Logging.Console.xml",
@@ -8417,12 +8781,12 @@
"lib/netstandard1.3/Microsoft.Extensions.Logging.Console.xml"
]
},
- "Microsoft.Extensions.ObjectPool/1.0.0": {
- "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==",
+ "Microsoft.Extensions.ObjectPool/1.1.0": {
+ "sha512": "8tg7DpFubtj98Lf+N+zpu5VXe9EHCPrqcukpsjC9BSfcnC0Oq8CUZKYUsLScS2pnqEkSNHwuHoWRtJ6xhMO/xg==",
"type": "package",
- "path": "Microsoft.Extensions.ObjectPool/1.0.0",
+ "path": "Microsoft.Extensions.ObjectPool/1.1.0",
"files": [
- "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.ObjectPool.1.1.0.nupkg.sha512",
"Microsoft.Extensions.ObjectPool.nuspec",
"lib/net451/Microsoft.Extensions.ObjectPool.dll",
"lib/net451/Microsoft.Extensions.ObjectPool.xml",
@@ -8430,34 +8794,34 @@
"lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
]
},
- "Microsoft.Extensions.Options/1.0.0": {
- "sha512": "SdP3yPKF++JTkoa91pBDiE70uQkR/gdXWzOnMPbSj+eOqY1vgY+b8RVl+gh7TrJ2wlCK2QqnQtvCQlPPZRK36w==",
+ "Microsoft.Extensions.Options/1.1.0": {
+ "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
"type": "package",
- "path": "Microsoft.Extensions.Options/1.0.0",
+ "path": "Microsoft.Extensions.Options/1.1.0",
"files": [
- "Microsoft.Extensions.Options.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Options.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Options.dll",
"lib/netstandard1.0/Microsoft.Extensions.Options.xml"
]
},
- "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0": {
- "sha512": "ov+cv1w81/lVrjqorjSpUvTzJhRVFu2GSRyRQYcGfGWPwrCz6473YoiqK/XNbeBmmF9VVyGPHVMubAH+Atsr3g==",
+ "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0": {
+ "sha512": "loehh0znbtZw+mqk2VY7VyJu7t7N2TvEjSpln0Twkli/rF26HcxWQ3rdSvSr66yOCt7Dnur6DcW6HWXfa2u/PA==",
"type": "package",
- "path": "Microsoft.Extensions.Options.ConfigurationExtensions/1.0.0",
+ "path": "Microsoft.Extensions.Options.ConfigurationExtensions/1.1.0",
"files": [
- "Microsoft.Extensions.Options.ConfigurationExtensions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Options.ConfigurationExtensions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Options.ConfigurationExtensions.nuspec",
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
"lib/netstandard1.1/Microsoft.Extensions.Options.ConfigurationExtensions.xml"
]
},
- "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
- "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==",
+ "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
+ "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
"type": "package",
- "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0",
+ "path": "Microsoft.Extensions.PlatformAbstractions/1.1.0",
"files": [
- "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.PlatformAbstractions.1.1.0.nupkg.sha512",
"Microsoft.Extensions.PlatformAbstractions.nuspec",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
"lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
@@ -8465,12 +8829,12 @@
"lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
]
},
- "Microsoft.Extensions.Primitives/1.0.0": {
- "sha512": "3q2vzfKEDjL6JFkRpk5SFA3zarYsO6+ZYgoucNImrUMzDn0mFbEOL5p9oPoWiypwypbJVVjWTf557bXZ0YFLig==",
+ "Microsoft.Extensions.Primitives/1.1.0": {
+ "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
"type": "package",
- "path": "Microsoft.Extensions.Primitives/1.0.0",
+ "path": "Microsoft.Extensions.Primitives/1.1.0",
"files": [
- "Microsoft.Extensions.Primitives.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
"Microsoft.Extensions.Primitives.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
"lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
@@ -8487,36 +8851,34 @@
"lib/netstandard1.6/Microsoft.Extensions.Testing.Abstractions.dll"
]
},
- "Microsoft.Extensions.WebEncoders/1.0.0": {
- "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==",
+ "Microsoft.Extensions.WebEncoders/1.1.0": {
+ "sha512": "YnUfcLe/FYL3Mft5HPv7dSSKfZZCZwLG2GQfv3vuxdY4AbWOYLqq/3wIPCNIrgMXvzralWdkESNsb9iw5gKdpg==",
"type": "package",
- "path": "Microsoft.Extensions.WebEncoders/1.0.0",
+ "path": "Microsoft.Extensions.WebEncoders/1.1.0",
"files": [
- "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512",
+ "Microsoft.Extensions.WebEncoders.1.1.0.nupkg.sha512",
"Microsoft.Extensions.WebEncoders.nuspec",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
"lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
]
},
- "Microsoft.IdentityModel.Logging/1.0.0": {
- "sha512": "8lt3q7o9xSLyKfja/D2J67N8EZLwISjXktkwxK275yOrZY16iNCHCWqtDVP1M/DHuC/LWFMoheF3lmaJC9UXQg==",
+ "Microsoft.IdentityModel.Logging/1.1.0": {
+ "sha512": "Dv3G9GIdKyCc4xJjZECQosRJ9//4q/yXmb0vOUOjN1XpkCcHEt5UJ5S4zm8yJR+5tLODA159G2QtVNtK1RsAXw==",
"type": "package",
- "path": "Microsoft.IdentityModel.Logging/1.0.0",
+ "path": "Microsoft.IdentityModel.Logging/1.1.0",
"files": [
- "Microsoft.IdentityModel.Logging.1.0.0.nupkg.sha512",
+ "Microsoft.IdentityModel.Logging.1.1.0.nupkg.sha512",
"Microsoft.IdentityModel.Logging.nuspec",
"lib/net451/Microsoft.IdentityModel.Logging.dll",
- "lib/net451/Microsoft.IdentityModel.Logging.xml",
- "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
- "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml"
+ "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll"
]
},
- "Microsoft.IdentityModel.Protocols/2.0.0": {
- "sha512": "dHV39tCYxj8yMySDOUhNGakFQSNl3PZcweBWevtHyUeX/8UbroL0sQUHNjE38/UE0c4RS43WvWn+GO39R0PqOA==",
+ "Microsoft.IdentityModel.Protocols/2.1.0": {
+ "sha512": "yi7uK5JL5JL66Srnj96vMge7ZMCUM2rTVC6P43cORSCaY+3/motXH+3/8o/T/Xpirv7gAOkRPxGwgARcsuRWPw==",
"type": "package",
- "path": "Microsoft.IdentityModel.Protocols/2.0.0",
+ "path": "Microsoft.IdentityModel.Protocols/2.1.0",
"files": [
- "Microsoft.IdentityModel.Protocols.2.0.0.nupkg.sha512",
+ "Microsoft.IdentityModel.Protocols.2.1.0.nupkg.sha512",
"Microsoft.IdentityModel.Protocols.nuspec",
"lib/net451/Microsoft.IdentityModel.Protocols.dll",
"lib/net451/Microsoft.IdentityModel.Protocols.xml",
@@ -8524,12 +8886,12 @@
"lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml"
]
},
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.0.0": {
- "sha512": "0TVkFvDN2fnDt7DelqZ5w7SEwpOiCycNc/CV1ZZjFEBY0Kn4EwG100Lhf7nvylm5CrgiDWYHb6Db8hnDDTpiWg==",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.1.0": {
+ "sha512": "ZqlqwWZ3ce1v/ivSnfMSTfSlZqM6lZbN6BhnwF92ZNvtFMWKp5cpymlzxEx0h7qzGHf15fEQZGWe7rLHx//tQw==",
"type": "package",
- "path": "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.0.0",
+ "path": "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.1.0",
"files": [
- "Microsoft.IdentityModel.Protocols.OpenIdConnect.2.0.0.nupkg.sha512",
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect.2.1.0.nupkg.sha512",
"Microsoft.IdentityModel.Protocols.OpenIdConnect.nuspec",
"lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
"lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
@@ -8537,12 +8899,12 @@
"lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml"
]
},
- "Microsoft.IdentityModel.Tokens/5.0.0": {
- "sha512": "VwNw+fm2nlbkL3GRO8b6WBlqs6M4q9Dft0CAg0TMHUYwuiU+4dciiIlZRC6q/HEcllKUvc0KDXt20n2PGcO1pA==",
+ "Microsoft.IdentityModel.Tokens/5.1.0": {
+ "sha512": "Hg1+IbP0F9oQ8qIxQobKoOczrwufYMNHrSXj+xF1+4VCpvymhyvpVcgLqi5GOie1qcQYp/yBy04dpBImemVXKg==",
"type": "package",
- "path": "Microsoft.IdentityModel.Tokens/5.0.0",
+ "path": "Microsoft.IdentityModel.Tokens/5.1.0",
"files": [
- "Microsoft.IdentityModel.Tokens.5.0.0.nupkg.sha512",
+ "Microsoft.IdentityModel.Tokens.5.1.0.nupkg.sha512",
"Microsoft.IdentityModel.Tokens.nuspec",
"lib/net451/Microsoft.IdentityModel.Tokens.dll",
"lib/net451/Microsoft.IdentityModel.Tokens.xml",
@@ -8550,23 +8912,23 @@
"lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml"
]
},
- "Microsoft.Net.Http.Headers/1.0.0": {
- "sha512": "1lr92itF1fKR2oEQ6gk1IUsuCgp7UMlf/b1sjlAyuDeUnttj39ra59GQHYpomglJX1UVNpi1/cSBbEsXoNeIhw==",
+ "Microsoft.Net.Http.Headers/1.1.0": {
+ "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
"type": "package",
- "path": "Microsoft.Net.Http.Headers/1.0.0",
+ "path": "Microsoft.Net.Http.Headers/1.1.0",
"files": [
- "Microsoft.Net.Http.Headers.1.0.0.nupkg.sha512",
+ "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
"Microsoft.Net.Http.Headers.nuspec",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
"lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
]
},
- "Microsoft.Net.Http.Server/1.0.0-rc2-final": {
- "sha512": "P604NPBc1/GIdGOs//GyJEqpyIOtDAHv7wNug5XIzDTsQYf9sq8tFhaMenekNluKP4aJww034BrTl95O0oHddQ==",
+ "Microsoft.Net.Http.Server/1.1.0": {
+ "sha512": "Hbw0lG3aY3BxGFru83IT6M1K85tZImyfQkQI5DoPIjtOQ2fmoqsP/xE0kvUB+fG12znVdVRcoByKoex1fyVCfQ==",
"type": "package",
- "path": "Microsoft.Net.Http.Server/1.0.0-rc2-final",
+ "path": "Microsoft.Net.Http.Server/1.1.0",
"files": [
- "Microsoft.Net.Http.Server.1.0.0-rc2-final.nupkg.sha512",
+ "Microsoft.Net.Http.Server.1.1.0.nupkg.sha512",
"Microsoft.Net.Http.Server.nuspec",
"lib/net451/Microsoft.Net.Http.Server.dll",
"lib/net451/Microsoft.Net.Http.Server.xml",
@@ -8574,72 +8936,72 @@
"lib/netstandard1.3/Microsoft.Net.Http.Server.xml"
]
},
- "Microsoft.NETCore.App/1.0.1": {
- "sha512": "M3iH7u95LntTkJtI/DqN/96MRlb8Wa0SjnXldxHA4FjlvEqghOhwK087bDZAZaTN9C4YHckvaYH3ka9eYWZZZw==",
+ "Microsoft.NETCore.App/1.1.0": {
+ "sha512": "DFec+OUojDVocn1GxAL9uJg4qwsgkvKiQpv6BKd9ljGezvc9p6GpFv51IIakiujkVW/wBtQ0xlfjVSgS1UG/uw==",
"type": "package",
- "path": "Microsoft.NETCore.App/1.0.1",
+ "path": "Microsoft.NETCore.App/1.1.0",
"files": [
- "Microsoft.NETCore.App.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.App.1.1.0.nupkg.sha512",
"Microsoft.NETCore.App.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netcoreapp1.0/_._"
]
},
- "Microsoft.NETCore.DotNetHost/1.0.1": {
- "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==",
+ "Microsoft.NETCore.DotNetHost/1.1.0": {
+ "sha512": "1xk/a9uXjJWDQqXw8l4067aoNwUfugq4UVQQinlIM2W4posm0+wcW+bi3uKuyufsjG6KBhlCqKuFBqa5DXO6ug==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHost/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHost/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHost.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHost.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
- "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==",
+ "Microsoft.NETCore.DotNetHostPolicy/1.1.0": {
+ "sha512": "xa5FjffmB4QMfWIdwrW1cUKX6UD1VEePyzDcMqV8b/d9onZLJwIamPIRmDpN5lTlvdCnyUOI+5ZqZEjQIqSqxQ==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHostPolicy/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHostPolicy.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHostPolicy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
- "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==",
+ "Microsoft.NETCore.DotNetHostResolver/1.1.0": {
+ "sha512": "xf7RRVJ4M1w1Hg9TTzTH4g+zFqGtu6uXBjpcyy+o5UYrRj44dtJkmlnc1OnoKQFU0pZ8i9C8eNbSeqq/p6n19w==",
"type": "package",
- "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1",
+ "path": "Microsoft.NETCore.DotNetHostResolver/1.1.0",
"files": [
- "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.DotNetHostResolver.1.1.0.nupkg.sha512",
"Microsoft.NETCore.DotNetHostResolver.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Jit/1.0.4": {
- "sha512": "IcHTGj+vTFcOu7/flwNg+CWIfTsxqHWgj08MKOtYwS5k0EuLvx6PrYsn7vHCV0SUTk1zbQ1l0EJj1UdxTMyx4w==",
+ "Microsoft.NETCore.Jit/1.1.0": {
+ "sha512": "Zsrh7C1ncfJe1tLGExgHrdal8I0U7qBHeLkpjbxd6M8uPtR8ck+R1Gynyjn01M3VO1Px416WvrJ4rxQFeR3jTQ==",
"type": "package",
- "path": "Microsoft.NETCore.Jit/1.0.4",
+ "path": "Microsoft.NETCore.Jit/1.1.0",
"files": [
- "Microsoft.NETCore.Jit.1.0.4.nupkg.sha512",
+ "Microsoft.NETCore.Jit.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Jit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Platforms/1.0.1": {
- "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==",
+ "Microsoft.NETCore.Platforms/1.1.0": {
+ "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
"type": "package",
- "path": "Microsoft.NETCore.Platforms/1.0.1",
+ "path": "Microsoft.NETCore.Platforms/1.1.0",
"files": [
- "Microsoft.NETCore.Platforms.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Platforms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8647,24 +9009,24 @@
"runtime.json"
]
},
- "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
- "sha512": "r4/aP7VYcJ+W/rJVFU+jAdjF4KrsHRDYQJ+p8weUP5n65yLzWXlQTVY6OsR560aV5EF7jc65dqsNXIryUCrEkQ==",
+ "Microsoft.NETCore.Runtime.CoreCLR/1.1.0": {
+ "sha512": "dwvlgs9yX8Y1phaXqNJC8qOgEeZfsM8mVB4vprv7OOhttjXoiaiYQAEYa4D4fbiqTjx/gD6/fVPJ/aSmk5byhg==",
"type": "package",
- "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4",
+ "path": "Microsoft.NETCore.Runtime.CoreCLR/1.1.0",
"files": [
- "Microsoft.NETCore.Runtime.CoreCLR.1.0.4.nupkg.sha512",
+ "Microsoft.NETCore.Runtime.CoreCLR.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Runtime.CoreCLR.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"runtime.json"
]
},
- "Microsoft.NETCore.Targets/1.0.1": {
- "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
"type": "package",
- "path": "Microsoft.NETCore.Targets/1.0.1",
+ "path": "Microsoft.NETCore.Targets/1.1.0",
"files": [
- "Microsoft.NETCore.Targets.1.0.1.nupkg.sha512",
+ "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
"Microsoft.NETCore.Targets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8673,7 +9035,7 @@
]
},
"Microsoft.NETCore.Windows.ApiSets/1.0.1": {
- "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==",
+ "sha512": "jH+MpPZ4afpEBEUxOHuV6kNwIFu21ECEP7UlwcYaM2oORy7mWIm/iJbXSml4Z6ayoIgzc4xHrx8g5tDxzy9Cfw==",
"type": "package",
"path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
"files": [
@@ -8684,12 +9046,12 @@
"runtime.json"
]
},
- "Microsoft.VisualBasic/10.0.1": {
- "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==",
+ "Microsoft.VisualBasic/10.1.0": {
+ "sha512": "jgBfelga8QHZDTtUBtLNgcDPuXzaplCeXLqQcf5qB4jeVdPpX1AtnZnGeHbbi2tmp+P96hgI+KhXbUN567K60Q==",
"type": "package",
- "path": "Microsoft.VisualBasic/10.0.1",
+ "path": "Microsoft.VisualBasic/10.1.0",
"files": [
- "Microsoft.VisualBasic.10.0.1.nupkg.sha512",
+ "Microsoft.VisualBasic.10.1.0.nupkg.sha512",
"Microsoft.VisualBasic.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8699,6 +9061,8 @@
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
+ "ref/MonoAndroid10/Microsoft.VisualBasic.dll",
+ "ref/MonoTouch10/Microsoft.VisualBasic.dll",
"ref/net45/_._",
"ref/netcore50/Microsoft.VisualBasic.dll",
"ref/netcore50/Microsoft.VisualBasic.xml",
@@ -8724,15 +9088,18 @@
"ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
- "ref/wpa81/_._"
+ "ref/wpa81/_._",
+ "ref/xamarinios10/Microsoft.VisualBasic.dll",
+ "ref/xamarintvos10/Microsoft.VisualBasic.dll",
+ "ref/xamarinwatchos10/Microsoft.VisualBasic.dll"
]
},
- "Microsoft.Win32.Primitives/4.0.1": {
- "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
+ "Microsoft.Win32.Primitives/4.3.0": {
+ "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
"type": "package",
- "path": "Microsoft.Win32.Primitives/4.0.1",
+ "path": "Microsoft.Win32.Primitives/4.3.0",
"files": [
- "Microsoft.Win32.Primitives.4.0.1.nupkg.sha512",
+ "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
"Microsoft.Win32.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8763,12 +9130,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "Microsoft.Win32.Registry/4.0.0": {
- "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==",
+ "Microsoft.Win32.Registry/4.3.0": {
+ "sha512": "Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==",
"type": "package",
- "path": "Microsoft.Win32.Registry/4.0.0",
+ "path": "Microsoft.Win32.Registry/4.3.0",
"files": [
- "Microsoft.Win32.Registry.4.0.0.nupkg.sha512",
+ "Microsoft.Win32.Registry.4.3.0.nupkg.sha512",
"Microsoft.Win32.Registry.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -8791,12 +9158,12 @@
"runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
]
},
- "NETStandard.Library/1.6.0": {
- "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
+ "NETStandard.Library/1.6.1": {
+ "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
"type": "package",
- "path": "NETStandard.Library/1.6.0",
+ "path": "NETStandard.Library/1.6.1",
"files": [
- "NETStandard.Library.1.6.0.nupkg.sha512",
+ "NETStandard.Library.1.6.1.nupkg.sha512",
"NETStandard.Library.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt"
@@ -8938,107 +9305,253 @@
"lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml"
]
},
- "runtime.native.System/4.0.0": {
- "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
+ "type": "package",
+ "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
"type": "package",
- "path": "runtime.native.System/4.0.0",
+ "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
+ "type": "package",
+ "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "type": "package",
+ "path": "runtime.native.System/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.4.0.0.nupkg.sha512",
+ "runtime.native.System.4.3.0.nupkg.sha512",
"runtime.native.System.nuspec"
]
},
- "runtime.native.System.Data.SqlClient.sni/4.0.0": {
- "sha512": "DcMVtYwugo1LOc9MVchInxlLNoFe/+21MsEQU9yIZX561chzxDlFDWowWF+Kc262PyD3eLkDab1JyJrs73Qtkg==",
+ "runtime.native.System.Data.SqlClient.sni/4.3.0": {
+ "sha512": "rX1bLxiHjj+ivd4bL9RwCvKM7agWHceLrAFsPQryTX0ZZ1J7x6vSz779YgMih0S4yD/GTvr7+dajBVutzJVvBg==",
"type": "package",
- "path": "runtime.native.System.Data.SqlClient.sni/4.0.0",
+ "path": "runtime.native.System.Data.SqlClient.sni/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
- "runtime.native.System.Data.SqlClient.sni.4.0.0.nupkg.sha512",
+ "runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
"runtime.native.System.Data.SqlClient.sni.nuspec"
]
},
- "runtime.native.System.IO.Compression/4.1.0": {
- "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
+ "runtime.native.System.IO.Compression/4.3.0": {
+ "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
"type": "package",
- "path": "runtime.native.System.IO.Compression/4.1.0",
+ "path": "runtime.native.System.IO.Compression/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.IO.Compression.4.1.0.nupkg.sha512",
+ "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
"runtime.native.System.IO.Compression.nuspec"
]
},
- "runtime.native.System.Net.Http/4.0.1": {
- "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
+ "runtime.native.System.Net.Http/4.3.0": {
+ "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
"type": "package",
- "path": "runtime.native.System.Net.Http/4.0.1",
+ "path": "runtime.native.System.Net.Http/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Http.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Http.nuspec"
]
},
- "runtime.native.System.Net.Security/4.0.1": {
- "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==",
+ "runtime.native.System.Net.Security/4.3.0": {
+ "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
"type": "package",
- "path": "runtime.native.System.Net.Security/4.0.1",
+ "path": "runtime.native.System.Net.Security/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Net.Security.4.0.1.nupkg.sha512",
+ "runtime.native.System.Net.Security.4.3.0.nupkg.sha512",
"runtime.native.System.Net.Security.nuspec"
]
},
- "runtime.native.System.Security.Cryptography/4.0.0": {
- "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "type": "package",
+ "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.Apple.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
"type": "package",
- "path": "runtime.native.System.Security.Cryptography/4.0.0",
+ "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/_._",
- "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
- "runtime.native.System.Security.Cryptography.nuspec"
+ "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
+ ]
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
+ "type": "package",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
+ "type": "package",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
+ ]
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
+ "type": "package",
+ "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
+ "type": "package",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
+ "files": [
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
]
},
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1": {
- "sha512": "My20HZqJbDS4rWmdOcJ3TPf9iX6M/sTF2nBSUHBvfWp1iNip3eMS+K65oQgsLRxX6h21ic3YED06c2ye2sL7FQ==",
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0": {
+ "sha512": "j42JRgYOMi6B86attv8F3eDBISh+kzoKxLsu0zaq1ioY+je64chWd8fybvk9yPzayO3Dh1czhmf5B7rbafLRQA==",
"type": "package",
- "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1",
+ "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.3.0",
"files": [
+ "OpenCoreFxSyncInfo.txt",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
- "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.0.1.nupkg.sha512",
+ "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
"runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.nuspec",
"runtimes/win7-x64/native/sni.dll"
]
},
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1": {
- "sha512": "ykiYCf/0hIc0xm+g6bVX8nw9St5Ool+r4US+B+56Lv/GFnDG5G9BK4n7WkrwEpuWV3XjMn38oHgHOnNMzBVNKA==",
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0": {
+ "sha512": "4cXRTIcttvIreAoqK/5hzTtzepeggac+m5A0rzH+9zLtnFh2J0rLuGeJR4KjNLyKqPzO0kjqrs5lkRJEKX8HAA==",
"type": "package",
- "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1",
+ "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.3.0",
"files": [
+ "OpenCoreFxSyncInfo.txt",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
- "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.0.1.nupkg.sha512",
+ "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.3.0.nupkg.sha512",
"runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.nuspec",
"runtimes/win7-x86/native/sni.dll"
]
},
- "System.AppContext/4.1.0": {
- "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
+ "System.AppContext/4.3.0": {
+ "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
"type": "package",
- "path": "System.AppContext/4.1.0",
+ "path": "System.AppContext/4.3.0",
"files": [
- "System.AppContext.4.1.0.nupkg.sha512",
+ "System.AppContext.4.3.0.nupkg.sha512",
"System.AppContext.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9086,12 +9599,12 @@
"runtimes/aot/lib/netcore50/System.AppContext.dll"
]
},
- "System.Buffers/4.0.0": {
- "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==",
+ "System.Buffers/4.3.0": {
+ "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
"type": "package",
- "path": "System.Buffers/4.0.0",
+ "path": "System.Buffers/4.3.0",
"files": [
- "System.Buffers.4.0.0.nupkg.sha512",
+ "System.Buffers.4.3.0.nupkg.sha512",
"System.Buffers.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9099,12 +9612,12 @@
"lib/netstandard1.1/System.Buffers.dll"
]
},
- "System.Collections/4.0.11": {
- "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
"type": "package",
- "path": "System.Collections/4.0.11",
+ "path": "System.Collections/4.3.0",
"files": [
- "System.Collections.4.0.11.nupkg.sha512",
+ "System.Collections.4.3.0.nupkg.sha512",
"System.Collections.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9165,12 +9678,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Concurrent/4.0.12": {
- "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
"type": "package",
- "path": "System.Collections.Concurrent/4.0.12",
+ "path": "System.Collections.Concurrent/4.3.0",
"files": [
- "System.Collections.Concurrent.4.0.12.nupkg.sha512",
+ "System.Collections.Concurrent.4.3.0.nupkg.sha512",
"System.Collections.Concurrent.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9231,12 +9744,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Immutable/1.2.0": {
- "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==",
+ "System.Collections.Immutable/1.3.0": {
+ "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
"type": "package",
- "path": "System.Collections.Immutable/1.2.0",
+ "path": "System.Collections.Immutable/1.3.0",
"files": [
- "System.Collections.Immutable.1.2.0.nupkg.sha512",
+ "System.Collections.Immutable.1.3.0.nupkg.sha512",
"System.Collections.Immutable.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9246,12 +9759,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
]
},
- "System.Collections.NonGeneric/4.0.1": {
- "sha512": "hMxFT2RhhlffyCdKLDXjx8WEC5JfCvNozAZxCablAuFRH74SCV4AgzE8yJCh/73bFnEoZgJ9MJmkjQ0dJmnKqA==",
+ "System.Collections.NonGeneric/4.3.0": {
+ "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
"type": "package",
- "path": "System.Collections.NonGeneric/4.0.1",
+ "path": "System.Collections.NonGeneric/4.3.0",
"files": [
- "System.Collections.NonGeneric.4.0.1.nupkg.sha512",
+ "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
"System.Collections.NonGeneric.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9283,12 +9796,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Collections.Specialized/4.0.1": {
- "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
+ "System.Collections.Specialized/4.3.0": {
+ "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
"type": "package",
- "path": "System.Collections.Specialized/4.0.1",
+ "path": "System.Collections.Specialized/4.3.0",
"files": [
- "System.Collections.Specialized.4.0.1.nupkg.sha512",
+ "System.Collections.Specialized.4.3.0.nupkg.sha512",
"System.Collections.Specialized.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9320,12 +9833,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel/4.0.1": {
- "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==",
+ "System.ComponentModel/4.3.0": {
+ "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
"type": "package",
- "path": "System.ComponentModel/4.0.1",
+ "path": "System.ComponentModel/4.3.0",
"files": [
- "System.ComponentModel.4.0.1.nupkg.sha512",
+ "System.ComponentModel.4.3.0.nupkg.sha512",
"System.ComponentModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9377,12 +9890,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Annotations/4.1.0": {
- "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==",
+ "System.ComponentModel.Annotations/4.3.0": {
+ "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
"type": "package",
- "path": "System.ComponentModel.Annotations/4.1.0",
+ "path": "System.ComponentModel.Annotations/4.3.0",
"files": [
- "System.ComponentModel.Annotations.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
"System.ComponentModel.Annotations.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9454,12 +9967,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.Primitives/4.1.0": {
- "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
+ "System.ComponentModel.Primitives/4.3.0": {
+ "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
"type": "package",
- "path": "System.ComponentModel.Primitives/4.1.0",
+ "path": "System.ComponentModel.Primitives/4.3.0",
"files": [
- "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
+ "System.ComponentModel.Primitives.4.3.0.nupkg.sha512",
"System.ComponentModel.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9491,12 +10004,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ComponentModel.TypeConverter/4.1.0": {
- "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
+ "System.ComponentModel.TypeConverter/4.3.0": {
+ "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
"type": "package",
- "path": "System.ComponentModel.TypeConverter/4.1.0",
+ "path": "System.ComponentModel.TypeConverter/4.3.0",
"files": [
- "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
+ "System.ComponentModel.TypeConverter.4.3.0.nupkg.sha512",
"System.ComponentModel.TypeConverter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9542,12 +10055,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Console/4.0.0": {
- "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
+ "System.Console/4.3.0": {
+ "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"type": "package",
- "path": "System.Console/4.0.0",
+ "path": "System.Console/4.3.0",
"files": [
- "System.Console.4.0.0.nupkg.sha512",
+ "System.Console.4.3.0.nupkg.sha512",
"System.Console.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9578,12 +10091,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Data.Common/4.1.0": {
- "sha512": "epU8jeTe7aE7RqGHq9rZ8b0Q4Ah7DgubzHQblgZMSqgW1saW868WmooSyC5ywf8upLBkcVLDu93W9GPWUYsU2Q==",
+ "System.Data.Common/4.3.0": {
+ "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
"type": "package",
- "path": "System.Data.Common/4.1.0",
+ "path": "System.Data.Common/4.3.0",
"files": [
- "System.Data.Common.4.1.0.nupkg.sha512",
+ "System.Data.Common.4.3.0.nupkg.sha512",
"System.Data.Common.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9627,12 +10140,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Data.SqlClient/4.1.0": {
- "sha512": "yqMZgzzKHdG84QmA/PPZUORaoisfvztvFqyPs7dPafJhNxlS7STf9OMCFrP/tITQCqImkm1+X4d2oiWOT2oTKg==",
+ "System.Data.SqlClient/4.3.0": {
+ "sha512": "XmWg+/uUcME++m/vsRzxq1fo0GvlYzFfZM5fCqIIDT+O7AwDdpfd1LkRXmcxeTJQTCgx5AN3Y3t5qSz5XxQLVw==",
"type": "package",
- "path": "System.Data.SqlClient/4.1.0",
+ "path": "System.Data.SqlClient/4.3.0",
"files": [
- "System.Data.SqlClient.4.1.0.nupkg.sha512",
+ "System.Data.SqlClient.4.3.0.nupkg.sha512",
"System.Data.SqlClient.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9680,12 +10193,12 @@
"runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll"
]
},
- "System.Diagnostics.Contracts/4.0.1": {
- "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
+ "System.Diagnostics.Contracts/4.3.0": {
+ "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
"type": "package",
- "path": "System.Diagnostics.Contracts/4.0.1",
+ "path": "System.Diagnostics.Contracts/4.3.0",
"files": [
- "System.Diagnostics.Contracts.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
"System.Diagnostics.Contracts.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9738,12 +10251,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
]
},
- "System.Diagnostics.Debug/4.0.11": {
- "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
"type": "package",
- "path": "System.Diagnostics.Debug/4.0.11",
+ "path": "System.Diagnostics.Debug/4.3.0",
"files": [
- "System.Diagnostics.Debug.4.0.11.nupkg.sha512",
+ "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
"System.Diagnostics.Debug.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9804,12 +10317,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.DiagnosticSource/4.0.0": {
- "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==",
+ "System.Diagnostics.DiagnosticSource/4.3.0": {
+ "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
"type": "package",
- "path": "System.Diagnostics.DiagnosticSource/4.0.0",
+ "path": "System.Diagnostics.DiagnosticSource/4.3.0",
"files": [
- "System.Diagnostics.DiagnosticSource.4.0.0.nupkg.sha512",
+ "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
"System.Diagnostics.DiagnosticSource.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9824,7 +10337,7 @@
]
},
"System.Diagnostics.FileVersionInfo/4.0.0": {
- "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==",
+ "sha512": "VtXkqPMWpaXDFEvbuhroVemeTaaU/j6C3yu6rd+JFLg5AvHAZJb8hUpxwJCM7OFrUpeKmv3A7ZTME8hFYWL6pA==",
"type": "package",
"path": "System.Diagnostics.FileVersionInfo/4.0.0",
"files": [
@@ -9863,12 +10376,12 @@
"runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll"
]
},
- "System.Diagnostics.Process/4.1.0": {
- "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==",
+ "System.Diagnostics.Process/4.3.0": {
+ "sha512": "J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==",
"type": "package",
- "path": "System.Diagnostics.Process/4.1.0",
+ "path": "System.Diagnostics.Process/4.3.0",
"files": [
- "System.Diagnostics.Process.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Process.4.3.0.nupkg.sha512",
"System.Diagnostics.Process.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9918,12 +10431,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Diagnostics.StackTrace/4.0.1": {
- "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==",
+ "System.Diagnostics.StackTrace/4.3.0": {
+ "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
"type": "package",
- "path": "System.Diagnostics.StackTrace/4.0.1",
+ "path": "System.Diagnostics.StackTrace/4.3.0",
"files": [
- "System.Diagnostics.StackTrace.4.0.1.nupkg.sha512",
+ "System.Diagnostics.StackTrace.4.3.0.nupkg.sha512",
"System.Diagnostics.StackTrace.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -9956,12 +10469,12 @@
"runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
]
},
- "System.Diagnostics.Tools/4.0.1": {
- "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
+ "System.Diagnostics.Tools/4.3.0": {
+ "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
"type": "package",
- "path": "System.Diagnostics.Tools/4.0.1",
+ "path": "System.Diagnostics.Tools/4.3.0",
"files": [
- "System.Diagnostics.Tools.4.0.1.nupkg.sha512",
+ "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
"System.Diagnostics.Tools.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10011,12 +10524,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Diagnostics.Tracing/4.1.0": {
- "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
"type": "package",
- "path": "System.Diagnostics.Tracing/4.1.0",
+ "path": "System.Diagnostics.Tracing/4.3.0",
"files": [
- "System.Diagnostics.Tracing.4.1.0.nupkg.sha512",
+ "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
"System.Diagnostics.Tracing.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10099,12 +10612,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Dynamic.Runtime/4.0.11": {
- "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
+ "System.Dynamic.Runtime/4.3.0": {
+ "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
"type": "package",
- "path": "System.Dynamic.Runtime/4.0.11",
+ "path": "System.Dynamic.Runtime/4.3.0",
"files": [
- "System.Dynamic.Runtime.4.0.11.nupkg.sha512",
+ "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
"System.Dynamic.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10168,12 +10681,12 @@
"runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
]
},
- "System.Globalization/4.0.11": {
- "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
"type": "package",
- "path": "System.Globalization/4.0.11",
+ "path": "System.Globalization/4.3.0",
"files": [
- "System.Globalization.4.0.11.nupkg.sha512",
+ "System.Globalization.4.3.0.nupkg.sha512",
"System.Globalization.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10234,12 +10747,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Calendars/4.0.1": {
- "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
+ "System.Globalization.Calendars/4.3.0": {
+ "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
"type": "package",
- "path": "System.Globalization.Calendars/4.0.1",
+ "path": "System.Globalization.Calendars/4.3.0",
"files": [
- "System.Globalization.Calendars.4.0.1.nupkg.sha512",
+ "System.Globalization.Calendars.4.3.0.nupkg.sha512",
"System.Globalization.Calendars.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10270,12 +10783,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Globalization.Extensions/4.0.1": {
- "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
"type": "package",
- "path": "System.Globalization.Extensions/4.0.1",
+ "path": "System.Globalization.Extensions/4.3.0",
"files": [
- "System.Globalization.Extensions.4.0.1.nupkg.sha512",
+ "System.Globalization.Extensions.4.3.0.nupkg.sha512",
"System.Globalization.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10309,12 +10822,12 @@
"runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll"
]
},
- "System.IdentityModel.Tokens.Jwt/5.0.0": {
- "sha512": "Ne69BCr2FPAysLG7pOM/+U/XFwGg849GIML2NuqtfEwBC3l74SaUPN3AmJfHccBcgOSDL3jVLQ3/ZQTtd3g6JA==",
+ "System.IdentityModel.Tokens.Jwt/5.1.0": {
+ "sha512": "oMcOZ0/7seZYkv8yRPBlfHyc7K/33TS0hVtshvOAiH9rHWqCb3htq4mEbOtqMTo45pzblcm10ArpERlZrSS69A==",
"type": "package",
- "path": "System.IdentityModel.Tokens.Jwt/5.0.0",
+ "path": "System.IdentityModel.Tokens.Jwt/5.1.0",
"files": [
- "System.IdentityModel.Tokens.Jwt.5.0.0.nupkg.sha512",
+ "System.IdentityModel.Tokens.Jwt.5.1.0.nupkg.sha512",
"System.IdentityModel.Tokens.Jwt.nuspec",
"lib/net451/System.IdentityModel.Tokens.Jwt.dll",
"lib/net451/System.IdentityModel.Tokens.Jwt.xml",
@@ -10335,12 +10848,12 @@
"lib/netstandard1.0/System.Interactive.Async.xml"
]
},
- "System.IO/4.1.0": {
- "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
"type": "package",
- "path": "System.IO/4.1.0",
+ "path": "System.IO/4.3.0",
"files": [
- "System.IO.4.1.0.nupkg.sha512",
+ "System.IO.4.3.0.nupkg.sha512",
"System.IO.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10414,12 +10927,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.Compression/4.1.0": {
- "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
+ "System.IO.Compression/4.3.0": {
+ "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
"type": "package",
- "path": "System.IO.Compression/4.1.0",
+ "path": "System.IO.Compression/4.3.0",
"files": [
- "System.IO.Compression.4.1.0.nupkg.sha512",
+ "System.IO.Compression.4.3.0.nupkg.sha512",
"System.IO.Compression.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10483,12 +10996,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
]
},
- "System.IO.Compression.ZipFile/4.0.1": {
- "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
+ "System.IO.Compression.ZipFile/4.3.0": {
+ "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
"type": "package",
- "path": "System.IO.Compression.ZipFile/4.0.1",
+ "path": "System.IO.Compression.ZipFile/4.3.0",
"files": [
- "System.IO.Compression.ZipFile.4.0.1.nupkg.sha512",
+ "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
"System.IO.Compression.ZipFile.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10520,12 +11033,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem/4.0.1": {
- "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
"type": "package",
- "path": "System.IO.FileSystem/4.0.1",
+ "path": "System.IO.FileSystem/4.3.0",
"files": [
- "System.IO.FileSystem.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.4.3.0.nupkg.sha512",
"System.IO.FileSystem.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10556,12 +11069,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Primitives/4.0.1": {
- "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
"type": "package",
- "path": "System.IO.FileSystem.Primitives/4.0.1",
+ "path": "System.IO.FileSystem.Primitives/4.3.0",
"files": [
- "System.IO.FileSystem.Primitives.4.0.1.nupkg.sha512",
+ "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10593,12 +11106,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.IO.FileSystem.Watcher/4.0.0": {
- "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==",
+ "System.IO.FileSystem.Watcher/4.3.0": {
+ "sha512": "37IDFU2w6LJ4FrohcVlV1EXviUmAOJIbejVgOUtNaPQyeZW2D/0QSkH8ykehoOd19bWfxp3RRd0xj+yRRIqLhw==",
"type": "package",
- "path": "System.IO.FileSystem.Watcher/4.0.0",
+ "path": "System.IO.FileSystem.Watcher/4.3.0",
"files": [
- "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
+ "System.IO.FileSystem.Watcher.4.3.0.nupkg.sha512",
"System.IO.FileSystem.Watcher.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10634,12 +11147,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.IO.MemoryMappedFiles/4.0.0": {
- "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==",
+ "System.IO.MemoryMappedFiles/4.3.0": {
+ "sha512": "mz2JJFxCQLdMzXVOPyVibDKDKFZey66YHgQy8M1/vUCQzMSrbiXhpsyV04vSlBeqQUdM7wTL2WG+X3GZALKsIQ==",
"type": "package",
- "path": "System.IO.MemoryMappedFiles/4.0.0",
+ "path": "System.IO.MemoryMappedFiles/4.3.0",
"files": [
- "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512",
+ "System.IO.MemoryMappedFiles.4.3.0.nupkg.sha512",
"System.IO.MemoryMappedFiles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10674,12 +11187,12 @@
"runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
]
},
- "System.IO.Pipes/4.0.0": {
- "sha512": "L9QVhk8hIEix5KNA0kW58Ha+Y1dNGqqqIhAaJkhcGCWeQzUmN0njzI7SG/XAazpMecboOdFFlH3pH/qbwXLJAg==",
+ "System.IO.Pipes/4.3.0": {
+ "sha512": "wpGJuACA6r8+KRckXoI6ghGTwgPRiICI6T7kgHI/m7S5eMqV/8jH37fzAUhTwIe9RwlH/j1sWwm2Q2zyXwZGHw==",
"type": "package",
- "path": "System.IO.Pipes/4.0.0",
+ "path": "System.IO.Pipes/4.3.0",
"files": [
- "System.IO.Pipes.4.0.0.nupkg.sha512",
+ "System.IO.Pipes.4.3.0.nupkg.sha512",
"System.IO.Pipes.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10702,12 +11215,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.IO.UnmanagedMemoryStream/4.0.1": {
- "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==",
+ "System.IO.UnmanagedMemoryStream/4.3.0": {
+ "sha512": "tS89nK7pw8ebkkEfWujA05+ZReHKzz39W+bcX1okVR0GJCJuzPyfYfQZyiLSrjp121BB5J4uewZQiUTKri2pSQ==",
"type": "package",
- "path": "System.IO.UnmanagedMemoryStream/4.0.1",
+ "path": "System.IO.UnmanagedMemoryStream/4.3.0",
"files": [
- "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
+ "System.IO.UnmanagedMemoryStream.4.3.0.nupkg.sha512",
"System.IO.UnmanagedMemoryStream.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10739,12 +11252,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq/4.1.0": {
- "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
"type": "package",
- "path": "System.Linq/4.1.0",
+ "path": "System.Linq/4.3.0",
"files": [
- "System.Linq.4.1.0.nupkg.sha512",
+ "System.Linq.4.3.0.nupkg.sha512",
"System.Linq.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10809,12 +11322,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Linq.Expressions/4.1.0": {
- "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
+ "System.Linq.Expressions/4.3.0": {
+ "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
"type": "package",
- "path": "System.Linq.Expressions/4.1.0",
+ "path": "System.Linq.Expressions/4.3.0",
"files": [
- "System.Linq.Expressions.4.1.0.nupkg.sha512",
+ "System.Linq.Expressions.4.3.0.nupkg.sha512",
"System.Linq.Expressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10891,12 +11404,12 @@
"runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
]
},
- "System.Linq.Parallel/4.0.1": {
- "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==",
+ "System.Linq.Parallel/4.3.0": {
+ "sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==",
"type": "package",
- "path": "System.Linq.Parallel/4.0.1",
+ "path": "System.Linq.Parallel/4.3.0",
"files": [
- "System.Linq.Parallel.4.0.1.nupkg.sha512",
+ "System.Linq.Parallel.4.3.0.nupkg.sha512",
"System.Linq.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -10947,7 +11460,7 @@
]
},
"System.Linq.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
+ "sha512": "RXVSHwhbqT4pZdCm+wISM7DGJ2wCkFyRGjMlXkUfnl1t9G4QOv+vasX6ovGb7pfszDH2h1K4b5zf5OpVdc6U/A==",
"type": "package",
"path": "System.Linq.Queryable/4.0.1",
"files": [
@@ -11003,12 +11516,69 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Http/4.1.0": {
- "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
+ "System.Linq.Queryable/4.3.0": {
+ "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
+ "type": "package",
+ "path": "System.Linq.Queryable/4.3.0",
+ "files": [
+ "System.Linq.Queryable.4.3.0.nupkg.sha512",
+ "System.Linq.Queryable.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Linq.Queryable.dll",
+ "lib/netstandard1.3/System.Linq.Queryable.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Linq.Queryable.dll",
+ "ref/netcore50/System.Linq.Queryable.xml",
+ "ref/netcore50/de/System.Linq.Queryable.xml",
+ "ref/netcore50/es/System.Linq.Queryable.xml",
+ "ref/netcore50/fr/System.Linq.Queryable.xml",
+ "ref/netcore50/it/System.Linq.Queryable.xml",
+ "ref/netcore50/ja/System.Linq.Queryable.xml",
+ "ref/netcore50/ko/System.Linq.Queryable.xml",
+ "ref/netcore50/ru/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
+ "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/System.Linq.Queryable.dll",
+ "ref/netstandard1.0/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/de/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/es/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/it/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._"
+ ]
+ },
+ "System.Net.Http/4.3.0": {
+ "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
"type": "package",
- "path": "System.Net.Http/4.1.0",
+ "path": "System.Net.Http/4.3.0",
"files": [
- "System.Net.Http.4.1.0.nupkg.sha512",
+ "System.Net.Http.4.3.0.nupkg.sha512",
"System.Net.Http.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11083,12 +11653,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
]
},
- "System.Net.NameResolution/4.0.0": {
- "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
+ "System.Net.NameResolution/4.3.0": {
+ "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
"type": "package",
- "path": "System.Net.NameResolution/4.0.0",
+ "path": "System.Net.NameResolution/4.3.0",
"files": [
- "System.Net.NameResolution.4.0.0.nupkg.sha512",
+ "System.Net.NameResolution.4.3.0.nupkg.sha512",
"System.Net.NameResolution.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11123,12 +11693,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
]
},
- "System.Net.Primitives/4.0.11": {
- "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
"type": "package",
- "path": "System.Net.Primitives/4.0.11",
+ "path": "System.Net.Primitives/4.3.0",
"files": [
- "System.Net.Primitives.4.0.11.nupkg.sha512",
+ "System.Net.Primitives.4.3.0.nupkg.sha512",
"System.Net.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11200,12 +11770,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.Requests/4.0.11": {
- "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==",
+ "System.Net.Requests/4.3.0": {
+ "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
"type": "package",
- "path": "System.Net.Requests/4.0.11",
+ "path": "System.Net.Requests/4.3.0",
"files": [
- "System.Net.Requests.4.0.11.nupkg.sha512",
+ "System.Net.Requests.4.3.0.nupkg.sha512",
"System.Net.Requests.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11281,12 +11851,12 @@
"runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
]
},
- "System.Net.Security/4.0.0": {
- "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==",
+ "System.Net.Security/4.3.0": {
+ "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
"type": "package",
- "path": "System.Net.Security/4.0.0",
+ "path": "System.Net.Security/4.3.0",
"files": [
- "System.Net.Security.4.0.0.nupkg.sha512",
+ "System.Net.Security.4.3.0.nupkg.sha512",
"System.Net.Security.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11321,12 +11891,12 @@
"runtimes/win7/lib/netcore50/_._"
]
},
- "System.Net.Sockets/4.1.0": {
- "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
+ "System.Net.Sockets/4.3.0": {
+ "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
"type": "package",
- "path": "System.Net.Sockets/4.1.0",
+ "path": "System.Net.Sockets/4.3.0",
"files": [
- "System.Net.Sockets.4.1.0.nupkg.sha512",
+ "System.Net.Sockets.4.3.0.nupkg.sha512",
"System.Net.Sockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11357,12 +11927,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebHeaderCollection/4.0.1": {
- "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==",
+ "System.Net.WebHeaderCollection/4.3.0": {
+ "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
"type": "package",
- "path": "System.Net.WebHeaderCollection/4.0.1",
+ "path": "System.Net.WebHeaderCollection/4.3.0",
"files": [
- "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
+ "System.Net.WebHeaderCollection.4.3.0.nupkg.sha512",
"System.Net.WebHeaderCollection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11394,12 +11964,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Net.WebSockets/4.0.0": {
- "sha512": "2KJo8hir6Edi9jnMDAMhiJoI691xRBmKcbNpwjrvpIMOCTYOtBpSsSEGBxBDV7PKbasJNaFp1+PZz1D7xS41Hg==",
+ "System.Net.WebSockets/4.3.0": {
+ "sha512": "u6fFNY5q4T8KerUAVbya7bR6b7muBuSTAersyrihkcmE5QhEOiH3t5rh4il15SexbVlpXFHGuMwr/m8fDrnkQg==",
"type": "package",
- "path": "System.Net.WebSockets/4.0.0",
+ "path": "System.Net.WebSockets/4.3.0",
"files": [
- "System.Net.WebSockets.4.0.0.nupkg.sha512",
+ "System.Net.WebSockets.4.3.0.nupkg.sha512",
"System.Net.WebSockets.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11431,12 +12001,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Numerics.Vectors/4.1.1": {
- "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==",
+ "System.Numerics.Vectors/4.3.0": {
+ "sha512": "uAIqmwiQPPXdCz59MQcyHwsH2MzIv24VGCS54kP/1GzTRTuU3hazmiPnGUTlKFia4B1DnbLWjTHoGyTI5BMCTQ==",
"type": "package",
- "path": "System.Numerics.Vectors/4.1.1",
+ "path": "System.Numerics.Vectors/4.3.0",
"files": [
- "System.Numerics.Vectors.4.1.1.nupkg.sha512",
+ "System.Numerics.Vectors.4.3.0.nupkg.sha512",
"System.Numerics.Vectors.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11464,12 +12034,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.ObjectModel/4.0.12": {
- "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
+ "System.ObjectModel/4.3.0": {
+ "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
"type": "package",
- "path": "System.ObjectModel/4.0.12",
+ "path": "System.ObjectModel/4.3.0",
"files": [
- "System.ObjectModel.4.0.12.nupkg.sha512",
+ "System.ObjectModel.4.3.0.nupkg.sha512",
"System.ObjectModel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11532,12 +12102,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection/4.1.0": {
- "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
"type": "package",
- "path": "System.Reflection/4.1.0",
+ "path": "System.Reflection/4.3.0",
"files": [
- "System.Reflection.4.1.0.nupkg.sha512",
+ "System.Reflection.4.3.0.nupkg.sha512",
"System.Reflection.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11611,12 +12181,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.DispatchProxy/4.0.1": {
- "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==",
+ "System.Reflection.DispatchProxy/4.3.0": {
+ "sha512": "vFln4g7zbLRyJbioExbMaW4BGuE2urDE2IKQk02x1y1uhQWntD+4rcYA4xQGJ19PlMdYPMWExHVQj3zKDODBFw==",
"type": "package",
- "path": "System.Reflection.DispatchProxy/4.0.1",
+ "path": "System.Reflection.DispatchProxy/4.3.0",
"files": [
- "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
+ "System.Reflection.DispatchProxy.4.3.0.nupkg.sha512",
"System.Reflection.DispatchProxy.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11647,20 +12217,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
]
},
- "System.Reflection.Emit/4.0.1": {
- "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
+ "System.Reflection.Emit/4.3.0": {
+ "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
"type": "package",
- "path": "System.Reflection.Emit/4.0.1",
+ "path": "System.Reflection.Emit/4.3.0",
"files": [
- "System.Reflection.Emit.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.4.3.0.nupkg.sha512",
"System.Reflection.Emit.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
+ "lib/monotouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.dll",
"lib/netstandard1.3/System.Reflection.Emit.dll",
+ "lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/net45/_._",
"ref/netstandard1.1/System.Reflection.Emit.dll",
@@ -11677,20 +12251,28 @@
"ref/xamarinmac20/_._"
]
},
- "System.Reflection.Emit.ILGeneration/4.0.1": {
- "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
+ "System.Reflection.Emit.ILGeneration/4.3.0": {
+ "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
"type": "package",
- "path": "System.Reflection.Emit.ILGeneration/4.0.1",
+ "path": "System.Reflection.Emit.ILGeneration/4.3.0",
"files": [
- "System.Reflection.Emit.ILGeneration.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
"System.Reflection.Emit.ILGeneration.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
"lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
"ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
@@ -11705,23 +12287,35 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Emit.Lightweight/4.0.1": {
- "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
+ "System.Reflection.Emit.Lightweight/4.3.0": {
+ "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
"type": "package",
- "path": "System.Reflection.Emit.Lightweight/4.0.1",
+ "path": "System.Reflection.Emit.Lightweight/4.3.0",
"files": [
- "System.Reflection.Emit.Lightweight.4.0.1.nupkg.sha512",
+ "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
"System.Reflection.Emit.Lightweight.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Reflection.Emit.Lightweight.dll",
"lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
"lib/portable-net45+wp8/_._",
"lib/wp80/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
"ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
@@ -11736,15 +12330,19 @@
"ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
"ref/portable-net45+wp8/_._",
"ref/wp80/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
"runtimes/aot/lib/netcore50/_._"
]
},
- "System.Reflection.Extensions/4.0.1": {
- "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
+ "System.Reflection.Extensions/4.3.0": {
+ "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
"type": "package",
- "path": "System.Reflection.Extensions/4.0.1",
+ "path": "System.Reflection.Extensions/4.3.0",
"files": [
- "System.Reflection.Extensions.4.0.1.nupkg.sha512",
+ "System.Reflection.Extensions.4.3.0.nupkg.sha512",
"System.Reflection.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11794,12 +12392,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.Metadata/1.3.0": {
- "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==",
+ "System.Reflection.Metadata/1.4.1": {
+ "sha512": "tc2ZyJgweHCLci5oQGuhQn9TD0Ii9DReXkHtZm3aAGp8xe40rpRjiTbMXOtZU+fr0BOQ46goE9+qIqRGjR9wGg==",
"type": "package",
- "path": "System.Reflection.Metadata/1.3.0",
+ "path": "System.Reflection.Metadata/1.4.1",
"files": [
- "System.Reflection.Metadata.1.3.0.nupkg.sha512",
+ "System.Reflection.Metadata.1.4.1.nupkg.sha512",
"System.Reflection.Metadata.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11809,12 +12407,12 @@
"lib/portable-net45+win8/System.Reflection.Metadata.xml"
]
},
- "System.Reflection.Primitives/4.0.1": {
- "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
"type": "package",
- "path": "System.Reflection.Primitives/4.0.1",
+ "path": "System.Reflection.Primitives/4.3.0",
"files": [
- "System.Reflection.Primitives.4.0.1.nupkg.sha512",
+ "System.Reflection.Primitives.4.3.0.nupkg.sha512",
"System.Reflection.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11864,12 +12462,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Reflection.TypeExtensions/4.1.0": {
- "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
+ "System.Reflection.TypeExtensions/4.3.0": {
+ "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
"type": "package",
- "path": "System.Reflection.TypeExtensions/4.1.0",
+ "path": "System.Reflection.TypeExtensions/4.3.0",
"files": [
- "System.Reflection.TypeExtensions.4.1.0.nupkg.sha512",
+ "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
"System.Reflection.TypeExtensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11916,24 +12514,24 @@
"runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
]
},
- "System.Resources.Reader/4.0.0": {
- "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==",
+ "System.Resources.Reader/4.3.0": {
+ "sha512": "AeSwdrdgsRnGRJDofYEJPlotJm6gDDg6WJ1/1lX2Yq8bPwicba7lanPi7adK0SE58zgN5PcGg/h0tuZS+IRAdw==",
"type": "package",
- "path": "System.Resources.Reader/4.0.0",
+ "path": "System.Resources.Reader/4.3.0",
"files": [
- "System.Resources.Reader.4.0.0.nupkg.sha512",
+ "System.Resources.Reader.4.3.0.nupkg.sha512",
"System.Resources.Reader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Resources.Reader.dll"
]
},
- "System.Resources.ResourceManager/4.0.1": {
- "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
"type": "package",
- "path": "System.Resources.ResourceManager/4.0.1",
+ "path": "System.Resources.ResourceManager/4.3.0",
"files": [
- "System.Resources.ResourceManager.4.0.1.nupkg.sha512",
+ "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
"System.Resources.ResourceManager.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -11983,12 +12581,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime/4.1.0": {
- "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
"type": "package",
- "path": "System.Runtime/4.1.0",
+ "path": "System.Runtime/4.3.0",
"files": [
- "System.Runtime.4.1.0.nupkg.sha512",
+ "System.Runtime.4.3.0.nupkg.sha512",
"System.Runtime.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12073,12 +12671,25 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Extensions/4.1.0": {
- "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
+ "System.Runtime.CompilerServices.Unsafe/4.3.0": {
+ "sha512": "rcnXA1U9W3QUtMSGoyoNHH6w4V5Rxa/EKXmzpORUYlDAlDB34hIQoU57ATXl8xHa83VvzRm6PcElEizgUd7U5w==",
+ "type": "package",
+ "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
+ "files": [
+ "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
+ "System.Runtime.CompilerServices.Unsafe.nuspec",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
"type": "package",
- "path": "System.Runtime.Extensions/4.1.0",
+ "path": "System.Runtime.Extensions/4.3.0",
"files": [
- "System.Runtime.Extensions.4.1.0.nupkg.sha512",
+ "System.Runtime.Extensions.4.3.0.nupkg.sha512",
"System.Runtime.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12152,12 +12763,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Handles/4.0.1": {
- "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
"type": "package",
- "path": "System.Runtime.Handles/4.0.1",
+ "path": "System.Runtime.Handles/4.3.0",
"files": [
- "System.Runtime.Handles.4.0.1.nupkg.sha512",
+ "System.Runtime.Handles.4.3.0.nupkg.sha512",
"System.Runtime.Handles.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12188,12 +12799,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices/4.1.0": {
- "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
"type": "package",
- "path": "System.Runtime.InteropServices/4.1.0",
+ "path": "System.Runtime.InteropServices/4.3.0",
"files": [
- "System.Runtime.InteropServices.4.1.0.nupkg.sha512",
+ "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12201,6 +12812,7 @@
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
@@ -12212,6 +12824,7 @@
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.dll",
"ref/netcore50/System.Runtime.InteropServices.xml",
"ref/netcore50/de/System.Runtime.InteropServices.xml",
@@ -12223,6 +12836,7 @@
"ref/netcore50/ru/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
"ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.dll",
"ref/netstandard1.1/System.Runtime.InteropServices.xml",
"ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
@@ -12276,18 +12890,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
- "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
+ "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
+ "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
"type": "package",
- "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0",
+ "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
"files": [
- "System.Runtime.InteropServices.RuntimeInformation.4.0.0.nupkg.sha512",
+ "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
"System.Runtime.InteropServices.RuntimeInformation.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
"lib/xamarinios10/_._",
@@ -12308,17 +12923,23 @@
"runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
]
},
- "System.Runtime.Loader/4.0.0": {
- "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==",
+ "System.Runtime.Loader/4.3.0": {
+ "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
"type": "package",
- "path": "System.Runtime.Loader/4.0.0",
+ "path": "System.Runtime.Loader/4.3.0",
"files": [
- "System.Runtime.Loader.4.0.0.nupkg.sha512",
+ "System.Runtime.Loader.4.3.0.nupkg.sha512",
"System.Runtime.Loader.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
"lib/net462/_._",
"lib/netstandard1.5/System.Runtime.Loader.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
"ref/netstandard1.5/System.Runtime.Loader.dll",
"ref/netstandard1.5/System.Runtime.Loader.xml",
"ref/netstandard1.5/de/System.Runtime.Loader.xml",
@@ -12332,12 +12953,12 @@
"ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
]
},
- "System.Runtime.Numerics/4.0.1": {
- "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
+ "System.Runtime.Numerics/4.3.0": {
+ "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
"type": "package",
- "path": "System.Runtime.Numerics/4.0.1",
+ "path": "System.Runtime.Numerics/4.3.0",
"files": [
- "System.Runtime.Numerics.4.0.1.nupkg.sha512",
+ "System.Runtime.Numerics.4.3.0.nupkg.sha512",
"System.Runtime.Numerics.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12387,12 +13008,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Runtime.Serialization.Primitives/4.1.1": {
- "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
+ "System.Runtime.Serialization.Primitives/4.3.0": {
+ "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
"type": "package",
- "path": "System.Runtime.Serialization.Primitives/4.1.1",
+ "path": "System.Runtime.Serialization.Primitives/4.3.0",
"files": [
- "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
+ "System.Runtime.Serialization.Primitives.4.3.0.nupkg.sha512",
"System.Runtime.Serialization.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12458,12 +13079,12 @@
"runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
]
},
- "System.Security.Claims/4.0.1": {
- "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==",
+ "System.Security.Claims/4.3.0": {
+ "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
"type": "package",
- "path": "System.Security.Claims/4.0.1",
+ "path": "System.Security.Claims/4.3.0",
"files": [
- "System.Security.Claims.4.0.1.nupkg.sha512",
+ "System.Security.Claims.4.3.0.nupkg.sha512",
"System.Security.Claims.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12495,12 +13116,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.Algorithms/4.2.0": {
- "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
"type": "package",
- "path": "System.Security.Cryptography.Algorithms/4.2.0",
+ "path": "System.Security.Cryptography.Algorithms/4.3.0",
"files": [
- "System.Security.Cryptography.Algorithms.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Algorithms.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12525,6 +13146,7 @@
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
"runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
@@ -12533,12 +13155,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
]
},
- "System.Security.Cryptography.Cng/4.2.0": {
- "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
"type": "package",
- "path": "System.Security.Cryptography.Cng/4.2.0",
+ "path": "System.Security.Cryptography.Cng/4.3.0",
"files": [
- "System.Security.Cryptography.Cng.4.2.0.nupkg.sha512",
+ "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Cng.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12559,12 +13181,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
]
},
- "System.Security.Cryptography.Csp/4.0.0": {
- "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
"type": "package",
- "path": "System.Security.Cryptography.Csp/4.0.0",
+ "path": "System.Security.Cryptography.Csp/4.3.0",
"files": [
- "System.Security.Cryptography.Csp.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Csp.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12589,12 +13211,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
]
},
- "System.Security.Cryptography.Encoding/4.0.0": {
- "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
"type": "package",
- "path": "System.Security.Cryptography.Encoding/4.0.0",
+ "path": "System.Security.Cryptography.Encoding/4.3.0",
"files": [
- "System.Security.Cryptography.Encoding.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12628,12 +13250,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
]
},
- "System.Security.Cryptography.OpenSsl/4.0.0": {
- "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
"type": "package",
- "path": "System.Security.Cryptography.OpenSsl/4.0.0",
+ "path": "System.Security.Cryptography.OpenSsl/4.3.0",
"files": [
- "System.Security.Cryptography.OpenSsl.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
"System.Security.Cryptography.OpenSsl.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12642,12 +13264,12 @@
"runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
]
},
- "System.Security.Cryptography.Primitives/4.0.0": {
- "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
"type": "package",
- "path": "System.Security.Cryptography.Primitives/4.0.0",
+ "path": "System.Security.Cryptography.Primitives/4.3.0",
"files": [
- "System.Security.Cryptography.Primitives.4.0.0.nupkg.sha512",
+ "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
"System.Security.Cryptography.Primitives.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12669,12 +13291,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Cryptography.X509Certificates/4.1.0": {
- "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
"type": "package",
- "path": "System.Security.Cryptography.X509Certificates/4.1.0",
+ "path": "System.Security.Cryptography.X509Certificates/4.3.0",
"files": [
- "System.Security.Cryptography.X509Certificates.4.1.0.nupkg.sha512",
+ "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
"System.Security.Cryptography.X509Certificates.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12723,12 +13345,12 @@
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
]
},
- "System.Security.Principal/4.0.1": {
- "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==",
+ "System.Security.Principal/4.3.0": {
+ "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
"type": "package",
- "path": "System.Security.Principal/4.0.1",
+ "path": "System.Security.Principal/4.3.0",
"files": [
- "System.Security.Principal.4.0.1.nupkg.sha512",
+ "System.Security.Principal.4.3.0.nupkg.sha512",
"System.Security.Principal.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12780,12 +13402,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Security.Principal.Windows/4.0.0": {
- "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==",
+ "System.Security.Principal.Windows/4.3.0": {
+ "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==",
"type": "package",
- "path": "System.Security.Principal.Windows/4.0.0",
+ "path": "System.Security.Principal.Windows/4.3.0",
"files": [
- "System.Security.Principal.Windows.4.0.0.nupkg.sha512",
+ "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
"System.Security.Principal.Windows.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12807,12 +13429,12 @@
"runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
]
},
- "System.Text.Encoding/4.0.11": {
- "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
"type": "package",
- "path": "System.Text.Encoding/4.0.11",
+ "path": "System.Text.Encoding/4.3.0",
"files": [
- "System.Text.Encoding.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.4.3.0.nupkg.sha512",
"System.Text.Encoding.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12873,12 +13495,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encoding.CodePages/4.0.1": {
- "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==",
+ "System.Text.Encoding.CodePages/4.3.0": {
+ "sha512": "IRiEFUa5b/Gs5Egg8oqBVoywhtOeaO2KOx3j0RfcYY/raxqBuEK7NXRDgOwtYM8qbi+7S4RPXUbNt+ZxyY0/NQ==",
"type": "package",
- "path": "System.Text.Encoding.CodePages/4.0.1",
+ "path": "System.Text.Encoding.CodePages/4.3.0",
"files": [
- "System.Text.Encoding.CodePages.4.0.1.nupkg.sha512",
+ "System.Text.Encoding.CodePages.4.3.0.nupkg.sha512",
"System.Text.Encoding.CodePages.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12910,12 +13532,12 @@
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
]
},
- "System.Text.Encoding.Extensions/4.0.11": {
- "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
+ "System.Text.Encoding.Extensions/4.3.0": {
+ "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
"type": "package",
- "path": "System.Text.Encoding.Extensions/4.0.11",
+ "path": "System.Text.Encoding.Extensions/4.3.0",
"files": [
- "System.Text.Encoding.Extensions.4.0.11.nupkg.sha512",
+ "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
"System.Text.Encoding.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12976,12 +13598,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Text.Encodings.Web/4.0.0": {
- "sha512": "TWZnuiJgPDAEEUfobD7njXvSVR2Toz+jvKWds6yL4oSztmKQfnWzucczjzA+6Dv1bktBdY71sZW1YN0X6m9chQ==",
+ "System.Text.Encodings.Web/4.3.0": {
+ "sha512": "ilLTKoirqw+Mbt+6x1MOxZKEwflasdP5WNuo5m5rKSXtAqazlEDqdyBH1XbvENuDQUtKNeP48CI1dyDNlEAeOA==",
"type": "package",
- "path": "System.Text.Encodings.Web/4.0.0",
+ "path": "System.Text.Encodings.Web/4.3.0",
"files": [
- "System.Text.Encodings.Web.4.0.0.nupkg.sha512",
+ "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
"System.Text.Encodings.Web.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -12989,12 +13611,12 @@
"lib/netstandard1.0/System.Text.Encodings.Web.xml"
]
},
- "System.Text.RegularExpressions/4.1.0": {
- "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
+ "System.Text.RegularExpressions/4.3.0": {
+ "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
"type": "package",
- "path": "System.Text.RegularExpressions/4.1.0",
+ "path": "System.Text.RegularExpressions/4.3.0",
"files": [
- "System.Text.RegularExpressions.4.1.0.nupkg.sha512",
+ "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
"System.Text.RegularExpressions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -13027,6 +13649,7 @@
"ref/netcore50/ru/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
"ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.dll",
"ref/netstandard1.0/System.Text.RegularExpressions.xml",
"ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
@@ -13070,12 +13693,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading/4.0.11": {
- "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
"type": "package",
- "path": "System.Threading/4.0.11",
+ "path": "System.Threading/4.3.0",
"files": [
- "System.Threading.4.0.11.nupkg.sha512",
+ "System.Threading.4.3.0.nupkg.sha512",
"System.Threading.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -13139,12 +13762,12 @@
"runtimes/aot/lib/netcore50/System.Threading.dll"
]
},
- "System.Threading.Overlapped/4.0.1": {
- "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==",
+ "System.Threading.Overlapped/4.3.0": {
+ "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
"type": "package",
- "path": "System.Threading.Overlapped/4.0.1",
+ "path": "System.Threading.Overlapped/4.3.0",
"files": [
- "System.Threading.Overlapped.4.0.1.nupkg.sha512",
+ "System.Threading.Overlapped.4.3.0.nupkg.sha512",
"System.Threading.Overlapped.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -13167,12 +13790,12 @@
"runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
]
},
- "System.Threading.Tasks/4.0.11": {
- "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
"type": "package",
- "path": "System.Threading.Tasks/4.0.11",
+ "path": "System.Threading.Tasks/4.3.0",
"files": [
- "System.Threading.Tasks.4.0.11.nupkg.sha512",
+ "System.Threading.Tasks.4.3.0.nupkg.sha512",
"System.Threading.Tasks.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -13233,27 +13856,29 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Tasks.Dataflow/4.6.0": {
- "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==",
+ "System.Threading.Tasks.Dataflow/4.7.0": {
+ "sha512": "wcKLDI8tN5KpcMcTQwXfcLHrFdfINIxDBOZS3rE8QqOds/0fRhCkR+IEfQokxT7s/Yluqk+LG/ZqZdQmA/xgCw==",
"type": "package",
- "path": "System.Threading.Tasks.Dataflow/4.6.0",
+ "path": "System.Threading.Tasks.Dataflow/4.7.0",
"files": [
- "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
+ "System.Threading.Tasks.Dataflow.4.7.0.nupkg.sha512",
"System.Threading.Tasks.Dataflow.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
"lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
"lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
- "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
+ "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML",
+ "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll"
]
},
- "System.Threading.Tasks.Extensions/4.0.0": {
- "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
+ "System.Threading.Tasks.Extensions/4.3.0": {
+ "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
"type": "package",
- "path": "System.Threading.Tasks.Extensions/4.0.0",
+ "path": "System.Threading.Tasks.Extensions/4.3.0",
"files": [
- "System.Threading.Tasks.Extensions.4.0.0.nupkg.sha512",
+ "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Extensions.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -13263,12 +13888,12 @@
"lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
]
},
- "System.Threading.Tasks.Parallel/4.0.1": {
- "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==",
+ "System.Threading.Tasks.Parallel/4.3.0": {
+ "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
"type": "package",
- "path": "System.Threading.Tasks.Parallel/4.0.1",
+ "path": "System.Threading.Tasks.Parallel/4.3.0",
"files": [
- "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
+ "System.Threading.Tasks.Parallel.4.3.0.nupkg.sha512",
"System.Threading.Tasks.Parallel.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -13318,12 +13943,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Thread/4.0.0": {
- "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
+ "System.Threading.Thread/4.3.0": {
+ "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
"type": "package",
- "path": "System.Threading.Thread/4.0.0",
+ "path": "System.Threading.Thread/4.3.0",
"files": [
- "System.Threading.Thread.4.0.0.nupkg.sha512",
+ "System.Threading.Thread.4.3.0.nupkg.sha512",
"System.Threading.Thread.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -13356,12 +13981,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.ThreadPool/4.0.10": {
- "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
+ "System.Threading.ThreadPool/4.3.0": {
+ "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
"type": "package",
- "path": "System.Threading.ThreadPool/4.0.10",
+ "path": "System.Threading.ThreadPool/4.3.0",
"files": [
- "System.Threading.ThreadPool.4.0.10.nupkg.sha512",
+ "System.Threading.ThreadPool.4.3.0.nupkg.sha512",
"System.Threading.ThreadPool.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -13394,12 +14019,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Threading.Timer/4.0.1": {
- "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
+ "System.Threading.Timer/4.3.0": {
+ "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
"type": "package",
- "path": "System.Threading.Timer/4.0.1",
+ "path": "System.Threading.Timer/4.3.0",
"files": [
- "System.Threading.Timer.4.0.1.nupkg.sha512",
+ "System.Threading.Timer.4.3.0.nupkg.sha512",
"System.Threading.Timer.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -13447,18 +14072,19 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.ReaderWriter/4.0.11": {
- "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
+ "System.Xml.ReaderWriter/4.3.0": {
+ "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
"type": "package",
- "path": "System.Xml.ReaderWriter/4.0.11",
+ "path": "System.Xml.ReaderWriter/4.3.0",
"files": [
- "System.Xml.ReaderWriter.4.0.11.nupkg.sha512",
+ "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
"System.Xml.ReaderWriter.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
+ "lib/net46/System.Xml.ReaderWriter.dll",
"lib/netcore50/System.Xml.ReaderWriter.dll",
"lib/netstandard1.3/System.Xml.ReaderWriter.dll",
"lib/portable-net45+win8+wp8+wpa81/_._",
@@ -13472,6 +14098,7 @@
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
+ "ref/net46/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.dll",
"ref/netcore50/System.Xml.ReaderWriter.xml",
"ref/netcore50/de/System.Xml.ReaderWriter.xml",
@@ -13515,12 +14142,12 @@
"ref/xamarinwatchos10/_._"
]
},
- "System.Xml.XDocument/4.0.11": {
- "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
+ "System.Xml.XDocument/4.3.0": {
+ "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
"type": "package",
- "path": "System.Xml.XDocument/4.0.11",
+ "path": "System.Xml.XDocument/4.3.0",
"files": [
- "System.Xml.XDocument.4.0.11.nupkg.sha512",
+ "System.Xml.XDocument.4.3.0.nupkg.sha512",
"System.Xml.XDocument.nuspec",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
@@ -13584,7 +14211,7 @@
]
},
"System.Xml.XmlDocument/4.0.1": {
- "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
+ "sha512": "QUdzLPVLBXg+3hQiTgLSy6lnMIN4Pj6+kRU2GJCwMooXHJvHp2PUjBg5Ms3r+ewPcu3dewET6v0a9UqPaUrTaw==",
"type": "package",
"path": "System.Xml.XmlDocument/4.0.1",
"files": [
@@ -13621,7 +14248,7 @@
]
},
"System.Xml.XPath/4.0.1": {
- "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
+ "sha512": "drxlpwgSyGH1S1lsW5pqBCQ7TLdAKjVl+G1F1HYAVDFdRBtAHCORwW2/IbMCidAb8jxjJPBTyUkcTrEedIXvoQ==",
"type": "package",
"path": "System.Xml.XPath/4.0.1",
"files": [
@@ -13658,7 +14285,7 @@
]
},
"System.Xml.XPath.XDocument/4.0.1": {
- "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==",
+ "sha512": "9beITE7Jz3Q0vTBbs7OeYVI57jpJJP5s5O7l6s5OnfOoY87o4lau9HbXARVaZ5leWeDPch/xvw7tO4oEBa2r2w==",
"type": "package",
"path": "System.Xml.XPath.XDocument/4.0.1",
"files": [
@@ -13694,58 +14321,58 @@
"ref/xamarinwatchos10/_._"
]
},
- "xunit/2.2.0-beta2-build3300": {
- "sha512": "jUMf+Hrw8+XZN56TfO+JjoibR5L806/kgDIkwCg9OXLlfnA4li4JTmH342ifYj1QMR10is8hfYYFTyjHq0+aQg==",
+ "xunit/2.2.0-beta4-build3444": {
+ "sha512": "Gd981l3FGdxwnnOrrj495BMy/zb07ZITSTnLvryaxnqTsqNXRH12fqJ4aliqc2nCFBZBstMYzLznbBy/53QEZA==",
"type": "package",
- "path": "xunit/2.2.0-beta2-build3300",
+ "path": "xunit/2.2.0-beta4-build3444",
"files": [
- "xunit.2.2.0-beta2-build3300.nupkg.sha512",
+ "xunit.2.2.0-beta4-build3444.nupkg.sha512",
"xunit.nuspec"
]
},
- "xunit.abstractions/2.0.1-rc2": {
- "sha512": "iUHMlyMDaXJ8N8qozg19tRlW0QiZPJ47ZJyV1fnpppGWdmukyq89/pg4HqpxQ52Co3Leo8NmiiYkB/gN48pZ+A==",
+ "xunit.abstractions/2.0.1": {
+ "sha512": "bDm/zdG5rnRDsobKuKwrvL4HccBdC0uvT12be6fG12P3d1U7u9Wkvfoq/PM2GeyIeb0Dtcmm/7k2oaawiqQ2Dg==",
"type": "package",
- "path": "xunit.abstractions/2.0.1-rc2",
+ "path": "xunit.abstractions/2.0.1",
"files": [
"lib/net35/xunit.abstractions.dll",
"lib/net35/xunit.abstractions.xml",
"lib/netstandard1.0/xunit.abstractions.dll",
"lib/netstandard1.0/xunit.abstractions.xml",
- "xunit.abstractions.2.0.1-rc2.nupkg.sha512",
+ "xunit.abstractions.2.0.1.nupkg.sha512",
"xunit.abstractions.nuspec"
]
},
- "xunit.assert/2.2.0-beta2-build3300": {
- "sha512": "5zsV2UhRQV5Ldme1N/NDhIBvQQTYdxmK87FXWWou1x3z7qpsZwe1YOjb0CY4F+1oXag8i9uTh/nZwv8jM66onA==",
+ "xunit.assert/2.2.0-beta4-build3444": {
+ "sha512": "ofTB1EEXB4A5hFbmvJHnjNGeazsyOsd8C2zfh/XJrCPKjdXXq/9TSD8xJn5JFUpO6PdArlS4bNAalhhijepjsw==",
"type": "package",
- "path": "xunit.assert/2.2.0-beta2-build3300",
+ "path": "xunit.assert/2.2.0-beta4-build3444",
"files": [
"lib/netstandard1.0/xunit.assert.dll",
"lib/netstandard1.0/xunit.assert.pdb",
"lib/netstandard1.0/xunit.assert.xml",
- "xunit.assert.2.2.0-beta2-build3300.nupkg.sha512",
+ "xunit.assert.2.2.0-beta4-build3444.nupkg.sha512",
"xunit.assert.nuspec"
]
},
- "xunit.core/2.2.0-beta2-build3300": {
- "sha512": "HgKP6+FUKcIcVFMDgoTCANRKOgGeEDvg2a2AL3mOyBHE//grWL1EO0KybxUw26S8fnNJrhmI5LBWyVUIsPxI5Q==",
+ "xunit.core/2.2.0-beta4-build3444": {
+ "sha512": "yGoZJbcxG2997f6Fy+2RNTRnW0Gz0lmFUUNLoa9RaXyQz/K/OsHXbSrOGMs7cxnXDfXMwjjrvDS1U4P34sOX1w==",
"type": "package",
- "path": "xunit.core/2.2.0-beta2-build3300",
+ "path": "xunit.core/2.2.0-beta4-build3444",
"files": [
"build/_desktop/xunit.execution.desktop.dll",
"build/netstandard1.0/_._",
"build/uap10.0/xunit.core.props",
"build/win81/xunit.core.props",
"build/wpa81/xunit.core.props",
- "xunit.core.2.2.0-beta2-build3300.nupkg.sha512",
+ "xunit.core.2.2.0-beta4-build3444.nupkg.sha512",
"xunit.core.nuspec"
]
},
- "xunit.extensibility.core/2.2.0-beta2-build3300": {
- "sha512": "d+UCqIL8Je3tSdhF7w6NZdzH2jYzNh2LhsMp0gUVAD3NgVEo2oK/3Xr7ZlYZM40Y6fJWoO46UntzrpNlix75mg==",
+ "xunit.extensibility.core/2.2.0-beta4-build3444": {
+ "sha512": "ISdMbAOe4SnsHMLejyZFWvTA/ZvrOxO/fo6GxCGRT6NufIUwa5K8Yinsav8pT2+c+6iWN9uNgsqnW3iR4takYg==",
"type": "package",
- "path": "xunit.extensibility.core/2.2.0-beta2-build3300",
+ "path": "xunit.extensibility.core/2.2.0-beta4-build3444",
"files": [
"lib/net45/xunit.core.dll",
"lib/net45/xunit.core.dll.tdnet",
@@ -13754,16 +14381,19 @@
"lib/net45/xunit.runner.tdnet.dll",
"lib/net45/xunit.runner.utility.desktop.dll",
"lib/netstandard1.0/xunit.core.dll",
+ "lib/netstandard1.0/xunit.core.dll.tdnet",
"lib/netstandard1.0/xunit.core.pdb",
"lib/netstandard1.0/xunit.core.xml",
- "xunit.extensibility.core.2.2.0-beta2-build3300.nupkg.sha512",
+ "lib/netstandard1.0/xunit.runner.tdnet.dll",
+ "lib/netstandard1.0/xunit.runner.utility.desktop.dll",
+ "xunit.extensibility.core.2.2.0-beta4-build3444.nupkg.sha512",
"xunit.extensibility.core.nuspec"
]
},
- "xunit.extensibility.execution/2.2.0-beta2-build3300": {
- "sha512": "z0DgzvWxQtXaj2qebFkW5f69ZItvY/YRWEbKwL0yIbvhiCViiuHlP+qvvloVlrlsOuo+Y/vfjQb/3Cz+ok/+5A==",
+ "xunit.extensibility.execution/2.2.0-beta4-build3444": {
+ "sha512": "H4elREzKuTxHF1Nha4TXdI3DI/l2IMiIeRa9BTjwpEXkJ6G1kO1QHBQ6PQvotjk727d7zctODU1BgBNlfpMi4g==",
"type": "package",
- "path": "xunit.extensibility.execution/2.2.0-beta2-build3300",
+ "path": "xunit.extensibility.execution/2.2.0-beta4-build3444",
"files": [
"lib/net45/xunit.execution.desktop.dll",
"lib/net45/xunit.execution.desktop.pdb",
@@ -13771,7 +14401,7 @@
"lib/netstandard1.0/xunit.execution.dotnet.dll",
"lib/netstandard1.0/xunit.execution.dotnet.pdb",
"lib/netstandard1.0/xunit.execution.dotnet.xml",
- "xunit.extensibility.execution.2.2.0-beta2-build3300.nupkg.sha512",
+ "xunit.extensibility.execution.2.2.0-beta4-build3444.nupkg.sha512",
"xunit.extensibility.execution.nuspec"
]
},
@@ -13804,127 +14434,127 @@
"xunit.runner.utility.nuspec"
]
},
- "MusicStore.Web/1.0.0": {
+ "MusicStore.Web/1.1.0": {
"type": "project",
"path": "../MusicStore.Web/project.json",
"msbuildProject": "../MusicStore.Web/MusicStore.Web.xproj"
},
- "MyTested.AspNetCore.Mvc/1.0.0": {
+ "MyTested.AspNetCore.Mvc/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc/MyTested.AspNetCore.Mvc.xproj"
},
- "MyTested.AspNetCore.Mvc.Abstractions/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Abstractions/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Abstractions/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Abstractions/MyTested.AspNetCore.Mvc.Abstractions.xproj"
},
- "MyTested.AspNetCore.Mvc.Authentication/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Authentication/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Authentication/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Authentication/MyTested.AspNetCore.Mvc.Authentication.xproj"
},
- "MyTested.AspNetCore.Mvc.Caching/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Caching/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Caching/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Caching/MyTested.AspNetCore.Mvc.Caching.xproj"
},
- "MyTested.AspNetCore.Mvc.Configuration/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Configuration/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Configuration/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Configuration/MyTested.AspNetCore.Mvc.Configuration.xproj"
},
- "MyTested.AspNetCore.Mvc.Controllers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Controllers/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Controllers/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Controllers/MyTested.AspNetCore.Mvc.Controllers.xproj"
},
- "MyTested.AspNetCore.Mvc.Core/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Core/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Core/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Core/MyTested.AspNetCore.Mvc.Core.xproj"
},
- "MyTested.AspNetCore.Mvc.DataAnnotations/1.0.0": {
+ "MyTested.AspNetCore.Mvc.DataAnnotations/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.DataAnnotations/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.DataAnnotations/MyTested.AspNetCore.Mvc.DataAnnotations.xproj"
},
- "MyTested.AspNetCore.Mvc.DependencyInjection/1.0.0": {
+ "MyTested.AspNetCore.Mvc.DependencyInjection/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.DependencyInjection/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.DependencyInjection/MyTested.AspNetCore.Mvc.DependencyInjection.xproj"
},
- "MyTested.AspNetCore.Mvc.EntityFrameworkCore/1.0.0": {
+ "MyTested.AspNetCore.Mvc.EntityFrameworkCore/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.EntityFrameworkCore/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.EntityFrameworkCore/MyTested.AspNetCore.Mvc.EntityFrameworkCore.xproj"
},
- "MyTested.AspNetCore.Mvc.Helpers/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Helpers/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Helpers/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Helpers/MyTested.AspNetCore.Mvc.Helpers.xproj"
},
- "MyTested.AspNetCore.Mvc.Http/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Http/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Http/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Http/MyTested.AspNetCore.Mvc.Http.xproj"
},
- "MyTested.AspNetCore.Mvc.Licensing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Licensing/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Licensing/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Licensing/MyTested.AspNetCore.Mvc.Licensing.xproj"
},
- "MyTested.AspNetCore.Mvc.Models/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Models/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Models/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Models/MyTested.AspNetCore.Mvc.Models.xproj"
},
- "MyTested.AspNetCore.Mvc.ModelState/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ModelState/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.ModelState/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.ModelState/MyTested.AspNetCore.Mvc.ModelState.xproj"
},
- "MyTested.AspNetCore.Mvc.Options/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Options/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Options/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Options/MyTested.AspNetCore.Mvc.Options.xproj"
},
- "MyTested.AspNetCore.Mvc.Routing/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Routing/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Routing/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Routing/MyTested.AspNetCore.Mvc.Routing.xproj"
},
- "MyTested.AspNetCore.Mvc.Session/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Session/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Session/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Session/MyTested.AspNetCore.Mvc.Session.xproj"
},
- "MyTested.AspNetCore.Mvc.TempData/1.0.0": {
+ "MyTested.AspNetCore.Mvc.TempData/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.TempData/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.TempData/MyTested.AspNetCore.Mvc.TempData.xproj"
},
- "MyTested.AspNetCore.Mvc.Universe/1.0.0": {
+ "MyTested.AspNetCore.Mvc.Universe/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.Universe/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.Universe/MyTested.AspNetCore.Mvc.Universe.xproj"
},
- "MyTested.AspNetCore.Mvc.ViewActionResults/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewActionResults/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.ViewActionResults/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.ViewActionResults/MyTested.AspNetCore.Mvc.ViewActionResults.xproj"
},
- "MyTested.AspNetCore.Mvc.ViewComponents/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewComponents/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.ViewComponents/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.ViewComponents/MyTested.AspNetCore.Mvc.ViewComponents.xproj"
},
- "MyTested.AspNetCore.Mvc.ViewData/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewData/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.ViewData/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.ViewData/MyTested.AspNetCore.Mvc.ViewData.xproj"
},
- "MyTested.AspNetCore.Mvc.ViewFeatures/1.0.0": {
+ "MyTested.AspNetCore.Mvc.ViewFeatures/1.1.0": {
"type": "project",
"path": "../../../src/MyTested.AspNetCore.Mvc.ViewFeatures/project.json",
"msbuildProject": "../../../src/MyTested.AspNetCore.Mvc.ViewFeatures/MyTested.AspNetCore.Mvc.ViewFeatures.xproj"
@@ -13932,13 +14562,14 @@
},
"projectFileDependencyGroups": {
"": [
+ "Microsoft.DotNet.InternalAbstractions >= 1.0.0",
"MusicStore.Web",
- "MyTested.AspNetCore.Mvc.Universe >= 1.0.0",
+ "MyTested.AspNetCore.Mvc.Universe >= 1.1.0",
"dotnet-test-xunit >= 2.2.0-*",
"xunit >= 2.2.0-*"
],
- ".NETCoreApp,Version=v1.0": [
- "Microsoft.NETCore.App >= 1.0.1"
+ ".NETCoreApp,Version=v1.1": [
+ "Microsoft.NETCore.App >= 1.1.0"
],
".NETFramework,Version=v4.5.1": []
},
diff --git a/samples/MusicStore/MusicStore.Web/Areas/Admin/Controllers/StoreManagerController.cs b/samples/MusicStore/MusicStore.Web/Areas/Admin/Controllers/StoreManagerController.cs
index 6ae41ca8d..9a75e4a4c 100644
--- a/samples/MusicStore/MusicStore.Web/Areas/Admin/Controllers/StoreManagerController.cs
+++ b/samples/MusicStore/MusicStore.Web/Areas/Admin/Controllers/StoreManagerController.cs
@@ -197,7 +197,7 @@ private static string GetCacheKey(int id)
return string.Format("album_{0}", id);
}
-#if TESTING
+ // NOTE: this is used for end to end testing only
//
// GET: /StoreManager/GetAlbumIdFromName
// Note: Added for automated testing purpose. Application does not use this.
@@ -215,6 +215,5 @@ public async Task GetAlbumIdFromName(string albumName)
return Content(album.AlbumId.ToString());
}
-#endif
}
}
\ No newline at end of file
diff --git a/samples/MusicStore/MusicStore.Web/Components/CartSummaryComponent.cs b/samples/MusicStore/MusicStore.Web/Components/CartSummaryComponent.cs
index 63524e82a..47e2fc36c 100644
--- a/samples/MusicStore/MusicStore.Web/Components/CartSummaryComponent.cs
+++ b/samples/MusicStore/MusicStore.Web/Components/CartSummaryComponent.cs
@@ -1,3 +1,4 @@
+using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
diff --git a/samples/MusicStore/MusicStore.Web/Components/GenreMenuComponent.cs b/samples/MusicStore/MusicStore.Web/Components/GenreMenuComponent.cs
index d2ea171b1..94f4d189a 100644
--- a/samples/MusicStore/MusicStore.Web/Components/GenreMenuComponent.cs
+++ b/samples/MusicStore/MusicStore.Web/Components/GenreMenuComponent.cs
@@ -1,3 +1,4 @@
+using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
diff --git a/samples/MusicStore/MusicStore.Web/Controllers/AccountController.cs b/samples/MusicStore/MusicStore.Web/Controllers/AccountController.cs
index 3ab182275..65c0c6c06 100644
--- a/samples/MusicStore/MusicStore.Web/Controllers/AccountController.cs
+++ b/samples/MusicStore/MusicStore.Web/Controllers/AccountController.cs
@@ -420,14 +420,13 @@ public async Task ExternalLoginConfirmation(ExternalLoginConfirmat
var user = new ApplicationUser { UserName = model.Email, Email = model.Email };
var result = await UserManager.CreateAsync(user);
-#if TESTING
+ // NOTE: Used for end to end testing only
//Just for automated testing adding a claim named 'ManageStore' - Not required for production
var manageClaim = info.Principal.Claims.Where(c => c.Type == "ManageStore").FirstOrDefault();
if (manageClaim != null)
{
await UserManager.AddClaimAsync(user, manageClaim);
}
-#endif
if (result.Succeeded)
{
diff --git a/samples/MusicStore/MusicStore.Web/Controllers/CheckoutController.cs b/samples/MusicStore/MusicStore.Web/Controllers/CheckoutController.cs
index d4458945e..5f7a5e2ae 100644
--- a/samples/MusicStore/MusicStore.Web/Controllers/CheckoutController.cs
+++ b/samples/MusicStore/MusicStore.Web/Controllers/CheckoutController.cs
@@ -1,5 +1,6 @@
using System;
using System.Linq;
+using System.Security.Claims;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
diff --git a/samples/MusicStore/MusicStore.Web/Controllers/HomeController.cs b/samples/MusicStore/MusicStore.Web/Controllers/HomeController.cs
index ff51c0971..992a4f25b 100644
--- a/samples/MusicStore/MusicStore.Web/Controllers/HomeController.cs
+++ b/samples/MusicStore/MusicStore.Web/Controllers/HomeController.cs
@@ -18,7 +18,6 @@ public HomeController(IOptions options)
{
_appSettings = options.Value;
}
-
//
// GET: /Home/
public async Task Index(
diff --git a/samples/MusicStore/MusicStore.Web/Controllers/ManageController.cs b/samples/MusicStore/MusicStore.Web/Controllers/ManageController.cs
index e114fd344..2faf85760 100644
--- a/samples/MusicStore/MusicStore.Web/Controllers/ManageController.cs
+++ b/samples/MusicStore/MusicStore.Web/Controllers/ManageController.cs
@@ -1,4 +1,5 @@
using System.Linq;
+using System.Security.Claims;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Identity;
diff --git a/samples/MusicStore/MusicStore.Web/Controllers/ShoppingCartController.cs b/samples/MusicStore/MusicStore.Web/Controllers/ShoppingCartController.cs
index 2581b829c..f99d99977 100644
--- a/samples/MusicStore/MusicStore.Web/Controllers/ShoppingCartController.cs
+++ b/samples/MusicStore/MusicStore.Web/Controllers/ShoppingCartController.cs
@@ -41,7 +41,7 @@ public async Task Index()
//
// GET: /ShoppingCart/AddToCart/5
- public async Task AddToCart(int id)
+ public async Task AddToCart(int id, CancellationToken requestAborted)
{
// Retrieve the album from the database
var addedAlbum = await DbContext.Albums
@@ -52,7 +52,7 @@ public async Task AddToCart(int id)
await cart.AddToCart(addedAlbum);
- await DbContext.SaveChangesAsync();
+ await DbContext.SaveChangesAsync(requestAborted);
_logger.LogInformation("Album {albumId} was added to the cart.", addedAlbum.AlbumId);
// Go back to the main store page for more shopping
diff --git a/samples/MusicStore/MusicStore.Web/Models/SampleData.cs b/samples/MusicStore/MusicStore.Web/Models/SampleData.cs
index 1b83f2dd5..dc0bf0412 100644
--- a/samples/MusicStore/MusicStore.Web/Models/SampleData.cs
+++ b/samples/MusicStore/MusicStore.Web/Models/SampleData.cs
@@ -17,33 +17,34 @@ public static class SampleData
const string defaultAdminUserName = "DefaultAdminUserName";
const string defaultAdminPassword = "DefaultAdminPassword";
- public static void InitializeMusicStoreDatabase(IServiceProvider serviceProvider, bool createUsers = true)
+ public static async Task InitializeMusicStoreDatabaseAsync(IServiceProvider serviceProvider, bool createUsers = true)
{
using (var serviceScope = serviceProvider.GetRequiredService().CreateScope())
{
var db = serviceScope.ServiceProvider.GetService();
- if (db.Database.EnsureCreated())
+ if (await db.Database.EnsureCreatedAsync())
{
- InsertTestData(serviceProvider);
+ await InsertTestData(serviceProvider);
if (createUsers)
{
- CreateAdminUser(serviceProvider);
+ await CreateAdminUser(serviceProvider);
}
}
}
}
- private static void InsertTestData(IServiceProvider serviceProvider)
+ private static async Task InsertTestData(IServiceProvider serviceProvider)
{
var albums = GetAlbums(imgUrl, Genres, Artists);
- AddOrUpdate(serviceProvider, g => g.GenreId, Genres.Select(genre => genre.Value));
- AddOrUpdate(serviceProvider, a => a.ArtistId, Artists.Select(artist => artist.Value));
- AddOrUpdate(serviceProvider, a => a.AlbumId, albums);
+ await AddOrUpdateAsync(serviceProvider, g => g.GenreId, Genres.Select(genre => genre.Value));
+ await AddOrUpdateAsync(serviceProvider, a => a.ArtistId, Artists.Select(artist => artist.Value));
+ await AddOrUpdateAsync(serviceProvider, a => a.AlbumId, albums);
}
-
- private static void AddOrUpdate(
+
+ // TODO [EF] This may be replaced by a first class mechanism in EF
+ private static async Task AddOrUpdateAsync(
IServiceProvider serviceProvider,
Func propertyToMatch, IEnumerable entities)
where TEntity : class
@@ -66,7 +67,7 @@ private static void AddOrUpdate(
: EntityState.Added;
}
- db.SaveChanges();
+ await db.SaveChangesAsync();
}
}
@@ -75,7 +76,7 @@ private static void AddOrUpdate(
///
///
///
- private static void CreateAdminUser(IServiceProvider serviceProvider)
+ private static async Task CreateAdminUser(IServiceProvider serviceProvider)
{
var env = serviceProvider.GetService();
@@ -95,30 +96,29 @@ private static void CreateAdminUser(IServiceProvider serviceProvider)
// await roleManager.CreateAsync(new IdentityRole(adminRole));
//}
- var user = userManager.FindByNameAsync(configuration[defaultAdminUserName]).ConfigureAwait(false).GetAwaiter().GetResult();
+ var user = await userManager.FindByNameAsync(configuration[defaultAdminUserName]);
if (user == null)
{
user = new ApplicationUser { UserName = configuration[defaultAdminUserName] };
- userManager.CreateAsync(user, configuration[defaultAdminPassword]).ConfigureAwait(false).GetAwaiter().GetResult();
+ await userManager.CreateAsync(user, configuration[defaultAdminPassword]);
//await userManager.AddToRoleAsync(user, adminRole);
- userManager.AddClaimAsync(user, new Claim("ManageStore", "Allowed")).ConfigureAwait(false).GetAwaiter().GetResult();
+ await userManager.AddClaimAsync(user, new Claim("ManageStore", "Allowed"));
}
-#if TESTING
+ // NOTE: For end to end testing only
var envPerfLab = configuration["PERF_LAB"];
if (envPerfLab == "true")
{
for (int i = 0; i < 100; ++i)
{
var email = string.Format("User{0:D3}@example.com", i);
- var normalUser = userManager.FindByEmailAsync(email).ConfigureAwait(false).GetAwaiter().GetResult();
+ var normalUser = await userManager.FindByEmailAsync(email);
if (normalUser == null)
{
- userManager.CreateAsync(new ApplicationUser { UserName = email, Email = email }, "Password~!1").ConfigureAwait(false).GetAwaiter().GetResult();
+ await userManager.CreateAsync(new ApplicationUser { UserName = email, Email = email }, "Password~!1");
}
}
}
-#endif
}
private static Album[] GetAlbums(string imgUrl, Dictionary genres, Dictionary artists)
diff --git a/samples/MusicStore/MusicStore.Web/MusicStore.Web.xproj b/samples/MusicStore/MusicStore.Web/MusicStore.Web.xproj
index 56f9933d0..acb1390fa 100644
--- a/samples/MusicStore/MusicStore.Web/MusicStore.Web.xproj
+++ b/samples/MusicStore/MusicStore.Web/MusicStore.Web.xproj
@@ -7,18 +7,12 @@
c1d5718b-935e-4465-99ae-04838deea708
- MusicStore
.\obj
.\bin\
2.0
+ 5001
-
-
-
-
-
-
\ No newline at end of file
diff --git a/samples/MusicStore/MusicStore.Web/Platform.cs b/samples/MusicStore/MusicStore.Web/Platform.cs
index 30258cde1..aee70ad68 100644
--- a/samples/MusicStore/MusicStore.Web/Platform.cs
+++ b/samples/MusicStore/MusicStore.Web/Platform.cs
@@ -1,6 +1,5 @@
using System;
using System.Runtime.InteropServices;
-using Microsoft.Extensions.PlatformAbstractions;
namespace MusicStore
{
diff --git a/samples/MusicStore/MusicStore.Web/Program.cs b/samples/MusicStore/MusicStore.Web/Program.cs
index 34ef678e6..2b3cbfb80 100644
--- a/samples/MusicStore/MusicStore.Web/Program.cs
+++ b/samples/MusicStore/MusicStore.Web/Program.cs
@@ -32,6 +32,7 @@ public static void Main(string[] args)
builder.UseWebListener(options =>
{
options.ListenerSettings.Authentication.Schemes = AuthenticationSchemes.NTLM;
+ options.ListenerSettings.Authentication.AllowAnonymous = false;
});
}
else
diff --git a/samples/MusicStore/MusicStore.Web/Properties/launchSettings.json b/samples/MusicStore/MusicStore.Web/Properties/launchSettings.json
index 766f7ef6d..a2f3822f0 100644
--- a/samples/MusicStore/MusicStore.Web/Properties/launchSettings.json
+++ b/samples/MusicStore/MusicStore.Web/Properties/launchSettings.json
@@ -12,13 +12,16 @@
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
- "Hosting:Environment": "Development"
+ "ASPNETCORE_ENVIRONMENT": "Development"
}
},
- "MusicStore.Web": {
+ "MusicStore": {
"commandName": "Project",
"launchBrowser": true,
- "launchUrl": "http://localhost:5000"
+ "launchUrl": "http://localhost:5000/",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
}
}
}
\ No newline at end of file
diff --git a/samples/MusicStore/MusicStore.Web/Startup.cs b/samples/MusicStore/MusicStore.Web/Startup.cs
index 9ad2b3e16..6acb577bc 100644
--- a/samples/MusicStore/MusicStore.Web/Startup.cs
+++ b/samples/MusicStore/MusicStore.Web/Startup.cs
@@ -36,7 +36,7 @@ public void ConfigureServices(IServiceCollection services)
services.Configure(Configuration.GetSection("AppSettings"));
// Add EF services to the services container
- if (!_platform.UseInMemoryStore)
+ if (_platform.UseInMemoryStore)
{
services.AddDbContext(options =>
options.UseInMemoryDatabase());
@@ -208,7 +208,7 @@ public void Configure(IApplicationBuilder app)
});
//Populates the MusicStore sample data
- SampleData.InitializeMusicStoreDatabase(app.ApplicationServices, false);
+ SampleData.InitializeMusicStoreDatabaseAsync(app.ApplicationServices).Wait();
}
}
}
\ No newline at end of file
diff --git a/samples/MusicStore/MusicStore.Web/StartupNtlmAuthentication.cs b/samples/MusicStore/MusicStore.Web/StartupNtlmAuthentication.cs
index 34ed0273d..27cbef237 100644
--- a/samples/MusicStore/MusicStore.Web/StartupNtlmAuthentication.cs
+++ b/samples/MusicStore/MusicStore.Web/StartupNtlmAuthentication.cs
@@ -1,5 +1,6 @@
using System;
using System.Security.Claims;
+using System.Security.Principal;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
@@ -9,7 +10,6 @@
using Microsoft.Extensions.Logging;
using MusicStore.Components;
using MusicStore.Models;
-using System.Threading.Tasks;
namespace MusicStore
{
@@ -110,8 +110,7 @@ public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory)
// administrator. But this can be changed to suit the needs.
var identity = (ClaimsIdentity)context.User.Identity;
- if (context.User.Identity.Name == Environment.GetEnvironmentVariable("USERDOMAIN") + "\\"
- + Environment.GetEnvironmentVariable("USERNAME"))
+ if (context.User.Identity.Name == WindowsIdentity.GetCurrent().Name)
{
identity.AddClaim(new Claim("ManageStore", "Allowed"));
}
@@ -144,7 +143,7 @@ public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory)
});
//Populates the MusicStore sample data
- SampleData.InitializeMusicStoreDatabase(app.ApplicationServices, false);
+ SampleData.InitializeMusicStoreDatabaseAsync(app.ApplicationServices, false).Wait();
}
}
}
diff --git a/samples/MusicStore/MusicStore.Web/StartupOpenIdConnect.cs b/samples/MusicStore/MusicStore.Web/StartupOpenIdConnect.cs
index 121922c88..8b16d4a04 100644
--- a/samples/MusicStore/MusicStore.Web/StartupOpenIdConnect.cs
+++ b/samples/MusicStore/MusicStore.Web/StartupOpenIdConnect.cs
@@ -8,7 +8,6 @@
using Microsoft.IdentityModel.Protocols.OpenIdConnect;
using MusicStore.Components;
using MusicStore.Models;
-using System.Threading.Tasks;
namespace MusicStore
{
@@ -152,7 +151,7 @@ public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory)
});
//Populates the MusicStore sample data
- SampleData.InitializeMusicStoreDatabase(app.ApplicationServices, false);
+ SampleData.InitializeMusicStoreDatabaseAsync(app.ApplicationServices).Wait();
}
}
}
diff --git a/samples/MusicStore/MusicStore.Web/Views/Shared/Components/Announcement/Default.cshtml b/samples/MusicStore/MusicStore.Web/Views/Shared/Components/Announcement/Default.cshtml
index 98e5cffbe..52e11e319 100644
--- a/samples/MusicStore/MusicStore.Web/Views/Shared/Components/Announcement/Default.cshtml
+++ b/samples/MusicStore/MusicStore.Web/Views/Shared/Components/Announcement/Default.cshtml
@@ -5,6 +5,6 @@
- @Model.Title
+ @Model.Title
}
\ No newline at end of file
diff --git a/samples/MusicStore/MusicStore.Web/Views/Shared/Components/CartSummary/Default.cshtml b/samples/MusicStore/MusicStore.Web/Views/Shared/Components/CartSummary/Default.cshtml
index d08e46e5e..9e9dd038e 100644
--- a/samples/MusicStore/MusicStore.Web/Views/Shared/Components/CartSummary/Default.cshtml
+++ b/samples/MusicStore/MusicStore.Web/Views/Shared/Components/CartSummary/Default.cshtml
@@ -1,7 +1,7 @@
@if (ViewBag.CartCount > 0)
{
-
+
@ViewBag.CartCount
diff --git a/samples/MusicStore/MusicStore.Web/Views/Shared/Components/GenreMenu/Default.cshtml b/samples/MusicStore/MusicStore.Web/Views/Shared/Components/GenreMenu/Default.cshtml
index 601d74c82..aad147362 100644
--- a/samples/MusicStore/MusicStore.Web/Views/Shared/Components/GenreMenu/Default.cshtml
+++ b/samples/MusicStore/MusicStore.Web/Views/Shared/Components/GenreMenu/Default.cshtml
@@ -1,12 +1,12 @@
@model IEnumerable
- Store
+ Store