我相信我在某处读到了其中一个项目文件中的设置,允许您.cshtml
在构建 Visual Studio 项目时编译文件。
刚开始使用Mobile,当我在文件MVC/Razor/Query
内的代码块中出现错误时,我对“错误加载页面”感到恼火.cshtml
我相信我在某处读到了其中一个项目文件中的设置,允许您.cshtml
在构建 Visual Studio 项目时编译文件。
刚开始使用Mobile,当我在文件MVC/Razor/Query
内的代码块中出现错误时,我对“错误加载页面”感到恼火.cshtml
<MvcBuildViews>true</MvcBuildViews>
在 .csproj 文件的<PropertyGroup>
元素中设置。
除了真正的设置,您还需要确保在您的 csproj 中以下设置处于活动状态:
<Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(WebProjectOutputDir)" />
</Target>