-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCouchbase.Analytics.csproj
More file actions
59 lines (47 loc) · 2.21 KB
/
Couchbase.Analytics.csproj
File metadata and controls
59 lines (47 loc) · 2.21 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Couchbase.AnalyticsClient</RootNamespace>
<VersionPrefix>1.0.1</VersionPrefix>
<AssemblyName>Couchbase.AnalyticsClient</AssemblyName>
<PackageId>Couchbase.AnalyticsClient</PackageId>
<Product>Couchbase Analytics Client</Product>
<Description>The Official Couchbase Analytics .NET SDK</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://docs.couchbase.com/dotnet-analytics-sdk/current/project-docs/analytics-sdk-release-notes.html</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(SignAssembly)'=='true'">
<DefineConstants>$(DefineConstants);SIGNING</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DnsClient" />
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="System.Linq.Async" />
<PackageReference Include="System.Net.Http.Json" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Internal\CouchbaseHttpClientFactory.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Couchbase.Core\Couchbase.Core.csproj" >
<ReferenceOutputAssembly>true</ReferenceOutputAssembly>
<IncludeAssets>Couchbase.Core.dll</IncludeAssets>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Internal\Certificates\" />
<Folder Include="Internal\Exceptions\" />
<Folder Include="Internal\Options\" />
<Folder Include="Internal\Query\" />
<Folder Include="Public\" />
<Folder Include="Retry\" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>