如何修复 Resharper 命令行工具中不一致的命名?
How to fix Inconsistent Naming in Resharper Command Line Tools?
使用 Resharper 命令行工具(参见 here)时,CleanupCode 例程修复了很多格式问题,但是,它没有修复不一致的命名。然后通过检查代码突出显示,但不会自动修复。
Inspect 代码通常会 return 像这样(在 XML 中):
<Issue TypeId="InconsistentNaming" File="file.cs" Offset="26821-26835" Line="553" Message="Name 'FooBar' does not match rule 'Local variables'. Suggested name is 'fooBar'." />
有没有办法CleanupCode.exe根据编码风格修复这些问题?
由于 ReSharper 中的 Cleanup Code
功能没有为 Inconsistent Naming
检查提供自动修复,因此 CleanupCode.exe
工具也无法修复它。
使用 Resharper 命令行工具(参见 here)时,CleanupCode 例程修复了很多格式问题,但是,它没有修复不一致的命名。然后通过检查代码突出显示,但不会自动修复。
Inspect 代码通常会 return 像这样(在 XML 中):
<Issue TypeId="InconsistentNaming" File="file.cs" Offset="26821-26835" Line="553" Message="Name 'FooBar' does not match rule 'Local variables'. Suggested name is 'fooBar'." />
有没有办法CleanupCode.exe根据编码风格修复这些问题?
由于 ReSharper 中的 Cleanup Code
功能没有为 Inconsistent Naming
检查提供自动修复,因此 CleanupCode.exe
工具也无法修复它。