-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCouchbase.Analytics.csproj
More file actions
50 lines (40 loc) · 1.89 KB
/
Couchbase.Analytics.csproj
File metadata and controls
50 lines (40 loc) · 1.89 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Couchbase.AnalyticsClient</RootNamespace>
<VersionPrefix>1.0.0-rc1</VersionPrefix>
<AssemblyName>Couchbase.AnalyticsClient</AssemblyName>
<PackageId>Couchbase.AnalyticsClient</PackageId>
<Product>Couchbase Analytics Client</Product>
<Description>The Official Couchbase Analytics .NET SDK</Description>
<!-- TODO: Confirm release notes URL when repository is created -->
<PackageReleaseNotes>https://docs.couchbase.com/analytics-dotnet-sdk/current/project-docs/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" />
</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>
</Project>