Skip to content

Commit 0a31cdc

Browse files
linkdotnetbUnitBot
authored andcommitted
refactor: Remove old frameworks
1 parent bfb8d2c commit 0a31cdc

150 files changed

Lines changed: 269 additions & 1477 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,7 @@ dotnet_diagnostic.CA1062.severity = none # CA1062: Validate arguments of public
490490
dotnet_diagnostic.CA1707.severity = none # CA1707: Identifiers should not contain underscores
491491
dotnet_diagnostic.CA1812.severity = none # CA1812: Avoid uninstantiated internal classes - components under test are never instantiated directly.
492492
dotnet_diagnostic.CA1822.severity = suggestion # CA1822: Mark members as static
493+
dotnet_diagnostic.CA1859.severity = none # CA1859: Change return type of method
493494
dotnet_diagnostic.CA2007.severity = none # CA2007: Consider calling ConfigureAwait on the awaited task
494495

495496
# Microsoft - FxCop

.github/workflows/ci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,6 @@ jobs:
129129
uses: actions/setup-dotnet@v4
130130
with:
131131
dotnet-version: |
132-
3.1.x
133-
5.0.x
134-
6.0.x
135-
7.0.x
136132
8.0.x
137133
9.0.x
138134
@@ -207,10 +203,6 @@ jobs:
207203
uses: actions/setup-dotnet@v4
208204
with:
209205
dotnet-version: |
210-
3.1.x
211-
5.0.x
212-
6.0.x
213-
7.0.x
214206
8.0.x
215207
9.0.x
216208

.github/workflows/docs-deploy.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,6 @@ jobs:
7272
uses: actions/setup-dotnet@v4
7373
with:
7474
dotnet-version: |
75-
3.1.x
76-
5.0.x
77-
6.0.x
78-
7.0.x
7975
8.0.x
8076
9.0.x
8177

.github/workflows/release.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ jobs:
5757
uses: actions/setup-dotnet@v4
5858
with:
5959
dotnet-version: |
60-
3.1.x
61-
5.0.x
62-
6.0.x
63-
7.0.x
6460
8.0.x
6561
9.0.x
6662

Directory.Build.props

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33

44
<PropertyGroup Label="Configuration variables">
5-
<DotNet3Version>3.1.*</DotNet3Version>
6-
<DotNet5Version>5.0.*</DotNet5Version>
7-
<DotNet6Version>6.0.*</DotNet6Version>
8-
<DotNet7Version>7.0.*</DotNet7Version>
95
<DotNet8Version>8.0.*</DotNet8Version>
106
<DotNet9Version>9.0.0-*</DotNet9Version>
117
</PropertyGroup>
@@ -40,7 +36,7 @@
4036
<PropertyGroup Label="Analyzer settings">
4137
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
4238
<EnableNETAnalyzers>true</EnableNETAnalyzers>
43-
<AnalysisLevel>7</AnalysisLevel>
39+
<AnalysisLevel>8</AnalysisLevel>
4440
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
4541
</PropertyGroup>
4642

benchmark/bunit.benchmarks.assets/bunit.benchmarks.assets.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Razor">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>

benchmark/bunit.benchmarks/bunit.benchmarks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<SignAssembly>false</SignAssembly>
88
</PropertyGroup>

bunit.sln

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".workflows", ".workflows",
5252
.github\workflows\ci.yml = .github\workflows\ci.yml
5353
.github\workflows\docs-deploy.yml = .github\workflows\docs-deploy.yml
5454
.github\workflows\prepare-release.yml = .github\workflows\prepare-release.yml
55-
.github\workflows\release-preview.yml = .github\workflows\release-preview.yml
5655
.github\workflows\release.yml = .github\workflows\release.yml
5756
EndProjectSection
5857
EndProject

docs/samples/tests/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
3+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
44
<IsPackable>false</IsPackable>
55
<SonarQubeTestProject>true</SonarQubeTestProject>
66
<IsPackable>false</IsPackable>

docs/samples/tests/razor/TemplateParams1Test.razor

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)