diff --git a/.editorconfig b/.editorconfig index 6e47578..77f04b7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -111,6 +111,9 @@ csharp_space_between_square_brackets = false # https://github.com/dotnet/roslyn-analyzers/issues/5747 dotnet_diagnostic.CA1508.severity = none +# Argument exception throw helpers are not available in all supported target frameworks. +dotnet_diagnostic.CA1510.severity = none + # Duplicate of WTG3004 but also bugged in VS17.5. # https://github.com/dotnet/roslyn-analyzers/issues/6500 dotnet_diagnostic.CA1825.severity = none diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d4b5a81..301e653 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -36,9 +36,9 @@ jobs: if: matrix.configuration == 'Debug' && matrix.os == 'windows-latest' run: dotnet test src --no-build --framework net472 - - name: Run Tests (net6.0) + - name: Run Tests (net8.0) if: matrix.configuration == 'Debug' - run: dotnet test src --no-build --framework net6.0 + run: dotnet test src --no-build --framework net8.0 nupkg: name: Create NuGet Package diff --git a/WTG.Analyzers.TestFramework.nuspec b/WTG.Analyzers.TestFramework.nuspec index bd283a3..b621991 100644 --- a/WTG.Analyzers.TestFramework.nuspec +++ b/WTG.Analyzers.TestFramework.nuspec @@ -14,14 +14,14 @@ images\icon.png - + - + diff --git a/src/WTG.Analyzers.TestFramework/WTG.Analyzers.TestFramework.csproj b/src/WTG.Analyzers.TestFramework/WTG.Analyzers.TestFramework.csproj index b7175b8..750e707 100644 --- a/src/WTG.Analyzers.TestFramework/WTG.Analyzers.TestFramework.csproj +++ b/src/WTG.Analyzers.TestFramework/WTG.Analyzers.TestFramework.csproj @@ -2,7 +2,7 @@ WTG Analyzers Test Framework - net462;net6.0 + net462;net8.0 ..\..\bin ..\..\WTG.Analyzers.TestFramework.nuspec enable