diff --git a/src/MiniProfiler.Shared/Internal/MiniProfilerBaseOptions.cs b/src/MiniProfiler.Shared/Internal/MiniProfilerBaseOptions.cs index 6f2b65f6..12c4fb6a 100644 --- a/src/MiniProfiler.Shared/Internal/MiniProfilerBaseOptions.cs +++ b/src/MiniProfiler.Shared/Internal/MiniProfilerBaseOptions.cs @@ -124,7 +124,10 @@ public class MiniProfilerBaseOptions /// /// Dictates on which side of the page the profiler popup button is displayed; defaults to left. - /// For a per-page override you can use .RenderIncludes(position: RenderPosition.Left/Right) + /// For a per-page override you can use .RenderIncludes(position: RenderPosition.Left/Right). + /// In ASP.NET Core this setting is applied when rendering the <mini-profiler /> tag helper + /// (or an equivalent RenderIncludes call) in the layout; configuring it in + /// AddMiniProfiler alone does not render the UI. /// public RenderPosition PopupRenderPosition { get; set; } = RenderPosition.Left;