File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed
src/WTG.Analyzers.TestFramework Expand file tree Collapse file tree 4 files changed +8
-5
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 1414 <icon >images\icon.png</icon >
1515 <dependencies >
1616 <group targetFramework =" .NETFramework4.6.2" />
17- <group targetFramework =" net6 .0" />
17+ <group targetFramework =" net8 .0" />
1818 </dependencies >
1919 </metadata >
2020
2121 <files >
2222 <!-- Binaries -->
2323 <file src =" bin\net462\WTG.Analyzers.TestFramework.dll" target =" lib\net462" />
24- <file src =" bin\net6 .0\WTG.Analyzers.TestFramework.dll" target =" lib\net6 .0" />
24+ <file src =" bin\net8 .0\WTG.Analyzers.TestFramework.dll" target =" lib\net8 .0" />
2525
2626 <!-- Other -->
2727 <file src =" LICENSE.md" target =" " />
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