-
Notifications
You must be signed in to change notification settings - Fork 44
/
log4stash.nuspec
43 lines (42 loc) · 1.79 KB
/
log4stash.nuspec
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
39
40
41
42
43
<?xml version="1.0"?>
<package>
<metadata>
<id>log4stash</id>
<version>$version$</version>
<authors>urielha</authors>
<owners>urielha</owners>
<icon>icon.png</icon>
<license type="expression">MIT</license>
<title>log4stash - Elasticsearch log4net appender</title>
<projectUrl>https://github.com/urielha/log4stash</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
log4stash is a log4net appender for easy logging of exceptions and messages to Elasticsearch indices.
You can configure few filters to analyze log events before they got sended to Elasticsearch similar to the filters on logstash.
</description>
<releaseNotes>
* Added option for API Key authentication with Elasticsearch
* Targets .net standard natively
Thanks a lot to @erangil2 for his tremendous contributions :)
And thanks to: @zhengziying, @triarc, @prime8, @henkish, @mfpalladino, @ignasv, @wpgh, @Thecentury, @pnumainville, @Aleksandre and @dannyyy for their contributions.
</releaseNotes>
<copyright>Copyright 2020</copyright>
<tags>log logging exception elasticsearch log4net appender logstash filters</tags>
<dependencies>
<group targetFramework=".NETFramework4.5.2">
<dependency id="log4net" version="2.0.8.0" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="log4net" version="2.0.8.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="lib\net452\log4stash*.dll" target="lib\net452"/>
<file src="lib\net452\log4stash*.pdb" target="lib\net452"/>
<file src="lib\netstandard2.0\log4stash*.dll" target="lib\netstandard2.0"/>
<file src="lib\netstandard2.0\log4stash*.pdb" target="lib\netstandard2.0"/>
<file src="readme.txt" target="" />
<file src="icon.png" target="" />
</files>
</package>