gpt4 book ai didi

asp.net-mvc - ASP.NET MVC : how to signal compilation error if a view has error?

转载 作者:行者123 更新时间:2023-12-04 15:28:25 24 4
gpt4 key购买 nike

我的观点有错误。只有在 Visual Studio 中打开 View 时才会看到这些错误。

我想在编译时而不是在执行时看到错误。

是否存在获得这种行为的方法?

最佳答案

您可以手动更新 .csproj 文件并添加 <MvcBuildViews>true</MvcBuildViews>这将在您进行时编译 View 。

这是我的链接googled ,你也会发现其他人。

编辑:如果速度太慢,请尝试仅为发布设置构建,编辑 csproj 文件,执行类似操作;请参阅 AspNetCompiler 的文档更多细节。

<!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
Other similar extension points exist, see Microsoft.Common.targets.
-->
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
<AspNetCompiler VirtualPath="Temp" PhysicalPath="$(ProjectDir)\..\$(ProjectName)" />
</Target>

关于asp.net-mvc - ASP.NET MVC : how to signal compilation error if a view has error?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/920613/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com