gpt4 book ai didi

c# - 从 proto 文件构建 cs 文件?

转载 作者:太空宇宙 更新时间:2023-11-03 15:07:23 25 4
gpt4 key购买 nike

这可能看起来很基础,但我对 C# 很陌生,所以谷歌引用文档对我来说不是那么清楚。

他们指示:

protoc --proto_path=bar --csharp_out=src --csharp_opt=base_namespace=Example player.proto

他们的例子是

protoc --proto_path=src --csharp_out=build/gen --csharp_opt=file_extension=.g.cs,base_namespace=Example src/foo.proto

所以我的基本问题 list 是:

  • 对于proto_path,是从程序文件夹的顶层开始

  • 什么是“bar”选项,它总是“src”吗?

  • 什么是“src”选项,它总是“build/gen”吗?

  • 这是可复制的吗? '--csharp_opt=file_extension=.g.cs,base_namespace=MyProgram src/MyProtoFile.proto'

最佳答案

For proto_path, is this starting from the top level of the program folder

--原型(prototype)路径是要转换为 cs 文件的 proto 文件所在的位置。这与 protoc 可执行文件相关,但也可以设置到特定位置,例如--proto_path="C:/myprotofiles/"

What is the 'bar' option, is it always 'src'?

“栏”不是一个选项。 “foo”和“bar”在给出通用指令时通常用作占位符 (https://en.wikipedia.org/wiki/Foobar)

What is the 'src' option, is it always 'build/gen'?

src 不是一个选项。 src 是目录的占位符。您将用包含原型(prototype)文件的目录替换“src”。

--csharp_out 是您希望输出 C# 文件的位置。这也与 protoc 可执行文件有关,但也可以设置到特定位置,例如--csharp_out="C:/mycsfiles/"

Is this copiable? '--csharp_opt=file_extension=.g.cs,base_namespace=MyProgram src/MyProtoFile.proto'

我不太确定你的问题。这是两部分。

--csharp_opt 设置选项。此示例将 file_extension 设置为 .g.cs(因此输出文件将为 somecsfile.g.cs)并将 base_namespace 设置为“MyProgram”,以便生成的所有类都将位于名为 MyProgram 的命名空间中。

Google 示例中的“src/MyProtoFile.proto”或“src/foo.proto”是/src 目录中的原型(prototype)文件。在我们的示例中,我们会将其替换为“c:/myprotofiles/myprotofile.proto”

所以,我们有:

protoc --proto_path="C:/myprotofiles/" --csharp_out="C:/mycsfiles/" --csharp_opt=file_extension=.g.cs,base_namespace=MyProtoFileNamespace "c:/myprotofiles/myprotofile.proto"

设置显式路径不是必需的,但希望能澄清事情(至少对于 Windows 用户而言!)

关于c# - 从 proto 文件构建 cs 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42741810/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com