编译MVC解决方案老出现这个问题的原因

Server Error in '/' Application.


The view at '~/Views/Home/Index.cshtml' must derive from WebViewPage, or WebViewPage<TModel>.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.InvalidOperationException: The view at '~/Views/Home/Index.cshtml' must derive from WebViewPage, or WebViewPage<TModel>.

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.


Stack Trace: 

[InvalidOperationException: The view at '~/Views/Home/Index.cshtml' must derive from WebViewPage, or WebViewPage<TModel>.]

其实就是想搭一个MVC WEBAPI的项目 然后进行过程中就发现编译过程中的一些问题 按照网上的方法也改了还是出现上面的问题 

然后就是比对各个配置 看是否有差异

没想到在最后一个不引人注意的地方 

我改回成默认的bin目录 结果就编译过去了 

目前发现设到其他目录都不行 不知道具体原因 暂时记录一下此情况。

原文地址:https://www.cnblogs.com/hustsay23/p/6026875.html