elliebot/src/EllieBot.Coordinator/EllieBot.Coordinator.csproj

20 lines
603 B
XML
Raw Normal View History

2024-03-23 01:34:09 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2024-05-12 13:00:17 +00:00
<TargetFramework>net8.0</TargetFramework>
2024-03-23 01:34:09 +00:00
</PropertyGroup>
<ItemGroup>
<Protobuf Include="Protos\coordinator.proto" GrpcServices="Server" />
</ItemGroup>
<ItemGroup>
2024-05-12 13:00:17 +00:00
<PackageReference Include="Grpc.AspNetCore" Version="2.62.0" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
2024-03-23 01:34:09 +00:00
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="YamlDotNet" Version="15.1.4" />
2024-03-23 01:34:09 +00:00
</ItemGroup>
</Project>