You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
Global build properties for all projects in the solution.
This file is automatically imported by all .csproj files.
-->
<PropertyGroup>
<!-- Enable C# preview features (null conditional assignment, field keyword, etc.) -->
<LangVersion>preview</LangVersion>
<!-- Use system protoc on Apple Silicon (ARM64) to avoid "Bad CPU type" error -->
<!-- This works for macOS with Homebrew-installed protoc -->
<Protobuf_Protoc Condition="'$(OS)' == 'Unix' And Exists('/opt/homebrew/bin/protoc')">/opt/homebrew/bin/protoc</Protobuf_Protoc>
<!-- Fallback for Linux or other Unix systems with protoc in standard locations -->
<Protobuf_Protoc Condition="'$(OS)' == 'Unix' And '$(Protobuf_Protoc)' == '' And Exists('/usr/local/bin/protoc')">/usr/local/bin/protoc</Protobuf_Protoc>
<Protobuf_Protoc Condition="'$(OS)' == 'Unix' And '$(Protobuf_Protoc)' == '' And Exists('/usr/bin/protoc')">/usr/bin/protoc</Protobuf_Protoc>