如何将一些使用语句设置为不冗余,即使它们是多余的?

Reb*_*e07 3 c# resharper settings using-statement visual-studio-2015

通常,文件创建时会使用一组常用的using语句.有时甚至在充实课程后我也不需要一些自动生成的使用语句.但是,如果最终需要删除它们会导致问题,例如因使用System.Linq删除而导致的问题; 有没有办法告诉Visual Studio/Resharper不要抱怨某些使用语句是多余的?

例:

using System;
using System.Collections.Generic; // Don't need but want anyway without an error
using System.Linq; // Don't need but want anyway without an error
using System.Net;
using System.Text; // Don't need but want anyway without an error
using Acceptance.EndToEnd.Helpers;
using Acceptance.EndToEnd.Locators;
Run Code Online (Sandbox Code Playgroud)

Mat*_*ias 6

ReSharper提供了一种更好的方法:

在此输入图像描述