Billpeng Space

技术源自生活
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

vs2019 razor cshtml无故划红线的解决方法

Posted on 2022-04-06 10:09  billpeng  阅读(116)  评论(0编辑  收藏  举报

原来:

<compilation debug="true" targetFramework="4.5" />

改为:

<compilation debug="true" targetFramework="4.5">
        <assemblies>
          <add assembly="System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
        </assemblies>
      </compilation>