Skip to content

Commit

Permalink
Add net8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard authored Jan 19, 2024
1 parent 9e4eb11 commit 4f9335e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
submodules: true
- name: Test
run: dotnet test -c Release
run: dotnet test -c Release -f net8
- name: Generate PDF with CSharp code
if: github.event_name == 'push'
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
submodules: true
- name: Test
run: |
dotnet test -c Release -f net7
dotnet test -c Release -f net8
pushNuGetPackageToGitHubPackageRegistry:
needs: test
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<VersionPrefix>0.1.0</VersionPrefix>
<Authors>FreePhoenix888</Authors>
<OutputType>Exe</OutputType>
<TargetFramework>net6</TargetFramework>
<TargetFrameworks>net7;net8</TargetFrameworks>
<PackAsTool>true</PackAsTool>
<ToolCommandName>links2lino</ToolCommandName>
<AssemblyName>Platform.Data.Doublets.Lino.Exporter</AssemblyName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<VersionPrefix>0.1.0</VersionPrefix>
<Authors>FreePhoenix888</Authors>
<OutputType>Exe</OutputType>
<TargetFramework>net6</TargetFramework>
<TargetFrameworks>net7;net8</TargetFrameworks>
<PackAsTool>true</PackAsTool>
<ToolCommandName>lino2links</ToolCommandName>
<AssemblyName>Platform.Data.Doublets.Lino.Importer</AssemblyName>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7</TargetFramework>
<TargetFrameworks>net7;net8</TargetFrameworks>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<AssemblyTitle>Platform.Data.Doublets.Lino</AssemblyTitle>
<VersionPrefix>0.0.1</VersionPrefix>
<Authors>FreePhoenix888</Authors>
<TargetFramework>net7</TargetFramework>
<TargetFrameworks>net7;net8</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyName>Platform.Data.Doublets.Lino</AssemblyName>
<PackageId>Platform.Data.Doublets.Lino</PackageId>
Expand Down

0 comments on commit 4f9335e

Please sign in to comment.