diff --git a/Build.ps1 b/Build.ps1 index 9428942..0ca7d80 100644 --- a/Build.ps1 +++ b/Build.ps1 @@ -26,7 +26,7 @@ Write-Output "build: Revision: $revision" Write-Output "build: VersionPrefix: $prefix" Write-Output "build: VersionSuffix: $suffix" -foreach ($src in Get-ChildItem src/*) { +foreach ($src in Get-ChildItem src/* -Directory) { Push-Location $src Write-Output "build: Packaging project in $src" diff --git a/sample/Sample/Program.cs b/sample/Sample/Program.cs index 2038e5b..81cf284 100644 --- a/sample/Sample/Program.cs +++ b/sample/Sample/Program.cs @@ -58,8 +58,6 @@ public static async Task Main(string[] args) logger.Information("Creating logger {MethodName}.", nameof(ReproduceGitHubIssue183)); ReproduceGitHubIssue183(); - return; - logger.Information("Creating logger {MethodName}.", nameof(OverridingSubsecondPrecisionMicroseconds)); OverridingSubsecondPrecisionMicroseconds(eventsToCreate); diff --git a/serilog-sinks-splunk.sln b/serilog-sinks-splunk.sln index 360a961..b1c91dd 100644 --- a/serilog-sinks-splunk.sln +++ b/serilog-sinks-splunk.sln @@ -10,9 +10,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "assets", "assets", "{B9B133 .editorconfig = .editorconfig Build.ps1 = Build.ps1 CHANGES.md = CHANGES.md + src\common.props = src\common.props + global.json = global.json README.md = README.md assets\Serilog.snk = assets\Serilog.snk - global.json = global.json Setup.ps1 = Setup.ps1 EndProjectSection EndProject diff --git a/src/Serilog.Sinks.Splunk/Serilog.Sinks.Splunk.csproj b/src/Serilog.Sinks.Splunk/Serilog.Sinks.Splunk.csproj index c8a6dfb..b6905c0 100644 --- a/src/Serilog.Sinks.Splunk/Serilog.Sinks.Splunk.csproj +++ b/src/Serilog.Sinks.Splunk/Serilog.Sinks.Splunk.csproj @@ -1,34 +1,22 @@ - + + + The Splunk Sink for Serilog - 4.0.1 - Matthew Erbs, Serilog Contributors netstandard2.1;netstandard2.0;net6.0;net8.0 true Serilog.Sinks.Splunk Serilog.Sinks.Splunk serilog;splunk;logging;event;collector;hec - http://serilog.net/images/serilog-sink-nuget.png - https://github.com/serilog/serilog-sinks-splunk - http://www.apache.org/licenses/LICENSE-2.0 - https://github.com/serilog/serilog-sinks-splunk - git ../../assets/Serilog.snk true true - true Serilog - latest true - README.md - Apache-2.0 + true - - - - diff --git a/src/Serilog.Sinks.TCP/Serilog.Sinks.Splunk.TCP.csproj b/src/Serilog.Sinks.TCP/Serilog.Sinks.Splunk.TCP.csproj index fb9b609..7b35ce3 100644 --- a/src/Serilog.Sinks.TCP/Serilog.Sinks.Splunk.TCP.csproj +++ b/src/Serilog.Sinks.TCP/Serilog.Sinks.Splunk.TCP.csproj @@ -1,31 +1,19 @@  + + The Splunk TCP Sink for Serilog - 4.0.1 - Matthew Erbs, Serilog Contributors netstandard2.1;netstandard2.0 - true Serilog.Sinks.Splunk.TCP Serilog.Sinks.Splunk.TCP serilog;splunk;logging;tcp - http://serilog.net/images/serilog-sink-nuget.png - https://github.com/serilog/serilog-sinks-splunk - http://www.apache.org/licenses/LICENSE-2.0 - https://github.com/serilog/serilog-sinks-splunk - git ../../assets/Serilog.snk true true true - README.md - Apache-2.0 - - - - diff --git a/src/Serilog.Sinks.UDP/Serilog.Sinks.Splunk.UDP.csproj b/src/Serilog.Sinks.UDP/Serilog.Sinks.Splunk.UDP.csproj index 5640310..9e4dc60 100644 --- a/src/Serilog.Sinks.UDP/Serilog.Sinks.Splunk.UDP.csproj +++ b/src/Serilog.Sinks.UDP/Serilog.Sinks.Splunk.UDP.csproj @@ -1,31 +1,20 @@  + + The Splunk UDP Sink for Serilog - 4.0.1 - Matthew Erbs, Serilog Contributors netstandard2.1;netstandard2.0 true Serilog.Sinks.Splunk.UDP Serilog.Sinks.Splunk.UDP serilog;splunk;logging;udp - http://serilog.net/images/serilog-sink-nuget.png - https://github.com/serilog/serilog-sinks-splunk - http://www.apache.org/licenses/LICENSE-2.0 - https://github.com/serilog/serilog-sinks-splunk - git - ../../assets/Serilog.snk true + ../../assets/Serilog.snk true true - README.md - Apache-2.0 - - - - diff --git a/src/common.props b/src/common.props new file mode 100644 index 0000000..2f8ef9a --- /dev/null +++ b/src/common.props @@ -0,0 +1,20 @@ + + + + 4.0.2 + debug + Matthew Erbs, Serilog Contributors + true + http://serilog.net/images/serilog-sink-nuget.png + https://github.com/serilog/serilog-sinks-splunk + http://www.apache.org/licenses/LICENSE-2.0 + https://github.com/serilog/serilog-sinks-splunk + git + latest + Apache-2.0 + README.md + + + + + \ No newline at end of file