有关ASP.Net Core的信息页面

时间:2016-08-28 21:47:41

标签: asp.net-core .net-core

请看看这2个问题: Asp/asp.net Hosting Info PageIs there an equivalent to phpinfo() in ASP.NET?

使用2个问题中的信息,我有2个简单的文件,“info.php”和“info.aspx”,其中“info.aspx”只包含:

<%@ Page Trace="true"  Language="C#" 
    ContentType="text/html" ResponseEncoding="utf-8" %>

和“info.php”包含:

<?php echo phpinfo();?>

现在,我想要一个单页/文件解决方案,显示 ASP.Net Core和/或.Net Core 的信息 - 如果支持,安装,版本等...

有可能吗?

1 个答案:

答案 0 :(得分:2)

它是诊断程序(app.UseRuntimeInfoPage())中的RuntimeInfoPage中间件,但它已在RTM中删除。有一个打开的请求可以恢复它并使其更有用:https://github.com/aspnet/Diagnostics/issues/280