79227845

Date: 2024-11-26 18:17:03
Score: 0.5
Natty:
Report link
  1. use .editorconfig file:

    [**/Migrations/**.cs]
    generated_code = true
    dotnet_analyzer_diagnostic.severity = none
    
  2. or use .csproj:

    <Project>
        <ItemGroup>
        <Compile Remove="Migrations\**\*.cs" />
        <None Include="Migrations\**\*.cs" />
        </ItemGroup>  
    </Project>
    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jervis