umbraco 7 のインスタンスを実行しています。しかし、miniprofiler を設定して動作させることができないようです。
これを global.asax に設定します。
protected void Application_BeginRequest()
{
if (Request.IsLocal)
{
MiniProfiler.Start();
}
}
protected void Application_EndRequest()
{
MiniProfiler.Stop();
}
また、web.config でハンドラーを定義します。
<add name="MiniProfiler" path="mini-profiler-resources/*" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
どんな助けでも本当に感謝しています。