自定义Visual Studio中的“快速修复”行为

时间:2019-07-05 07:42:22

标签: c# .net-core visual-studio-mac

我使用的是Visual Studio for Mac 8.0.9,并且想要更改多个“快速修复”(当我按ALT + Enter时菜单中的选项)的行为。

具体来说,我想更改创建并初始化字段'myParam'选项。

现在它执行此操作:

/// before quickfix
public class Test
{
    public Test(object myParam) { }
}

/// after quickfix:
public class Test
{
    public readonly object myParam
    public Test(object myParam)
    {
        this.myParam = myParam
    }
}

在我们的代码库中,我们根据these naming conventions的使用,对私有字段使用了下划线。因此,我想将行为更改为此:

/// after quickfix:
public class Test
{
    public readonly object _myParam
    public Test(object myParam)
    {
        _myParam = myParam
    }
}

这可能吗?

[编辑]

我尝试过的事情:

  • 正在寻找一个类似described in the accepted answer here的选项。 VS Mac中似乎没有UI选项
  • 尝试按照所述配置.editorconfig文件 here。试穿 它在解决方案的根以及之一的根之一 包含项目,但似乎对我不起作用

0 个答案:

没有答案