Qowaiv.Analyzers.CSharp 2.0.5

dotnet add package Qowaiv.Analyzers.CSharp --version 2.0.5
                    
NuGet\Install-Package Qowaiv.Analyzers.CSharp -Version 2.0.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Qowaiv.Analyzers.CSharp" Version="2.0.5">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Qowaiv.Analyzers.CSharp" Version="2.0.5" />
                    
Directory.Packages.props
<PackageReference Include="Qowaiv.Analyzers.CSharp">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Qowaiv.Analyzers.CSharp --version 2.0.5
                    
#r "nuget: Qowaiv.Analyzers.CSharp, 2.0.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Qowaiv.Analyzers.CSharp&version=2.0.5
                    
Install Qowaiv.Analyzers.CSharp as a Cake Addin
#tool nuget:?package=Qowaiv.Analyzers.CSharp&version=2.0.5
                    
Install Qowaiv.Analyzers.CSharp as a Cake Tool
There are no supported framework assets in this package.

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.

Version Downloads Last updated
2.0.5 2,459 3/27/2025
2.0.4 8,009 1/20/2025
2.0.3 15,510 9/25/2024
2.0.2 4,539 8/28/2024
2.0.1 2,591 8/9/2024
2.0.0 1,600 8/7/2024
1.0.9 340 8/6/2024
1.0.8 979 7/15/2024
1.0.7 306 7/11/2024
1.0.6 438 7/8/2024
1.0.5 726 6/28/2024
1.0.4 5,736 3/18/2024
1.0.3 2,602 2/23/2024
1.0.2 877 2/21/2024
1.0.1 503 2/19/2024
1.0.0 3,183 1/23/2024
0.0.8 25,105 6/26/2023
0.0.7 403 6/23/2023
0.0.6.1 1,158 6/15/2023
0.0.6 375 6/14/2023
0.0.5.3 2,062 5/16/2023
0.0.5.2 3,725 3/7/2023
0.0.5.1 2,121 1/30/2023
0.0.5 779 11/27/2022
0.0.4.1 809 11/1/2022
0.0.4 419 11/1/2022
0.0.3.1 29,298 11/23/2021
0.0.3 437 11/12/2021
0.0.2 1,320 10/29/2021
0.0.1.1 557 10/28/2021
0.0.1 439 10/27/2021

v2.0.5
- QW0003: Readonly modifier is sufficient (FP).
- QW0100: Define only one Required attribute (NEW RULE).
- QW0101: Required attribute cannot invalidate value types (NEW RULE).
- QW0102: Use compliant validation attributes (NEW RULE).
v2.0.4
- QWO0012: Exclude types form System.Collections.Frozen namespace (FP).
- Generate SBOM.
v2.0.3
- QW0017: Apply arithmetic operations on non-nullables only (NEW RULE).
v2.0.2
- QW0011, QW0012: Improve messages.
v2.0.1
- QW0016: Only take public records into account (FP).
v2.0.0
- Depend on Microsoft.CodeAnalysis 4.10.0 (potential breaking).
- QW0016: Obsolete code and required by base parameters should be ignored (FP).
v1.0.9
- QW0016: Locations are commonly past through as full paths (NEW RULE).
v1.0.8
- QW0015: Locations are commonly past through as full paths (FP).
v1.0.7
- QW0015: Define global using statements in single file (NEW RULE).
- QW0014: Define global using statements separately (NEW RULE).
v1.0.6
- QW0013: Use Qowaiv decimal rounding (NEW RULE).
- QW0008: Take static read-only Empty properties into account (FN).
v1.0.5
- QW0011, QW0012: Ingore IEnumerator and IXmlSerialable (FP).
v1.0.4
- QW0011, QW0012: Ignore types with a mutable base (FP).
v1.0.3
- QW0012: Types that have Immutable in there name are considered immutable (FP).
- QW0003: [DoesNotReturn] should be valid alternative for [Pure] (FP).
v1.0.2
- QW0012: Reduce FP's by ignoring potential mutable property types (FP).
v1.0.1
- QW0011: Define properties as immutables.
- QW0012: Use immutable types for properties.
v1.0.0
- QW0010: Use System.DateOnly instead of Qowaiv.Date.
- CS0618, CS0619: Code fix for obsolete code with a suggestion.
- Depend on Microsoft.CodeAnalysis 4.*.
v0.0.8
- Code fix for QW0005: Seal class.
- FN: Generics containing types that should not be nullable are now taken into account.
v0.0.7
- Code fix for QW0008 and QW0009.
- QW0009: Define properties as not-nullable for enums with a defined none value.
- QW0008: Define properties as not-nullable for types with an empty state.
- QW0008: Value Types with an empty state should be used as nullable properties.
v0.0.6.1
- QW0001: Provide a fix to suggest the usage of Qowaiv.Clock.
v0.0.6
- QW0001: Also reports on DateTime.Offset.
v0.0.5.3
- QW0003: Returning ValueTask is never a pure function.
- QW0003: Returning IDisposable can be a pure function.
v0.0.5.2
- QW0005: All attributes should be excluded.
v0.0.5.1
- QW0004: Mathematical Alphanumeric Symbols are not suspicious.
v0.0.5
- QW0007: Use file-scoped namespace scopes.
v0.0.4.1
- QW0006: Seal concrete classes unless designed for inheritance.
v0.0.4
- QW0005: Seal concrete classes unless designed for inheritance.
v0.0.3.1
- QW0004: Horizontal tab (U+9, \t) is allowed too.
v0.0.3
- QW0004: Characters with Trojan Horse potential are not allowed.
v0.0.2
- QW0003: Decorate pure functions.
v0.0.1
- QW0001: Use a testable time provider.
- QW0002: Parse() throws.