update protobuf to 136

This commit is contained in:
Mikhail Tyukin
2025-08-09 14:05:30 -04:00
parent c464107149
commit bb603c44f3
3 changed files with 33508 additions and 7990 deletions

View File

@@ -26,13 +26,17 @@
<PackageReference Include="DnsClient" Version="1.8.0" />
<PackageReference Include="Google.Api.CommonProtos" Version="2.17.0" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.31.1" />
<PackageReference Include="Grpc.Tools" Version="2.72.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="MemoryPack" Version="1.21.4" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageReference Include="Paseto.Core" Version="1.4.1" />
<PackageReference Include="PeterO.Cbor" Version="4.5.5" />
<PackageReference Include="SharpZipLib" Version="1.4.2" />
<PackageReference Include="Sodium.Core" Version="1.4.0" />
<PackageReference Include="System.Text.Json" Version="9.0.7" />
<PackageReference Include="System.Text.Json" Version="9.0.8" />
</ItemGroup>
<ItemGroup>

View File

@@ -0,0 +1,18 @@
using EpinelPS.Utils;
namespace EpinelPS.LobbyServer.Soloraid;
[PacketPath("/soloraidmuseum/get/reddotdata")]
public class GetBadgeData : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
ReqGetSoloRaidMuseumRedDotData req = await ReadData<ReqGetSoloRaidMuseumRedDotData>();
ResGetSoloRaidMuseumRedDotData response = new();
// TODO
await WriteDataAsync(response);
}
}

File diff suppressed because one or more lines are too long