Skip to content

Commit

Permalink
feat: Upgraded to .NET 9, removed previous Versions (#257)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
dependabot[bot] and samtrion authored Dec 16, 2024
1 parent 550be89 commit 265ffcd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ jobs:
enableSonarQube: true
dotnet-logging: ${{ inputs.dotnet-logging }}
dotnet-quality: ga
dotnet-version: |
3.1.x
5.x
6.x
7.x
8.x
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
solution: ./Arguments.sln
secrets: inherit
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<GlobalPackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0" />
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<GlobalPackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.12.19" />
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.3.9" />
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.3.18" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
Expand Down
2 changes: 1 addition & 1 deletion src/NetEvolve.Arguments/NetEvolve.Arguments.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net7.0;net8.0</TargetFrameworks>

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

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net6.0;net8.0;net9.0</TargetFrameworks>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>

<NoWarn>$(NoWarn);NU1701</NoWarn>
Expand Down

0 comments on commit 265ffcd

Please sign in to comment.