From 4e94fec1b16ae529ca7de91f91204e7ef39b3893 Mon Sep 17 00:00:00 2001 From: John Luo Date: Fri, 10 Feb 2017 16:25:36 -0800 Subject: [PATCH 1/3] 1.0.4 patch train updates --- samples/HotAddSample/project.json | 2 +- samples/SelfHostServer/project.json | 2 +- src/Microsoft.AspNetCore.Server.WebListener/project.json | 4 ++-- src/Microsoft.Net.Http.Server/project.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/samples/HotAddSample/project.json b/samples/HotAddSample/project.json index bc3ce03..4f05b94 100644 --- a/samples/HotAddSample/project.json +++ b/samples/HotAddSample/project.json @@ -2,7 +2,7 @@ "version": "1.1.0-*", "dependencies": { "Microsoft.AspNetCore.Server.WebListener": "1.0.2", - "Microsoft.Extensions.Logging.Console": "1.0.1" + "Microsoft.Extensions.Logging.Console": "1.0.2" }, "buildOptions": { "emitEntryPoint": true diff --git a/samples/SelfHostServer/project.json b/samples/SelfHostServer/project.json index 5036910..3e7772e 100644 --- a/samples/SelfHostServer/project.json +++ b/samples/SelfHostServer/project.json @@ -1,7 +1,7 @@ { "dependencies": { "Microsoft.AspNetCore.Server.WebListener": "1.0.2", - "Microsoft.Extensions.Logging.Console": "1.0.1" + "Microsoft.Extensions.Logging.Console": "1.0.2" }, "buildOptions": { "emitEntryPoint": true diff --git a/src/Microsoft.AspNetCore.Server.WebListener/project.json b/src/Microsoft.AspNetCore.Server.WebListener/project.json index cadfdcc..e8a185c 100644 --- a/src/Microsoft.AspNetCore.Server.WebListener/project.json +++ b/src/Microsoft.AspNetCore.Server.WebListener/project.json @@ -8,8 +8,8 @@ ] }, "dependencies": { - "Microsoft.AspNetCore.Hosting": "1.0.1", - "Microsoft.Net.Http.Headers": "1.0.1", + "Microsoft.AspNetCore.Hosting": "1.0.2", + "Microsoft.Net.Http.Headers": "1.0.2", "Microsoft.Net.Http.Server": "1.0.2" }, "buildOptions": { diff --git a/src/Microsoft.Net.Http.Server/project.json b/src/Microsoft.Net.Http.Server/project.json index e051596..a58b29d 100644 --- a/src/Microsoft.Net.Http.Server/project.json +++ b/src/Microsoft.Net.Http.Server/project.json @@ -8,7 +8,7 @@ ] }, "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "1.0.1", + "Microsoft.Extensions.Logging.Abstractions": "1.0.2", "Microsoft.Extensions.Primitives": "1.0.1" }, "buildOptions": { From 7b1244bab09d81b219721e0d0639200024bcd434 Mon Sep 17 00:00:00 2001 From: John Luo Date: Sun, 12 Feb 2017 17:20:46 -0800 Subject: [PATCH 2/3] Update to Microsoft.NETCore.App 1.0.4 and pin cli to 1.0.0-preview2-003154 --- global.json | 2 +- samples/HelloWorld/project.json | 2 +- samples/HotAddSample/project.json | 2 +- samples/SelfHostServer/project.json | 2 +- .../project.json | 2 +- test/Microsoft.Net.Http.Server.FunctionalTests/project.json | 2 +- test/Microsoft.Net.Http.Server.Tests/project.json | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/global.json b/global.json index d0ea502..33c9eb2 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "projects": ["src", "test"], "sdk": { - "version": "1.0.0-preview2-1-003177" + "version": "1.0.0-preview2-003154" } } diff --git a/samples/HelloWorld/project.json b/samples/HelloWorld/project.json index 27ec600..79d43ad 100644 --- a/samples/HelloWorld/project.json +++ b/samples/HelloWorld/project.json @@ -13,7 +13,7 @@ "netcoreapp1.0": { "dependencies": { "Microsoft.NETCore.App": { - "version": "1.0.3", + "version": "1.0.4", "type": "platform" } } diff --git a/samples/HotAddSample/project.json b/samples/HotAddSample/project.json index 4f05b94..c70541d 100644 --- a/samples/HotAddSample/project.json +++ b/samples/HotAddSample/project.json @@ -15,7 +15,7 @@ "netcoreapp1.0": { "dependencies": { "Microsoft.NETCore.App": { - "version": "1.0.3", + "version": "1.0.4", "type": "platform" } } diff --git a/samples/SelfHostServer/project.json b/samples/SelfHostServer/project.json index 3e7772e..85fe723 100644 --- a/samples/SelfHostServer/project.json +++ b/samples/SelfHostServer/project.json @@ -14,7 +14,7 @@ "netcoreapp1.0": { "dependencies": { "Microsoft.NETCore.App": { - "version": "1.0.3", + "version": "1.0.4", "type": "platform" } } diff --git a/test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json b/test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json index 6e87c34..b00d599 100644 --- a/test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json +++ b/test/Microsoft.AspNetCore.Server.WebListener.FunctionalTests/project.json @@ -14,7 +14,7 @@ "netcoreapp1.0": { "dependencies": { "Microsoft.NETCore.App": { - "version": "1.0.3", + "version": "1.0.4", "type": "platform" }, "System.Net.Http.WinHttpHandler": "4.0.0-*", diff --git a/test/Microsoft.Net.Http.Server.FunctionalTests/project.json b/test/Microsoft.Net.Http.Server.FunctionalTests/project.json index adefea0..3dd1771 100644 --- a/test/Microsoft.Net.Http.Server.FunctionalTests/project.json +++ b/test/Microsoft.Net.Http.Server.FunctionalTests/project.json @@ -10,7 +10,7 @@ "netcoreapp1.0": { "dependencies": { "Microsoft.NETCore.App": { - "version": "1.0.3", + "version": "1.0.4", "type": "platform" }, "System.Net.Http": "4.1.1", diff --git a/test/Microsoft.Net.Http.Server.Tests/project.json b/test/Microsoft.Net.Http.Server.Tests/project.json index ca7ce38..3702b9b 100644 --- a/test/Microsoft.Net.Http.Server.Tests/project.json +++ b/test/Microsoft.Net.Http.Server.Tests/project.json @@ -9,7 +9,7 @@ "netcoreapp1.0": { "dependencies": { "Microsoft.NETCore.App": { - "version": "1.0.3", + "version": "1.0.4", "type": "platform" } }, From 2110aae5577693c5ba05cd56234196d381317af7 Mon Sep 17 00:00:00 2001 From: John Luo Date: Mon, 13 Feb 2017 12:55:25 -0800 Subject: [PATCH 3/3] Update NuGet.config --- NuGet.config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NuGet.config b/NuGet.config index 06aa92d..9345fbb 100644 --- a/NuGet.config +++ b/NuGet.config @@ -3,7 +3,7 @@ - + - \ No newline at end of file +