zoukankan      html  css  js  c++  java
  • inconsistent line count calculation in projection snapshot

    1、现象

      在vs2013中,按Ctrl + E + D格式化.cshtml代码,vs2013系统崩溃。报:inconsistent line count calculation in projection snapshot。

      因为习惯性格式化代码,一格式化.cshtml就崩溃,需要重启vs2013,弄得我也不开心。因此这个问题必须解决。

    2、原因

      百度查原因,相关链接如下:

      http://stackoverflow.com/questions/917392/how-should-i-fix-svn-inconsistent-line-ending-style

      http://answers.unity3d.com/questions/649403/visual-basic-2010-causing-inconsistent-line-ending.html

      总结一下,原因是因为之前用过mac book pro写过代码,跟windows写代码的文件是不一样的,虽然这并不影响编译。

    3、解决办法

      第一种、把之前的文件的代码拷贝出来,重新添加,然后把内容拷贝进去保存,然而缺点很明显麻烦

      第二种、在VS里面先进行设置consistent检查,这样对于未打开过的文件可以提示转换,对于已经打开过的文件需要用notepad++转换。

        (1)、先在VS2013中设置:Tools--->Options--->Environment--->Documents---->勾上check for consistent line endings on load

          这样设置了以后,新打开的文件如果检查到不一致的话,会提示转换为Windows的格式。

        (2)、notepad++打开有问题的文件,点击编辑--->文件转换为--->windows格式,然后在点击编辑--->空白字符串操作---->空格转TAB(行首)。

        亲测有效,笔记留着

      

     

  • 相关阅读:
    C#选择文件、选择文件夹、打开文件
    如何去掉数据库重复记录并且只保留一条记录
    SQL总结——存储过程
    SQL Server中的标识列
    c# 获取键盘的输入
    C# 中BindingSource 的用法
    WinForm timer 控件
    C#获得窗口控件句柄
    checkedListBox的使用
    c++从文件中读取特定字符串问题的总结
  • 原文地址:https://www.cnblogs.com/tianxue/p/6164210.html
Copyright © 2011-2022 走看看