Where is the Stylecop configuration file?

后端 未结 3 1014
花落未央
花落未央 2021-02-11 20:38

I\'ve installed Stylecop via NuGet. I wish to disable some rules, and I know this can be done via a configuration file from what I\'ve read. However, I can\'t find the file anyw

相关标签:
3条回答
  • 2021-02-11 21:19

    If you installed Stylecop via NuGet (the StyleCop.MSBuild package), then you will not have the folder detailed in the other answers.

    You will find the file in your project folder here:
    packages\StyleCop.MSBuild.{version}\tools\Settings.StyleCop

    You should copy this file to the root of your project.

    If you would rather not manually edit the file, there is also a nice gui tool called StyleCopSettingsEditor in the tools folder, which you can just drag your settings file onto.

    0 讨论(0)
  • 2021-02-11 21:20

    The file Settings.StyleCop should be located in your install directory, on my machine it's here:

    C:\Program Files (x86)\StyleCop 4.7\Settings.StyleCop

    You can edit the rule settings by opening this file with StyleCopSettingsEditor.exe, located in the same directory (double-clicking the settings file will do the trick).

    0 讨论(0)
  • 2021-02-11 21:27

    If you copy the Settings.StyleCop file to the root of the solution, then it will be inherited by all projects. This means it can be kept in Source Control and accessed by any Continuous Integration server you are using.

    If you reference and alter the file in C:\Program Files (x86)\StyleCop {{version}}\Settings.StyleCop this needs to be kept inline on each developer's PC. where as copying it to the root of the solution

    0 讨论(0)
提交回复
热议问题