Skip to content

Commit

Permalink
bumping to .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Nov 14, 2023
1 parent d510764 commit 9c0d4ab
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 10 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x

- name: Setup .NET
uses: actions/setup-dotnet@v1
Expand All @@ -31,9 +35,6 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Setup .NET 5
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x

- name: Test
run: dotnet run -p build/build.csproj -- ci
6 changes: 6 additions & 0 deletions .github/workflows/publish_codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Setup .NET 8
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x

- name: Setup .NET 7
uses: actions/setup-dotnet@v1
with:
Expand Down
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<VersionPrefix>3.2.0</VersionPrefix>
<VersionPrefix>3.4.0</VersionPrefix>
<LangVersion>10.0</LangVersion>
<Authors>Jeremy D. Miller;Babu Annamalai;Oskar Dudycz;Joona-Pekka Kokko</Authors>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<DebugType>portable</DebugType>

<PackageIconUrl>https://github.com/JasperFx/JasperFx.CodeGeneration/blob/main/jasper-icon.png?raw=true</PackageIconUrl>
<PackageIconUrl>https://raw.githubusercontent.com/JasperFx/JasperFx.Core/main/jasperfx-logo.jpg?raw=true</PackageIconUrl>
<PackageProjectUrl>https:/github.com/jasperfx/JasperFx.CodeGeneration</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<NoWarn>1570;1571;1572;1573;1574;1587;1591;1701;1702;1711;1735;0618</NoWarn>
Expand Down
7 changes: 7 additions & 0 deletions JasperFx.CodeGeneration.sln
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JasperFx.CodeGeneration.Com
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JasperFx.RuntimeCompiler", "src\JasperFx.RuntimeCompiler\JasperFx.RuntimeCompiler.csproj", "{07661BB4-1737-4EDC-AB50-FA52FACCB639}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{CBFCFC85-0B37-498E-992F-33D72AFFF54A}"
ProjectSection(SolutionItems) = preProject
Directory.Build.props = Directory.Build.props
.github\workflows\dotnet.yml = .github\workflows\dotnet.yml
.github\workflows\publish_codegen.yml = .github\workflows\publish_codegen.yml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Oakton" Version="6.0.0" />
<PackageReference Include="Oakton" Version="6.1.0" />
</ItemGroup>


Expand Down
5 changes: 3 additions & 2 deletions src/JasperFx.CodeGeneration/JasperFx.CodeGeneration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FastExpressionCompiler" Version="3.3.4" />
<PackageReference Include="JasperFx.Core" Version="1.3.0" />
<PackageReference Include="FastExpressionCompiler" Version="4.0.0" />
<PackageReference Include="JasperFx.Core" Version="1.5.0" />
</ItemGroup>
</Project>

0 comments on commit 9c0d4ab

Please sign in to comment.