-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathLighthouse.csproj
28 lines (26 loc) · 994 Bytes
/
Lighthouse.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>$(NetCoreVersion)</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Akka.Cluster.Hosting"/>
<PackageReference Include="Akka.Logger.Serilog"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Xml"/>
<PackageReference Include="Petabridge.Cmd.Cluster"/>
<PackageReference Include="Petabridge.Cmd.Remote"/>
<PackageReference Include="Akka.Bootstrap.Docker"/>
<PackageReference Include="Serilog"/>
<PackageReference Include="Serilog.Settings.Configuration"/>
<PackageReference Include="Serilog.Sinks.Console"/>
</ItemGroup>
<PropertyGroup>
<ServerGarbageCollection>true</ServerGarbageCollection>
<TieredPGO>true</TieredPGO>
</PropertyGroup>
<ItemGroup>
<None Update="akka.hocon">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>