Skip to content

fiseni/PrivateConstructorDiagnosticSuppressor

Repository files navigation

  NuGet

  NuGet

  Actions Status

Private Constructor Nullability Suppression

A library for suppressing the CS8618 warning for private constructors.

CS8618 - Non-nullable variable must contain a non-null value when exiting constructor. Consider declaring it as nullable.

Note: Use it if you're sure the state will be set correctly by other means.

Getting Started

Get it on nuget.org or just include with

<PackageReference Include="Pozitron.Analyzers.PrivateConstructorDiagnosticSuppression" Version="1.0.0" PrivateAssets="All" />

There are no attributes and no configuration. Just include the package and you are good to go.

Motivation

I find the CS8618 compiler warning very useful. But, not rarely, we do define empty private constructors. It's necessary for EF Core, other ORMs, mapping libraries, etc. Once you have that, then this rule becomes an annoyance. You either have to use pragma, or initialize the state to null! which defies the whole purpose.

image

Give a Star! ⭐

If you like or are using this project please give it a star. Thanks!

About

Suppresses CS8618 for private constructors.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages