Skip to content

Commit

Permalink
Merge pull request #1016 from eventflow/net-8
Browse files Browse the repository at this point in the history
v1: .NET 8
  • Loading branch information
rasmus authored Mar 12, 2024
2 parents 1df3e47 + 8dec22b commit 2ff4212
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,15 @@ jobs:
dotnet-version:
3.1.x
6.0.x
8.0.x

# Yes, EventFlow has a custom built build tool. If you are reading this
# you might have a better idea of how to do it alternatively, if so,
# create a PR for EventFlow.

# https://github.com/rasmus/Bake
- name: Install Bake
run: dotnet tool install -g --version 0.21.34-beta Bake
run: dotnet tool install -g --version 0.23.36-beta Bake

- name: Run Bake
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,15 @@ jobs:
dotnet-version:
3.1.x
6.0.x
8.0.x

# Yes, EventFlow has a custom built build tool. If you are reading this
# you might have a better idea of how to do it alternatively, if so,
# create a PR for EventFlow.

# https://github.com/rasmus/Bake
- name: Install Bake
run: dotnet tool install -g --version 0.21.34-beta Bake
run: dotnet tool install -g --version 0.23.36-beta Bake

- name: Run Bake
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ The following list key characteristics of each version as well as its related br
- 🟠 `EventFlow.Elasticsearch`
- 🟠 `EventFlow.EntityFramework`
- 🟠 `EventFlow.EventStores.EventStore`
- 🟠 `EventFlow.Hangfire`
- 🟢 `EventFlow.Hangfire`
- 🟢 `EventFlow.MongoDB`
- 🟢 `EventFlow.MsSql`
- 💀 `EventFlow.Owin`
Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow.Hangfire/EventFlow.Hangfire.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
<PackageId>EventFlow.Hangfire</PackageId>
<Title>EventFlow.Hangfire</Title>
<Authors>Rasmus Mikkelsen</Authors>
Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow.MongoDB/EventFlow.MongoDB.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
<PackageId>EventFlow.MongoDB</PackageId>
<Title>EventFlow.MongoDB</Title>
<Authors>Jan Feyen, Warren Pieterse</Authors>
Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow.Sql.Tests/EventFlow.Sql.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
<IsPackable>False</IsPackable>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow.Sql/EventFlow.Sql.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
<Title>EventFlow.Sql</Title>
<Authors>Rasmus Mikkelsen</Authors>
<Company>Rasmus Mikkelsen</Company>
Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow.TestHelpers/EventFlow.TestHelpers.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
<Title>EventFlow.TestHelpers</Title>
<Authors>Rasmus Mikkelsen</Authors>
<Company>Rasmus Mikkelsen</Company>
Expand Down
2 changes: 1 addition & 1 deletion Source/EventFlow.Tests/EventFlow.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
<IsPackable>False</IsPackable>
</PropertyGroup>
<ItemGroup>
Expand Down
9 changes: 8 additions & 1 deletion Source/EventFlow/EventFlow.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
<Title>EventFlow</Title>
<Description>Async/await first CQRS+ES and DDD framework for .NET - https://docs.geteventflow.net/</Description>
<PackageTags>CQRS ES event sourcing</PackageTags>
Expand Down Expand Up @@ -40,4 +40,11 @@
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
</ItemGroup>

</Project>

0 comments on commit 2ff4212

Please sign in to comment.