elliebot/src/EllieBot.VotesApi/EllieBot.VotesApi.csproj

19 lines
534 B
XML
Raw Normal View History

2024-03-23 16:42:10 +13:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
2024-05-13 00:56:07 +12:00
<TargetFramework>net8.0</TargetFramework>
2024-03-23 16:42:10 +13:00
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MorseCode.ITask" Version="2.0.3" />
2025-01-24 00:46:47 +13:00
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
<PackageReference Include="Grpc.AspNetCore" Version="2.70.0" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="Protos/vote.proto" GrpcServices="Client" />
2024-03-23 16:42:10 +13:00
</ItemGroup>
</Project>