I am getting:\[quote\] Type 'ASP._Page_index_cshtml' does not inherit from 'System.Web.WebPages.WebPage'.\[/quote\]when I browse to my index.cshtml file. It is very simple:\[code\]@using System.Web.Optimization@inherits System.Web.Mvc.WebViewPage<!DOCTYPE html><html class="no-js" lang="en"><head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width"> <title>Hello World</title> @Styles.Render("~/Content/css", "~/Content/themes/base/css") @Scripts.Render("~/bundles/modernizr")</head><body> @Scripts.Render( "~/bundles/jquery", "~/bundles/jqueryui" )</body></html>\[/code\]my index.cshtml file is outside of the Views folder, if that matters at all.