.NET port / test (macos-latest) (push) Canceled after 0s
.NET port / test (ubuntu-24.04) (push) Canceled after 0s
.NET port / test (windows-latest) (push) Canceled after 0s
.NET port / apple-client (push) Canceled after 0s
.NET port / cpp-conformance (push) Canceled after 0s
13 lines
678 B
XML
13 lines
678 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<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>
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.36.1" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.83.0" PrivateAssets="all" />
|
|
<Protobuf Include="../../../core/proto/voicecat.proto" GrpcServices="None" />
|
|
</ItemGroup>
|
|
</Project>
|