11 lines
169 B
Plaintext
11 lines
169 B
Plaintext
@inject Microsoft.AspNetCore.Hosting.IWebHostEnvironment env
|
|
@{
|
|
ViewData["Title"] = "Debug";
|
|
}
|
|
|
|
<h1>Debug</h1>
|
|
|
|
<ul>
|
|
<li>env: @env.EnvironmentName</li>
|
|
</ul>
|