From 8c3edc158f25a53112d7872b70c39f7fe2abdb7d Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 20 Jan 2015 01:49:44 -0800 Subject: [PATCH] Reacting to KRuntime renames --- src/Microsoft.AspNet.Diagnostics/RuntimeInfoMiddleware.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Diagnostics/RuntimeInfoMiddleware.cs b/src/Microsoft.AspNet.Diagnostics/RuntimeInfoMiddleware.cs index b3988d8cfb..57286763a4 100644 --- a/src/Microsoft.AspNet.Diagnostics/RuntimeInfoMiddleware.cs +++ b/src/Microsoft.AspNet.Diagnostics/RuntimeInfoMiddleware.cs @@ -65,7 +65,7 @@ namespace Microsoft.AspNet.Diagnostics private static string GetRuntimeVersion() { - var klr = Assembly.Load(new AssemblyName("klr.host")); + var klr = Assembly.Load(new AssemblyName("dotnet.host")); var version = klr.GetCustomAttribute(); return version?.InformationalVersion; }