-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAM.Extensions.Logging.ElasticSearch.csproj
28 lines (25 loc) · 1.34 KB
/
AM.Extensions.Logging.ElasticSearch.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>AM.Extensions.Logging.ElasticSearch</PackageId>
<Authors>amccool</Authors>
<Product>AM.Extensions.Logging.ElasticSearch</Product>
<Description>Microsoft.Extensions.Logging posting to ElasticSearch</Description>
<Copyright>2021</Copyright>
<PackageTags>ElasticSearch;ILogger;Monitoring;kibana;Microsoft.Extensions.Logging;logging;MEL</PackageTags>
<PackageLicenseUrl>https://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Elasticsearch.Net" Version="6.8.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="2.1.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="System.Reactive.Linq" Version="4.0.0" />
</ItemGroup>
</Project>