1<Project Sdk="Microsoft.NET.Sdk">
2
3  <!--
4     Note: common properties and targets for tests are imported from the
5     Directory.Build.props and Directory.Build.targets files in the parent directoty
6  -->
7
8  <!-- The protobuf compiler settings to test -->
9  <!-- Test various optional options are passed to protoc and plugin -->
10  <ItemGroup>
11    <Protobuf Include="file.proto"
12      AdditionalProtocArguments="--plugin=protoc-gen-myplugin=D:\myplugin.exe;--myplugin_out=."
13      OutputOptions="--outOpt1=foo;--outOpt2=bar"
14      GrpcOutputOptions="--grpcOpt1=one;--grpcOpt2=two;--grpcOpt3=three"
15    />
16  </ItemGroup>
17
18</Project>
19