-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCouchbase.Analytics.Performer.csproj
More file actions
36 lines (31 loc) · 1.43 KB
/
Couchbase.Analytics.Performer.csproj
File metadata and controls
36 lines (31 loc) · 1.43 KB
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
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Couchbase.Analytics.Performer</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Protobuf Include="gRPC/**/*.proto" GrpcServices="Server" AdditionalImportDirs="gRPC;gRPC/columnar" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Couchbase.Analytics\Couchbase.Analytics.csproj" />
<ProjectReference Include="..\..\src\Couchbase.Core\Couchbase.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Contrib.Grpc.Core.M1" />
<PackageReference Include="Grpc.Core" />
<PackageReference Include="Google.Protobuf" />
<PackageReference Include="Grpc.AspNetCore" />
<PackageReference Include="Grpc.Net.Client" />
<PackageReference Include="Grpc.Tools" >
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Serilog" />
<PackageReference Include="Serilog.Extensions.Logging" />
<PackageReference Include="Serilog.Sinks.Console" />
<PackageReference Include="Serilog.Sinks.File" />
</ItemGroup>
</Project>