-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathMongoDB.Driver.Core.csproj
51 lines (42 loc) · 1.88 KB
/
MongoDB.Driver.Core.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<CodeAnalysisRuleSet>..\..\MongoDB.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup>
<AssemblyTitle>MongoDB.Driver.Core</AssemblyTitle>
<Product>MongoDB.Driver.Core</Product>
<PackageId>MongoDB.Driver.Core</PackageId>
<Description>Official MongoDB supported Driver Core library. See https://www.mongodb.com/docs/drivers/csharp/ for more details.</Description>
<PackageDescription>Core Component of the Official MongoDB .NET Driver.</PackageDescription>
<IsPackable>true</IsPackable>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>MongoDB.Driver</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<NoWarn>NU5100</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.SecurityToken" Version="3.7.100.14" />
<PackageReference Include="DnsClient" Version="1.6.1" />
<PackageReference Include="MongoDB.Libmongocrypt" Version="1.8.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.0.0" />
<PackageReference Include="SharpCompress" Version="0.30.1" />
<PackageReference Include="Snappier" Version="1.0.0" />
<PackageReference Include="ZstdSharp.Port" Version="0.6.2" />
<PackageReference Include="System.Buffers" Version="4.5.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MongoDB.Bson\MongoDB.Bson.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\MongoDB.Shared\Hasher.cs" Link="Core\Misc\Hasher.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\THIRD-PARTY-NOTICES" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>