Skip to content

Commit

Permalink
multitarget .NET versions
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Dec 19, 2023
1 parent b12a5a6 commit 7b3bdd9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
matrix:
dotnet:
- 8.0.x # EOL: 2026-11-10
#- 7.0.x # EOL: 2024-05-14
#- 6.0.x # EOL: 2024-11-12
- 7.0.x # EOL: 2024-05-14
- 6.0.x # EOL: 2024-11-12
# version support doc: https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Getargv.Tests/Getargv.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<RuntimeIdentifiers>osx-x64;osx-arm64</RuntimeIdentifiers>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
2 changes: 1 addition & 1 deletion Getargv.Tool/Getargv.Tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ApplicationId>cam.narzt.getargv.cs.tool</ApplicationId>
Expand Down
2 changes: 1 addition & 1 deletion Getargv/Getargv.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RuntimeIdentifiers>osx-arm64;osx-x64</RuntimeIdentifiers>
Expand Down

0 comments on commit 7b3bdd9

Please sign in to comment.