-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNetCoreELK.csproj
More file actions
18 lines (15 loc) · 795 Bytes
/
NetCoreELK.csproj
File metadata and controls
18 lines (15 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Elasticsearch.Net" Version="7.1.0" />
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.3" />
<PackageReference Include="NLog.Extensions.Logging" Version="1.5.2" />
<PackageReference Include="NLog.Targets.ElasticSearch" Version="6.1.0" />
<PackageReference Include="NLog.Web.AspNetCore" Version="4.8.4" />
</ItemGroup>
</Project>