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  <ItemGroup>
10    <Protobuf Include="messages.proto" GrpcServices="none" />
11    <Protobuf Include="serveronly.proto" GrpcServices="server" />
12    <Protobuf Include="clientonly.proto" GrpcServices="client" />
13    <Protobuf Include="clientandserver.proto" GrpcServices="both" />
14  </ItemGroup>
15
16</Project>
17