Create a diagnosticanalyzer to look for usages of ``` csharp public ActionResult Index() { View("index") } ``` and codefix to replace with ``` csharp public ActionResult Index() { View(Views.Index) } ```