From 10a32fda26132bcd24e26a43c49e5facf02654f1 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Mon, 15 Dec 2014 14:44:30 -0800 Subject: [PATCH] Reacting to System.Threading version changes * Sorting project.json references alphabetically --- .../project.json | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Microsoft.AspNet.Server.Kestrel/project.json b/src/Microsoft.AspNet.Server.Kestrel/project.json index 7bab92a7be..df54825460 100644 --- a/src/Microsoft.AspNet.Server.Kestrel/project.json +++ b/src/Microsoft.AspNet.Server.Kestrel/project.json @@ -8,21 +8,21 @@ "aspnet50": { }, "aspnetcore50": { "dependencies": { - "System.Threading.ThreadPool": "4.0.10-beta-*", - "System.Diagnostics.Debug": "4.0.10-beta-*", - "System.Threading.Thread": "4.0.0-beta-*", - "System.Diagnostics.TraceSource": "4.0.0-beta-*", - "System.Text.Encoding": "4.0.10-beta-*", - "System.Threading.Tasks": "4.0.10-beta-*", - "System.Diagnostics.Tracing": "4.0.10-beta-*", "System.Collections": "4.0.10-beta-*", + "System.Diagnostics.Debug": "4.0.10-beta-*", + "System.Diagnostics.TraceSource": "4.0.0-beta-*", + "System.Diagnostics.Tracing": "4.0.10-beta-*", + "System.Globalization": "4.0.10-beta-*", "System.IO": "4.0.10-beta-*", "System.Linq": "4.0.0-beta-*", "System.Net.Primitives": "4.0.10-beta-*", "System.Runtime.Extensions": "4.0.10-beta-*", - "System.Threading": "4.0.0-beta-*", - "System.Globalization": "4.0.10-beta-*", - "System.Runtime.InteropServices": "4.0.20-beta-*" + "System.Runtime.InteropServices": "4.0.20-beta-*", + "System.Text.Encoding": "4.0.10-beta-*", + "System.Threading": "4.0.10-beta-*", + "System.Threading.Tasks": "4.0.10-beta-*", + "System.Threading.Thread": "4.0.0-beta-*", + "System.Threading.ThreadPool": "4.0.10-beta-*" } } },