|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <OutputType>Exe</OutputType> |
| 5 | + <TargetFramework>net9.0</TargetFramework> |
| 6 | + <ImplicitUsings>enable</ImplicitUsings> |
| 7 | + <Nullable>enable</Nullable> |
| 8 | + </PropertyGroup> |
| 9 | + |
| 10 | + <ItemGroup> |
| 11 | + <Protobuf Include="SubDir\Test3.proto"> |
| 12 | + <GrpcServices>Both</GrpcServices> |
| 13 | + <Access>Public</Access> |
| 14 | + <ProtoCompile>True</ProtoCompile> |
| 15 | + <CompileOutputs>True</CompileOutputs> |
| 16 | + <OutputDir>obj\Debug\net9.0\</OutputDir> |
| 17 | + <Generator>MSBuild:Compile</Generator> |
| 18 | + </Protobuf> |
| 19 | + <Protobuf Include="SubDir\Test2.proto"> |
| 20 | + <GrpcServices>Both</GrpcServices> |
| 21 | + <Access>Public</Access> |
| 22 | + <ProtoCompile>True</ProtoCompile> |
| 23 | + <CompileOutputs>True</CompileOutputs> |
| 24 | + <OutputDir>obj\Debug\net9.0\</OutputDir> |
| 25 | + <Generator>MSBuild:Compile</Generator> |
| 26 | + </Protobuf> |
| 27 | + <Protobuf Include="Test1.proto"> |
| 28 | + <GrpcServices>Both</GrpcServices> |
| 29 | + <Access>Public</Access> |
| 30 | + <ProtoCompile>True</ProtoCompile> |
| 31 | + <CompileOutputs>True</CompileOutputs> |
| 32 | + <OutputDir>obj\Debug\net9.0\</OutputDir> |
| 33 | + <Generator>MSBuild:Compile</Generator> |
| 34 | + </Protobuf> |
| 35 | + <Protobuf Include="Test2.proto"> |
| 36 | + <GrpcServices>Both</GrpcServices> |
| 37 | + <Access>Public</Access> |
| 38 | + <ProtoCompile>True</ProtoCompile> |
| 39 | + <CompileOutputs>True</CompileOutputs> |
| 40 | + <OutputDir>obj\Debug\net9.0\</OutputDir> |
| 41 | + <Generator>MSBuild:Compile</Generator> |
| 42 | + </Protobuf> |
| 43 | + </ItemGroup> |
| 44 | + |
| 45 | + <ItemGroup> |
| 46 | + <PackageReference Include="Google.Protobuf" Version="3.31.1"/> |
| 47 | + <PackageReference Include="Grpc.Tools" Version="2.72.0"> |
| 48 | + <PrivateAssets>all</PrivateAssets> |
| 49 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 50 | + </PackageReference> |
| 51 | + <PackageReference Include="Porticle.Grpc.TypeMapper" Version="1.4.113"> |
| 52 | + <PrivateAssets>all</PrivateAssets> |
| 53 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 54 | + </PackageReference> |
| 55 | + </ItemGroup> |
| 56 | + |
| 57 | +</Project> |
0 commit comments