-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExternalProcessGrpc.csproj
33 lines (27 loc) · 1 KB
/
ExternalProcessGrpc.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!--<TargetFramework>net8.0</TargetFramework>-->
<TargetFramework>net48</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.25.1" />
<PackageReference Include="Grpc.Net.Client" Version="2.60.0" />
<PackageReference Include="Grpc.Tools" Version="2.60.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Protobuf Include="..\ClassLibraryProtobuf\greet.proto" GrpcServices="Server" />
</ItemGroup>
<ItemGroup>
<None Include="..\ClassLibraryProtobuf\greet.proto" Link="greet.proto" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ClassLibraryProtobuf\ClassLibraryProtobuf.csproj" />
</ItemGroup>
</Project>