如何让 ReSharper 停止在我的 MSpec 成员上放置显式访问修饰符?

发布于 2024-11-16 08:52:32 字数 424 浏览 2 评论 0原文

我正在使用 Machine.Specifications,我对 VS2010/Resharper 不断尝试格式化我的代码感到非常恼火...例如:

Establish context = () => the_cartoon_repository = DependencyOf<INHibernateRepository<Cartoon>>();

就会变成:

private Establish context = () => the_cartoon_repository = DependencyOf<INHibernateRepository<Cartoon>>();

一旦我按 Enter 键, 。啊!一定有办法解决这个问题,不是吗?

I'm using Machine.Specifications and I'm really annoyed by how VS2010/Resharper keeps trying to format my code... for example:

Establish context = () => the_cartoon_repository = DependencyOf<INHibernateRepository<Cartoon>>();

Gets turned into:

private Establish context = () => the_cartoon_repository = DependencyOf<INHibernateRepository<Cartoon>>();

As soon as I press enter. Argh! There's got to be a way around this, no?

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

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

发布评论

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

评论(2

花开柳相依 2024-11-23 08:52:32

ReSharper 选项 >语言> C#>其他>修饰符:

取消选中使用显式私有修饰符

ReSharper options > Laguages > C# > Other > Modifiers:

Uncheck the Use explicit private modifier.

裸钻 2024-11-23 08:52:32

MSpec 的作者 Aaron Jensen 在 这篇文章。具体来说,

  • 显式私有修饰符
  • 奇怪的 lambda 缩进
  • 字段命名警告

The author of MSpec, Aaron Jensen, addresses a few formatting issues in this post. Specifically,

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