2026-09-15 17:54:16 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2026-09-18 18:51:53 +02:00
|
|
|
<PropertyGroup Condition="'$(Protobuf_ProtocFullPath)' == '' and Exists('/opt/homebrew/bin/protoc')">
|
|
|
|
|
<!-- Grpc.Tools currently ships an x64-only macOS protoc. Prefer Homebrew's native
|
|
|
|
|
compiler on Apple Silicon hosts that do not have Rosetta installed. -->
|
|
|
|
|
<Protobuf_ProtocFullPath>/opt/homebrew/bin/protoc</Protobuf_ProtocFullPath>
|
|
|
|
|
</PropertyGroup>
|
2026-09-15 17:54:16 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.36.1" />
|
|
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.83.0" PrivateAssets="all" />
|
2026-09-19 22:40:48 +02:00
|
|
|
<Protobuf Include="../../../proto/voicecat.proto" GrpcServices="None" />
|
2026-09-15 17:54:16 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|