Description
What language does this apply to?
proto3 for C#
Describe the problem you are trying to solve.
I want to build my project also for ARM architecture. I use protoc to generate C# code during build, but am unable to do so when building on (linux) ARM, because Google.Protobuf.Tools nuget is missing any protoc variant built for ARM.
(I know already generated code works fine, I am just unable to generate it on ARM builders.)
Describe the solution you'd like
I would like the Google.Protobuf.Tools nuget to contain also ARM variants of protoc tool.
Describe alternatives you've considered
Adjusting my build process so that protoc is run in some kind of emulation of x86 architecture.
Additional context
In our projects, generated code is not tracked by git, and we are running protoc as part of build process. This prevents developer errors such as forgetting to regenerate code and forces consistent results in CI.