From 5dec6d4e3656a74004281f7c09bb8bb13e6ac3e7 Mon Sep 17 00:00:00 2001 From: Justin Swanson Date: Wed, 20 Mar 2024 12:48:21 -0500 Subject: [PATCH] Readd net6/7 for now --- .github/workflows/ci-build.yml | 8 ++++++++ .github/workflows/ci-publish.yml | 16 ++++++++++++++++ Directory.Build.props | 2 +- Directory.Packages.props | 2 +- Loqui.Generation/Loqui.Generation.csproj | 2 +- Loqui.Tests/Loqui.Tests.csproj | 2 +- Loqui/Loqui.csproj | 2 +- 7 files changed, 29 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index fa192f7b..866935d0 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -18,6 +18,14 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Setup .NET 6 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 6.0.* + - name: Setup .NET 7 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 7.0.* - name: Setup .NET 8 uses: actions/setup-dotnet@v1 with: diff --git a/.github/workflows/ci-publish.yml b/.github/workflows/ci-publish.yml index e7efbd91..d643e638 100644 --- a/.github/workflows/ci-publish.yml +++ b/.github/workflows/ci-publish.yml @@ -52,6 +52,14 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Setup .NET 6 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 6.0.* + - name: Setup .NET 7 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 7.0.* - name: Setup .NET 8 uses: actions/setup-dotnet@v1 with: @@ -78,6 +86,14 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 + - name: Setup .NET 6 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 6.0.* + - name: Setup .NET 7 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 7.0.* - name: Setup .NET 8 uses: actions/setup-dotnet@v1 with: diff --git a/Directory.Build.props b/Directory.Build.props index 83ee1ca9..4ce28fcb 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -4,7 +4,7 @@ true true true - 2.63.0.1 + 2.64 diff --git a/Directory.Packages.props b/Directory.Packages.props index 0c69b22f..92d2f18a 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -1,7 +1,7 @@ - [2.63] + [2.64] 4.9.2 diff --git a/Loqui.Generation/Loqui.Generation.csproj b/Loqui.Generation/Loqui.Generation.csproj index ec6274b3..19da9383 100644 --- a/Loqui.Generation/Loqui.Generation.csproj +++ b/Loqui.Generation/Loqui.Generation.csproj @@ -1,7 +1,7 @@ - net8.0 + net6.0;net7.0;net8.0 Latest diff --git a/Loqui.Tests/Loqui.Tests.csproj b/Loqui.Tests/Loqui.Tests.csproj index c56aa9d8..e5663e11 100644 --- a/Loqui.Tests/Loqui.Tests.csproj +++ b/Loqui.Tests/Loqui.Tests.csproj @@ -1,7 +1,7 @@  - net8.0 + net6.0;net7.0;net8.0 diff --git a/Loqui/Loqui.csproj b/Loqui/Loqui.csproj index 7c9ea101..877faa96 100644 --- a/Loqui/Loqui.csproj +++ b/Loqui/Loqui.csproj @@ -1,7 +1,7 @@  - net8.0;netstandard2.0 + net6.0;net7.0;net8.0;netstandard2.0 Latest