-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for structured logging properties (IncludeEventProperti…
…es = true)
- Loading branch information
Showing
10 changed files
with
153 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="net46" /> | ||
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net46" /> | ||
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="net46" /> | ||
<package id="NLog" version="4.5.4" targetFramework="net46" /> | ||
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="net45" /> | ||
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net45" /> | ||
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="net45" /> | ||
<package id="NLog" version="4.5.4" targetFramework="net45" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 20 additions & 2 deletions
22
src/NLog.Targets.GraylogHttp/NLog.Targets.GraylogHttp.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard1.3</TargetFramework> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<TargetFrameworks>netstandard1.3;net45</TargetFrameworks> | ||
|
||
<Version>1.0.0</Version> | ||
<Title>NLog.Targets.GraylogHttp</Title> | ||
<Product>NLog.Targets.GraylogHttp</Product> | ||
<Authors>Dustin Chilson</Authors> | ||
<Description>NLog target that pushes log messages to Graylog using the Http input</Description> | ||
<Copyright>Copyright © 2015</Copyright> | ||
|
||
<PackageTags>NLog;Graylog;Log;Logging</PackageTags> | ||
<PackageProjectUrl>https://github.com/dustinchilson/NLog.Targets.GraylogHttp</PackageProjectUrl> | ||
<PackageLicenseUrl>https://github.com/dustinchilson/NLog.Targets.GraylogHttp/blob/master/LICENSE</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>git://github.com/dustinchilson/NLog.Targets.GraylogHttp</RepositoryUrl> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NLog" Version="4.5.4" /> | ||
<PackageReference Include="SimpleJson" Version="0.38.0" /> | ||
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.3.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> | ||
<Reference Include="System.Net.Http" /> | ||
</ItemGroup> | ||
</Project> |
15 changes: 0 additions & 15 deletions
15
src/NLog.Targets.GraylogHttp/NLog.Targets.GraylogHttp.nuspec
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.