-
Notifications
You must be signed in to change notification settings - Fork 1
/
NLog.Layouts.ClefJsonLayout.csproj
29 lines (24 loc) · 1.21 KB
/
NLog.Layouts.ClefJsonLayout.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>An NLog layout that writes JSON in Compact Log Event Format (CLEF) that is compatible with Seq. Based on NLog.Targets.Seq code.</Description>
<Authors>Datalust;Contributors;Pavel Mikhaylov</Authors>
<Version>1.0.2</Version>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageTags>seq;nlog;clef;json</PackageTags>
<PackageProjectUrl>https://github.com/paulem/nlog-layouts-clef</PackageProjectUrl>
<RepositoryUrl>https://github.com/paulem/nlog-layouts-clef</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath=""/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="NLog" Version="5.2.5"/>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.0"/>
</ItemGroup>
</Project>