Skip to content

Commit 977dabb

Browse files
authored
Merge pull request #70 from serilog/dev
Build Issues with 2.4.0
2 parents 7ebe67e + 01c8442 commit 977dabb

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

Diff for: Build.ps1

+5-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ foreach ($src in ls src/*) {
2525
echo "build: Packaging project in $src"
2626

2727
& dotnet build -c Release --version-suffix=$buildSuffix
28-
& dotnet pack -c Release --include-symbols -o ..\..\artifacts --version-suffix=$suffix --no-build
28+
if ($suffix) {
29+
& dotnet pack -c Release --include-symbols -o ..\..\artifacts --version-suffix=$suffix --no-build
30+
} else {
31+
& dotnet pack -c Release --include-symbols -o ..\..\artifacts --no-build
32+
}
2933
if($LASTEXITCODE -ne 0) { exit 1 }
3034

3135
Pop-Location

Diff for: CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## 2.4.0
2-
- [#62](https://github.com/serilog/serilog-sinks-splunk/issues/62) Default fields added by serilog to splunk
2+
- [#62](https://github.com/serilog/serilog-sinks-splunk/issues/62) Default fields added by Serilog to splunk
33
- [#63](https://github.com/serilog/serilog-sinks-splunk/issues/63) Possible thread leak when ILogger instances are disposed
44

55
## 2.3.0

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ More information is available on the [wiki](https://github.com/serilog/serilog-s
3232

3333
Branch | AppVeyor | Travis
3434
------------- | ------------- |-------------
35-
master | [![Build status](https://ci.appveyor.com/api/projects/status/yt40wg34t8oj61al/branch/master?svg=true)](https://ci.appveyor.com/project/serilog/serilog-sinks-splunk/branch/dev) | ![](https://travis-ci.org/serilog/serilog-sinks-splunk.svg?branch=master)
36-
dev | [![Build status](https://ci.appveyor.com/api/projects/status/yt40wg34t8oj61al/branch/dev?svg=true)](https://ci.appveyor.com/project/serilog/serilog-sinks-splunk/branch/master) | ![](https://travis-ci.org/serilog/serilog-sinks-splunk.svg?branch=dev)
35+
master | [![Build status](https://ci.appveyor.com/api/projects/status/yt40wg34t8oj61al/branch/master?svg=true)](https://ci.appveyor.com/project/serilog/serilog-sinks-splunk/branch/master) | ![](https://travis-ci.org/serilog/serilog-sinks-splunk.svg?branch=master)
36+
dev | [![Build status](https://ci.appveyor.com/api/projects/status/yt40wg34t8oj61al/branch/dev?svg=true)](https://ci.appveyor.com/project/serilog/serilog-sinks-splunk/branch/dev) | ![](https://travis-ci.org/serilog/serilog-sinks-splunk.svg?branch=dev)
3737

38-
_Serilog is copyright © 2013-2016 Serilog Contributors - Provided under the [Apache License, Version 2.0](http://apache.org/licenses/LICENSE-2.0.html). Needle and thread logo a derivative of work by [Kenneth Appiah](http://www.kensets.com/)._
38+
_Serilog is copyright © 2013-2016 Serilog Contributors - Provided under the [Apache License, Version 2.0](http://apache.org/licenses/LICENSE-2.0.html). Needle and thread logo a derivative of work by [Kenneth Appiah](http://www.kensets.com/)._

Diff for: src/Serilog.Sinks.Splunk/Serilog.Sinks.Splunk.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>The Splunk Sink for Serilog</Description>
5-
<VersionPrefix>2.3.1</VersionPrefix>
5+
<VersionPrefix>2.4.0</VersionPrefix>
66
<Authors>Matthew Erbs, Serilog Contributors</Authors>
77
<TargetFrameworks>net45;netstandard1.1;netstandard1.3</TargetFrameworks>
88
<GenerateDocumentationFile>true</GenerateDocumentationFile>

0 commit comments

Comments
 (0)