mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
dev: Yt searches now INTERNALLY return multiple results but there is no way right now to paginate plain text results dev: moved some stuff around
22 lines
633 B
XML
22 lines
633 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.28.2" />
|
|
<PackageReference Include="Grpc" Version="2.46.6" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.66.0" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="protos/*.proto">
|
|
<GrpcServices>Server</GrpcServices>
|
|
</Protobuf>
|
|
</ItemGroup>
|
|
|
|
</Project>
|