如何阻止Resharper建议使用.NET 4.6功能?
在这种情况下,它建议添加......
using static System.String;
并将String.Format
更改为Format
,String.IsNullOrWhiteSpace
改为IsNullOrWhiteSpace
等。
我知道要添加......
// ReSharper disable BuiltInTypeReferenceStyle
但我必须为所有文件执行此操作(假设我记得并且不要让Resharper进行更改)
如何确保它仅建议使用.NET 4.5功能? (因为这是我们服务器上部署的内容)
答案 0 :(得分:3)
其中许多实际上是C#6语言或编译器功能。
将项目语言级别设置回C#5或更低级别,然后您将看不到其中的许多级别。
https://www.jetbrains.com/resharper/help/ReSharper_by_Language__CSharp.html