如何阻止 ReSharper 在移动/更新命名空间声明时删除未使用的 using 语句?

发布于 2024-10-13 22:46:36 字数 863 浏览 2 评论 0原文

当使用 ReSharper 移动/更新命名空间声明时,是否有办法阻止 ReSharper 删除未使用的 using 语句?

换句话说,如果我有一个类,例如:

using System.Collections.Generic;
using System.Linq;
using System.ServiceModel;
using System.Text;

namespace Foo.Bar
{
    class MyClass
    {
        List<string> Names { get; set; }
    }
}

并且我想使用 ReSharper 将其移动到 Foo.Bar.Utilities 命名空间中,Resharper 将删除所有未使用的使用语句并留下:

using System.Collections.Generic;

namespace Foo.Bar.Utilities
{
    class MyClass
    {
        List<string> Names { get; set; }
    }
}

但是,我不希望 ReSharper在移动名称空间声明时触摸我的Using 语句。我希望结果如下:

using System.Collections.Generic;
using System.Linq;
using System.ServiceModel;
using System.Text;

namespace Foo.Bar.Utilities
{
    class MyClass
    {
        List<string> Names { get; set; }
    }
}

When using ReSharper to move/update namespace declarations, is there a way to stop ReSharper from removing unused Using statements?

In other words, if I have a class such as:

using System.Collections.Generic;
using System.Linq;
using System.ServiceModel;
using System.Text;

namespace Foo.Bar
{
    class MyClass
    {
        List<string> Names { get; set; }
    }
}

And I want to move it into the Foo.Bar.Utilities namespace using ReSharper, Resharper will remove all the unused Using statements and leave me with:

using System.Collections.Generic;

namespace Foo.Bar.Utilities
{
    class MyClass
    {
        List<string> Names { get; set; }
    }
}

However, I do not want ReSharper to touch my Using statements while moving the namespace declaration. I'd prefer to have the result as:

using System.Collections.Generic;
using System.Linq;
using System.ServiceModel;
using System.Text;

namespace Foo.Bar.Utilities
{
    class MyClass
    {
        List<string> Names { get; set; }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美人如玉 2024-10-20 22:46:36

我认为你不能明确地做到这一点。

但是,有一个选项可以指定不应删除的命名空间(Resharper 选项 -> C# -> 命名空间导入),但您需要知道您不希望它删除哪些命名空间。

I don't think you can do this unequivocally.

However, there is an option to specify namespaces that should not be removed (Resharper Options -> C# -> Namespace Imports), but you need to know which ones you don't want it to remove.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文