Skip to content

Commit

Permalink
fix: Use NE_DOTNET_TARGETFRAMEWORKS and reduced frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
samtrion committed Dec 16, 2024
1 parent d36a330 commit c1da3de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
enableSonarQube: true
dotnet-logging: ${{ inputs.dotnet-logging }}
dotnet-quality: ga
dotnet-version: |
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
3.1.x
5.x
6.x
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;net7.0;net8.0</TargetFrameworks>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>

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

0 comments on commit c1da3de

Please sign in to comment.