This repository was archived by the owner on Jun 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract formatters to separate project
- Loading branch information
Vadim Hatsura
committed
Jan 22, 2019
1 parent
e03cb1e
commit 290590c
Showing
13 changed files
with
114 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -189,3 +189,7 @@ FakesAssemblies/ | |
|
||
project.lock.json | ||
.vs | ||
|
||
# JetBrains Rider | ||
.idea/ | ||
*.sln.iml |
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
23 changes: 23 additions & 0 deletions
23
src/Serilog.Formatting.Elasticsearch/Serilog.Formatting.ElasticSearch.Symbols.nuspec
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>Serilog.Formatting.Elasticsearch</id> | ||
<version>$version$</version> | ||
<authors>Michiel van Oudheusden, Martijn Laarman, Mogens Heller Grabe</authors> | ||
<description>The perfect way for .NET apps formatting structured log events to Elasticsearch JSON.</description> | ||
<language>en-US</language> | ||
<projectUrl>http://serilog.net</projectUrl> | ||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> | ||
<iconUrl>http://serilog.net/images/serilog-sink-nuget.png</iconUrl> | ||
<tags>serilog logging elasticsearch</tags> | ||
<dependencies> | ||
<dependency id="Serilog" version="2.6.0" /> | ||
<dependency id="Elasticsearch.Net" version="6.0.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="bin\Release\Serilog.Sinks.Elasticsearch.dll" target="lib\net45" /> | ||
<file src="bin\Release\Serilog.Sinks.Elasticsearch.pdb" target="lib\net45" /> | ||
<file src="**\*.cs" target="src" /> | ||
</files> | ||
</package> |
21 changes: 21 additions & 0 deletions
21
src/Serilog.Formatting.Elasticsearch/Serilog.Formatting.ElasticSearch.nuspec
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>Serilog.Formatting.Elasticsearch</id> | ||
<version>$version$</version> | ||
<authors>Michiel van Oudheusden, Martijn Laarman, Mogens Heller Grabe, Konstantin Erman</authors> | ||
<description>The perfect way for .NET apps formatting structured log events to Elasticsearch JSON.</description> | ||
<language>en-US</language> | ||
<projectUrl>http://serilog.net</projectUrl> | ||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl> | ||
<iconUrl>http://serilog.net/images/serilog-sink-nuget.png</iconUrl> | ||
<repository type="git" url="https://github.com/serilog/serilog-sinks-elasticsearch" /> | ||
<tags>serilog logging elasticsearch</tags> | ||
<dependencies> | ||
<dependency id="Serilog" version="2.6.0" /> | ||
<dependency id="Elasticsearch.Net" version="6.0.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
</files> | ||
</package> |
45 changes: 45 additions & 0 deletions
45
src/Serilog.Formatting.Elasticsearch/Serilog.Formatting.Elasticsearch.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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<VersionPrefix>6.0.0</VersionPrefix> | ||
<VersionSuffix>alpha</VersionSuffix> | ||
<Authors>Michiel van Oudheusden, Martijn Laarman, Mogens Heller Grabe, Serilog Contributors</Authors> | ||
<TargetFrameworks>net45;netstandard1.3</TargetFrameworks> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<AssemblyName>Serilog.Formatting.Elasticsearch</AssemblyName> | ||
<AssemblyOriginatorKeyFile>../../assets/Serilog.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>true</SignAssembly> | ||
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign> | ||
<PackageId>Serilog.Formatting.Elasticsearch</PackageId> | ||
<PackageTags>serilog;elasticsearch;logging;event;formatting</PackageTags> | ||
<PackageReleaseNotes>https://github.com/serilog/serilog-sinks-elasticsearch/blob/master/CHANGES.md</PackageReleaseNotes> | ||
<PackageIconUrl>http://serilog.net/images/serilog-sink-nuget.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/serilog/serilog-sinks-elasticsearch</PackageProjectUrl> | ||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> | ||
<RepositoryUrl>https://github.com/serilog/serilog-sinks-elasticsearch</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.3' ">1.6.0</NetStandardImplicitPackageVersion> | ||
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute> | ||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> | ||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> | ||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> | ||
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute> | ||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> | ||
<RootNamespace>Serilog.Formatting.ElasticSearch</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Elasticsearch.Net" Version="6.0.0" /> | ||
<PackageReference Include="Serilog" Version="2.6.0" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' "> | ||
<DefineConstants>$(DefineConstants);DOTNETCORE;NO_SERIALIZATION</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<DotNetCliToolReference Include="dotnet-version" Version="1.1.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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
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