Visual Studio- Illegal characters in path

前端 未结 5 1873
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-18 12:43

This happen after Visual Studio Community 2017 latest update. Every time I try to open my project I get following warning:

Warning IDE0006 Error e

5条回答
  •  庸人自扰
    2021-01-18 13:38

    In your case the problem is the line returns in the following reference:

    
          
          ..\..\packages\System.Collections.Immutable.1.3.1\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll
          
    
    

    Change this to:

     
          ..\..\packages\System.Collections.Immutable.1.3.1\lib\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.dll
     
    

提交回复
热议问题