From 76f09e343675809db502109e980c399eee1abff1 Mon Sep 17 00:00:00 2001 From: Dave Tillman Date: Fri, 18 Nov 2016 07:24:40 -0700 Subject: [PATCH] Fix project.json --- README.md | 2 +- .../project.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a5b8524..092b858 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ To run the unit tests: 3. Install .NET Core SDK 4. dotnet restore test 5. cd test\ (e.g. cd test/Steeltoe.Extensions.Configuration.CloudFoundry.Test) -6. dotnet test --framework netcoreapp1.0 +6. dotnet test --framework netcoreapp1.1 # Sample Applications See the [Samples](https://github.com/SteeltoeOSS/Samples) repo for examples of how to use these packages. diff --git a/src/Steeltoe.Extensions.Configuration.ConfigServer/project.json b/src/Steeltoe.Extensions.Configuration.ConfigServer/project.json index 02d3825..76db221 100644 --- a/src/Steeltoe.Extensions.Configuration.ConfigServer/project.json +++ b/src/Steeltoe.Extensions.Configuration.ConfigServer/project.json @@ -23,7 +23,7 @@ "netstandard1.3": { "dependencies": { "System.Threading.Thread": "4.3.0", - "System.Net.Http.WinHttpHandler": "4.3.0", + "System.Net.Http.WinHttpHandler": "4.3.0" }, "imports": [ "portable-net451+win8" @@ -42,6 +42,5 @@ "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0", "Microsoft.Extensions.PlatformAbstractions": "1.1.0", "Newtonsoft.Json": "9.0.1" - } }