Reacting to KRuntime renames

This commit is contained in:
Pranav K 2015-01-20 01:49:44 -08:00
parent 32cf5e9ee4
commit 8c3edc158f
1 changed files with 1 additions and 1 deletions

View File

@ -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<AssemblyInformationalVersionAttribute>();
return version?.InformationalVersion;
}