Skip to content

Commit

Permalink
Added an example project Akka.Hosting.CustomJournalIdDemo.FSharp (#183)
Browse files Browse the repository at this point in the history
* Akka.Hosting.CustomJournalIdDemo.FSharp Added

* Akka.Hosting.CustomJournalIdDemo.FSharp bug fixed

Co-authored-by: Your Name <you@example>
Co-authored-by: Aaron Stannard <[email protected]>
  • Loading branch information
3 people authored Jan 5, 2023
1 parent 05d9fa7 commit e797852
Show file tree
Hide file tree
Showing 3 changed files with 417 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>

<ItemGroup>
<!--<PackageReference Include="Akka" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.Cluster" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.Cluster.Sharding" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.Cluster.Tools" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.Coordination" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.DistributedData" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.FSharp" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.Logger.NLog" Version="1.4.10" />
<PackageReference Include="Akka.Persistence" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.Persistence.FSharp" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.Persistence.SqlServer" Version="1.4.35" />
<PackageReference Include="Akka.Quartz.Actor" Version="1.4.47" />
<PackageReference Include="Akka.Remote" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.Serialization.Hyperion" Version="1.5.0-alpha3" />
<PackageReference Include="Akka.Streams" Version="1.5.0-alpha3" />-->
<PackageReference Include="Akka.Cluster.Hosting" Version="1.0.0" />
<PackageReference Include="Akka.Persistence.SqlServer.Hosting" Version="1.0.0" />
</ItemGroup>

<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>

</Project>
Loading

0 comments on commit e797852

Please sign in to comment.