-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathExamples.Core.csproj
More file actions
38 lines (34 loc) · 2 KB
/
Copy pathExamples.Core.csproj
File metadata and controls
38 lines (34 loc) · 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
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="MessagePack" Version="3.1.7" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="Couchbase.Extensions.DependencyInjection" Version="3.9.3" />
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.1" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<!--
The example .cs files live under modules/<m>/examples (Antora needs them there).
Non-recursive globs pick up every loose snippet in each examples root: this now
includes the main-SDK Transactions, Search, RangeScan and SubDocument examples.
The non-recursive glob deliberately does NOT descend into howtos/examples/logging
(built by the Examples.Logging project). EncryptingUsingSdk.cs is excluded because
it needs the separate encryption package (Examples.Encryption). devguide is listed
explicitly because most of its files are orphaned and out of scope.
-->
<ItemGroup>
<Compile Include="../../modules/hello-world/examples/*.cs" />
<Compile Include="../../modules/concept-docs/examples/*.cs" />
<Compile Include="../../modules/howtos/examples/*.cs"
Exclude="../../modules/howtos/examples/EncryptingUsingSdk.cs" />
<Compile Include="../../modules/devguide/examples/dotnet/Analytics.cs" />
<Compile Include="../../modules/devguide/examples/dotnet/ConnectionBase.cs" />
<Compile Include="../../modules/devguide/examples/dotnet/Cloud/Cloud.cs" />
</ItemGroup>
</Project>