-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathCouchbase.Linq.csproj
More file actions
54 lines (45 loc) · 2.2 KB
/
Couchbase.Linq.csproj
File metadata and controls
54 lines (45 loc) · 2.2 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Linq2Couchbase</PackageId>
<Title>The official Linq provider for Couchbase N1QL</Title>
<Authors>Couchbase, Inc.</Authors>
<Owners>Couchbase, Inc.</Owners>
<Copyright>Copyright 2024</Copyright>
<Description>The official Language Integrated Query (LINQ) provider for querying Couchbase Server with N1QL using the Couchbase .NET SDK 3.4 and greater.</Description>
<PackageTags>couchbase;linq;n1ql;nosql;database</PackageTags>
<PackageProjectUrl>https://github.com/couchbaselabs/Linq2Couchbase</PackageProjectUrl>
<PackageIconUrl></PackageIconUrl>
<TargetFrameworks>netstandard2.0;net8.0;net10.0</TargetFrameworks>
<RootNamespace>Couchbase.Linq</RootNamespace>
<AssemblyName>Couchbase.Linq</AssemblyName>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Nullable>enable</Nullable>
<SignAssembly>false</SignAssembly>
<Version>2.1.0</Version>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageIcon>couchbase.png</PackageIcon>
<RepositoryUrl>https://github.com/couchbaselabs/Linq2Couchbase</RepositoryUrl>
<AssemblyOriginatorKeyFile>Couchbase.snk</AssemblyOriginatorKeyFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CouchbaseNetClient" Version="3.9.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="Remotion.Linq" Version="2.2.0" />
</ItemGroup>
<ItemGroup Condition="!$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<None Include="couchbase.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="../../README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>