Skip to content

Commit c1da3de

Browse files
committed
fix: Use NE_DOTNET_TARGETFRAMEWORKS and reduced frameworks
1 parent d36a330 commit c1da3de

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/cicd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
enableSonarQube: true
2727
dotnet-logging: ${{ inputs.dotnet-logging }}
2828
dotnet-quality: ga
29-
dotnet-version: |
29+
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
3030
3.1.x
3131
5.x
3232
6.x

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;net7.0;net8.0</TargetFrameworks>
55
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
66

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

0 commit comments

Comments
 (0)