Skip to content

Commit bd4fc9e

Browse files
committed
.NET 6.0 has reached end-of-life.
1 parent a8aacd0 commit bd4fc9e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ csharp_space_between_square_brackets = false
111111
# https://github.com/dotnet/roslyn-analyzers/issues/5747
112112
dotnet_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
116119
dotnet_diagnostic.CA1825.severity = none

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
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

WTG.Analyzers.TestFramework.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
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="" />

src/WTG.Analyzers.TestFramework/WTG.Analyzers.TestFramework.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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>

0 commit comments

Comments
 (0)