File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
src/WTG.Analyzers.TestFramework Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -111,6 +111,9 @@ csharp_space_between_square_brackets = false
111111# https://github.com/dotnet/roslyn-analyzers/issues/5747
112112dotnet_diagnostic.CA1508.severity = none
113113
114+ # Argument exception throw helpers are not available in all supported target frameworks.
115+ dotnet_diagnostic.CA1510.severity = none
116+
114117# Duplicate of WTG3004 but also bugged in VS17.5.
115118# https://github.com/dotnet/roslyn-analyzers/issues/6500
116119dotnet_diagnostic.CA1825.severity = none
Original file line number Diff line number Diff line change 3636 if : matrix.configuration == 'Debug' && matrix.os == 'windows-latest'
3737 run : dotnet test src --no-build --framework net472
3838
39- - name : Run Tests (net6 .0)
39+ - name : Run Tests (net8 .0)
4040 if : matrix.configuration == 'Debug'
41- run : dotnet test src --no-build --framework net6 .0
41+ run : dotnet test src --no-build --framework net8 .0
4242
4343 nupkg :
4444 name : Create NuGet Package
Original file line number Diff line number Diff line change 22<Project Sdk =" Microsoft.NET.Sdk" >
33 <PropertyGroup >
44 <AssemblyTitle >WTG Analyzers Test Framework</AssemblyTitle >
5- <TargetFrameworks >net462;net6 .0</TargetFrameworks >
5+ <TargetFrameworks >net462;net8 .0</TargetFrameworks >
66 <OutputPath >..\..\bin</OutputPath >
77 <NuspecFile >..\..\WTG.Analyzers.TestFramework.nuspec</NuspecFile >
88 <Nullable >enable</Nullable >
You can’t perform that action at this time.
0 commit comments