在documentation中的.EditorConfig文件中它说(我突出显示)
EditorConfig文件与代码库而不是Visual Studio个性化帐户相关联。 EditorConfig文件中的设置优先于“选项”对话框中选择的选项。如果要为repo或项目的所有贡献者强制执行编码样式,请使用EditorConfig文件。
当我向解决方案添加.EditorConfig文件时,它似乎优先于其他方式?
例如。文件中的以下值和我的选项的屏幕截图,不应该在我的IDE中出现.this
警告错误?
# this. and Me. preferences
dotnet_style_qualification_for_event = true:error
dotnet_style_qualification_for_field = true:error
dotnet_style_qualification_for_method = true:error
dotnet_style_qualification_for_property = true:error
编辑:这是它们在错误列表窗口中显示的方式
.editorconfig
确实优先。
但这不会在工具|中显示选项(仍显示您的个人资料的设置)。
编辑代码时,您将在错误工具窗口中看到效果(假设您启用了显示消息)。