0

Please, look at these two questions: Asp/asp.net Hosting Info Page and Is there an equivalent to phpinfo() in ASP.NET?

Using the info in that 2 questions, I have 2 simple files, "info.php" and "info.aspx", where "info.aspx" simply contains:

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

and "info.php" contains:

<?php echo phpinfo();?>

Now, I would like a single page/file solution that show info about ASP.Net Core and/or .Net Core - if it is supported, installed, which version, etc...

Is it possible?

1

1 Answer 1

2

It had been an RuntimeInfoPage middleware in Diagnostics (app.UseRuntimeInfoPage() ), but it was removed in RTM. There is an open request to restore it back and make more useful: https://github.com/aspnet/Diagnostics/issues/280

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.