Skip to content

Commit 265ffcd

Browse files
feat: Upgraded to .NET 9, removed previous Versions (#257)
* chore(deps): bump NetEvolve.Defaults from 1.3.9 to 1.3.18 Bumps [NetEvolve.Defaults](https://github.com/dailydevops/defaults) from 1.3.9 to 1.3.18. - [Release notes](https://github.com/dailydevops/defaults/releases) - [Commits](dailydevops/defaults@1.3.9...1.3.18) --- updated-dependencies: - dependency-name: NetEvolve.Defaults dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * fix: Use `NE_DOTNET_TARGETFRAMEWORKS` and reduced frameworks * fix: Typos * fix: TargetFramework, removed `net7.0` and added `net9.0` --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Stühmer <[email protected]>
1 parent 550be89 commit 265ffcd

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

.github/workflows/cicd.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,6 @@ jobs:
2626
enableSonarQube: true
2727
dotnet-logging: ${{ inputs.dotnet-logging }}
2828
dotnet-quality: ga
29-
dotnet-version: |
30-
3.1.x
31-
5.x
32-
6.x
33-
7.x
34-
8.x
29+
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
3530
solution: ./Arguments.sln
3631
secrets: inherit

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<GlobalPackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0" />
1111
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
1212
<GlobalPackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.12.19" />
13-
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.3.9" />
13+
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.3.18" />
1414
</ItemGroup>
1515
<ItemGroup>
1616
<PackageVersion Include="coverlet.collector" Version="6.0.2" />

src/NetEvolve.Arguments/NetEvolve.Arguments.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">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net7.0;net8.0</TargetFrameworks>
55

66
<Description>A library that provides compatible `ThrowIf` methods for .NET / C# for older runtimes.</Description>
77

tests/NetEvolve.Arguments.Tests.Unit/NetEvolve.Arguments.Tests.Unit.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">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
55
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
66

77
<NoWarn>$(NoWarn);NU1701</NoWarn>

0 commit comments

Comments
 (0)