MP0013
Module is not registered with the pipeline.
| Property | Value |
|---|---|
| Category | Usage |
| Default severity | Warning |
| Availability | Public analyzer package |
Configure severity
.editorconfig
dotnet_diagnostic.MP0013.severity = warning
Use none to disable the rule, or silent, suggestion, warning, or error to change its severity.
Suppress a specific occurrence
#pragma warning disable MP0013
// Code that intentionally violates MP0013.
#pragma warning restore MP0013