-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInfra.FileAccess.Grpc.csproj
31 lines (26 loc) · 1.09 KB
/
Infra.FileAccess.Grpc.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.30.2" />
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.70.0" />
<PackageReference Include="Grpc.Tools" Version="2.71.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Core\Infra.Core\Infra.Core.csproj" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="..\..\..\Server\File\GrpcFileServer\Protos\directory.proto" GrpcServices="Client">
<Link>Protos\directory.proto</Link>
</Protobuf>
<Protobuf Include="..\..\..\Server\File\GrpcFileServer\Protos\file.proto" GrpcServices="Client">
<Link>Protos\file.proto</Link>
</Protobuf>
</ItemGroup>
</Project>