4

目前,当我编译时,我在编译窗口中没有看到来自 cshtml 视图的任何错误。

只有当我打开视图时,我才能看到红线下划线的问题。就是这样。

如果视图中有错误,我需要我的编译失败。

谢谢。

4

1 回答 1

11

在记事本中打开csproj文件并将MvcBuildViews属性更改为 true。

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <!-- other properties ... -->
    <MvcBuildViews>true</MvcBuildViews>
  <!-- the rest of your project file ... -->
于 2013-02-07T20:41:20.370 回答