Fixing runtime info middleware on coreclr

Fixes: https://github.com/aspnet/Diagnostics/issues/108
This commit is contained in:
Praburaj 2015-04-15 11:04:03 -07:00
parent 14ee7abf22
commit 7f83cc4e99
1 changed files with 7 additions and 8 deletions

View File

@ -1,15 +1,13 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Reflection;
using System.Threading.Tasks;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Diagnostics.Views;
using Microsoft.AspNet.Http;
using Microsoft.Framework.Runtime;
using System.Linq;
using System.Reflection;
using Microsoft.Framework.Internal;
using Microsoft.Framework.Runtime;
namespace Microsoft.AspNet.Diagnostics
{
@ -64,11 +62,12 @@ namespace Microsoft.AspNet.Diagnostics
return model;
}
private static string GetRuntimeVersion()
private string GetRuntimeVersion()
{
var klr = Assembly.Load(new AssemblyName("dnx.host"));
var version = klr.GetCustomAttribute<AssemblyInformationalVersionAttribute>();
var version = _libraryManager
.GetType().GetTypeInfo().Assembly
.GetCustomAttribute<AssemblyInformationalVersionAttribute>();
return version?.InformationalVersion;
}
}
}
}