32 lines
1.6 KiB
XML
32 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<OutputPath>..\..\dist\scheduler\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<RootNamespace>WingsEmu.ClusterScheduler</RootNamespace>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.24" />
|
|
<PackageReference Include="Hangfire.MemoryStorage" Version="1.7.0" />
|
|
<PackageReference Include="Hangfire.PostgreSql" Version="1.8.5.3" />
|
|
<PackageReference Include="RandN" Version="0.3.0" />
|
|
|
|
<PackageReference Include="Serilog" Version="2.10.0" />
|
|
<PackageReference Include="Serilog.Extensions.Logging" Version="3.0.1" />
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PhoenixLib.DAL.Redis\PhoenixLib.DAL.Redis.csproj" />
|
|
<ProjectReference Include="..\PhoenixLib.Events\PhoenixLib.Events.csproj" />
|
|
<ProjectReference Include="..\PhoenixLib.Logging\PhoenixLib.Logging.csproj" />
|
|
<ProjectReference Include="..\WingsEmu.Communication.gRPC\WingsEmu.Communication.gRPC.csproj" />
|
|
<ProjectReference Include="..\WingsEmu.Health\WingsEmu.Health.csproj" />
|
|
<ProjectReference Include="..\_plugins\Plugin.DB.EF\Plugin.DB.EF.csproj" />
|
|
<ProjectReference Include="..\_plugins\WingsEmu.Plugins.DistributedGameEvents\WingsEmu.Plugins.DistributedGameEvents.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|