Turning off the WebFormViewEngine when using razor?

后端 未结 2 1503
渐次进展
渐次进展 2021-01-31 14:22

I downloaded Glimpse this morning to try it out and noticed this when I click on the views tab:

\"Glimpse

2条回答
  •  天涯浪人
    2021-01-31 15:19

    An alternative would be to remove only the view engine you want to remove:

        var webformVE = ViewEngines.Engines.OfType().FirstOrDefault();
        ViewEngines.Engines.Remove(webformVE);
    

提交回复
热议问题