-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathAkka.CQRS.Pricing.Service.csproj
31 lines (27 loc) · 1.16 KB
/
Akka.CQRS.Pricing.Service.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>$(NetVersion)</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Content Include="app.conf">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Akka.Bootstrap.Docker" />
<PackageReference Include="Akka.HealthCheck.Persistence" />
<PackageReference Include="Akka.Persistence.Sql" />
<PackageReference Include="Microsoft.Data.SqlClient" />
<PackageReference Include="Akka.Cluster.Hosting" />
<PackageReference Include="Petabridge.Cmd.Cluster" />
<PackageReference Include="Petabridge.Cmd.Cluster.Sharding" />
<PackageReference Include="Petabridge.Cmd.Remote" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Akka.CQRS.Infrastructure\Akka.CQRS.Infrastructure.csproj" />
<ProjectReference Include="..\Akka.CQRS.Pricing.Actors\Akka.CQRS.Pricing.Actors.csproj" />
<ProjectReference Include="..\Akka.CQRS.Pricing.Cli\Akka.CQRS.Pricing.Cli.csproj" />
</ItemGroup>
</Project>