本文主要是介绍Visual Studio 2019 C# 自动生成Protobuf,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Visual Studio VS2019 C#项目 自动生成Protobuf
1. 用NuGet安装Google.Protobuf,Google.Protobuf.Tools, Grpc,Grpc.Tools等包
2.在项目.csproj文件中增加
<ItemGroup><Compile Include="Properties\AssemblyInfo.cs" /><Compile Include="Proto\demo.cs" /></ItemGroup><ItemGroup><None Include="packages.config" /><Protobuf Include="Proto\demo.proto" CompilesOutput="False" GrpcServices="None" OutputDir=".\" /></ItemGroup>
自动将.proto文件转换为.cs文件
3. 添加引用protobuflib项目
这篇关于Visual Studio 2019 C# 自动生成Protobuf的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!