Skip to content

Commit

Permalink
Readd net6/7 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Mar 20, 2024
1 parent 0d1783b commit 5dec6d4
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 5 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/ci-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ImplicitUsings>true</ImplicitUsings>
<VersionPrefix>2.63.0.1</VersionPrefix>
<VersionPrefix>2.64</VersionPrefix>
</PropertyGroup>

</Project>
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<ItemGroup>
<PackageVersion Include="Noggog.CSharpExt">
<Version>[2.63]</Version>
<Version>[2.64]</Version>
</PackageVersion>
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp">
<Version>4.9.2</Version>
Expand Down
2 changes: 1 addition & 1 deletion Loqui.Generation/Loqui.Generation.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<LangVersion>Latest</LangVersion>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion Loqui.Tests/Loqui.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

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

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Loqui/Loqui.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

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

Expand Down

0 comments on commit 5dec6d4

Please sign in to comment.