CodeStyleAnalyzer 0.1.0
All functionality of CodeStyleAnalyzer is now provided by VisualStudio 2017 and 2019 directly via .editorconfig (https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-naming-conventions). Therefor this package is no longer maintained.
See the version list below for details.
dotnet add package CodeStyleAnalyzer --version 0.1.0
NuGet\Install-Package CodeStyleAnalyzer -Version 0.1.0
<PackageReference Include="CodeStyleAnalyzer" Version="0.1.0"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add CodeStyleAnalyzer --version 0.1.0
#r "nuget: CodeStyleAnalyzer, 0.1.0"
// Install CodeStyleAnalyzer as a Cake Addin #addin nuget:?package=CodeStyleAnalyzer&version=0.1.0 // Install CodeStyleAnalyzer as a Cake Tool #tool nuget:?package=CodeStyleAnalyzer&version=0.1.0
Analyzer to check code style against the .NET core coding style guide.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
This is the initial release of the CodeStyleAnalyzer, which makes it easier to follow the code style used by .NET core.
This release contains the following analyzers:
- Analyzer for private field names
- Analyzer for explicit visibility modifiers
- Analyzer for position of explicit visibility modifiers
- Analyzer for using directive position
The following codefix is included:
- Codefix for private field names.
Large part of the private field names analyzer and codefix and the analyzer for explicit visibility modifiers are copied from the CodeFormatter project