Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -207,12 +207,12 @@ dotnet_diagnostic.IDE0048.severity = silent

# IDE0051: Remove unused private members
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0051
# Enabled: True, Severity: suggestion
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0051.severity = suggestion

# IDE0052: Remove unread private members
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0052
# Enabled: True, Severity: suggestion
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0052.severity = suggestion

# IDE0053: Use block body for lambda expression
Expand Down Expand Up @@ -380,6 +380,11 @@ dotnet_diagnostic.IDE0110.severity = warning
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0120.severity = silent

# IDE0121: Simplify LINQ expression
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0121
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0121.severity = silent

# IDE0130: Namespace does not match folder structure
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0130
# Enabled: True, Severity: silent
Expand Down Expand Up @@ -505,6 +510,11 @@ dotnet_diagnostic.IDE0304.severity = suggestion
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0305.severity = suggestion

# IDE0306: Simplify collection initialization
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0306
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0306.severity = silent

# IDE0320: Make anonymous function static
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0320
# Enabled: True, Severity: silent
Expand All @@ -515,6 +525,11 @@ dotnet_diagnostic.IDE0320.severity = silent
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0330.severity = suggestion

# IDE0340: Use unbound generic type
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0340
# Enabled: True, Severity: silent
dotnet_diagnostic.IDE0340.severity = silent

# IDE1005: Delegate invocation can be simplified.
# Help link: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide1005
# Enabled: True, Severity: silent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CliWrap" Version="3.8.0" />
<PackageReference Include="CliWrap" Version="3.8.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Meziantou.Framework.FullPath" Version="1.0.15" />
<PackageReference Include="Meziantou.Framework.FullPath" Version="1.0.16" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.2" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.12.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.12.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="4.12.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="4.12.0" />
<PackageReference Include="NuGet.Protocol" Version="6.13.1" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.13.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.13.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" Version="4.13.0" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="4.13.0" />
<PackageReference Include="NuGet.Protocol" Version="6.13.2" />
</ItemGroup>

</Project>