Skip to content

Commit 86a15d8

Browse files
author
Alan Barber
committed
Release 2.2.0 built and published
1 parent cfe6302 commit 86a15d8

File tree

14 files changed

+21
-53
lines changed

14 files changed

+21
-53
lines changed

Readme.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ Then configure the SplunkHttpEventCollector with `ServerUrl` and `Token`:
2929
includeEventProperties="true"
3030
includeMdlc="false"
3131
includePositionalParameters="false"
32-
IgnoreSslErrors="false"
33-
ServicePointManagerProtocols="Ssl3,Tls,Tls11,Tls12">
32+
IgnoreSslErrors="false">
3433
<contextproperty name="host" layout="${machinename}" />
3534
<contextproperty name="threadid" layout="${threadid}" />
3635
<contextproperty name="logger" layout="${logger}" />
28.2 KB
Binary file not shown.
34.8 KB
Binary file not shown.

src/AspNetCoreWebApp/AspNetCoreWebApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<ItemGroup>
88
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.8" />
9-
<PackageReference Include="NLog" Version="4.5.8" />
9+
<PackageReference Include="NLog" Version="4.5.9" />
1010
<PackageReference Include="NLog.Web.AspNetCore" Version="4.6.0" />
1111
</ItemGroup>
1212

src/AspNetCoreWebApp/nlog.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
Channel="bff36dda-e0fc-4cdd-b2dc-50418ee98ead"
2626
RetriesOnError="0"
2727
IgnoreSslErrors="true"
28-
ServicePointManagerProtocols="Ssl3,Tls,Tls11,Tls12"
2928
layout="${message} ${exception:format=tostring}"
3029
includeEventProperties="true"
3130
/>

src/ConsoleTestApp/ConsoleTestApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
3939
</Reference>
4040
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
41-
<HintPath>..\packages\NLog.4.5.8\lib\net45\NLog.dll</HintPath>
41+
<HintPath>..\packages\NLog.4.5.9\lib\net45\NLog.dll</HintPath>
4242
</Reference>
4343
<Reference Include="System" />
4444
<Reference Include="System.Configuration" />

src/ConsoleTestApp/NLog.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
Channel="bff36dda-e0fc-4cdd-b2dc-50418ee98ead"
2525
RetriesOnError="0"
2626
IgnoreSslErrors="true"
27-
ServicePointManagerProtocols="Ssl3,Tls,Tls11,Tls12"
2827
layout="${message} ${exception:format=tostring}"
2928
includeEventProperties="true"
3029
/>

src/ConsoleTestApp/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net462" />
4-
<package id="NLog" version="4.5.8" targetFramework="net462" />
4+
<package id="NLog" version="4.5.9" targetFramework="net462" />
55
</packages>

src/NLog.Targets.Splunk.Tests/NLog.Targets.Splunk.Tests.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
4646
</Reference>
4747
<Reference Include="NLog, Version=4.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
48-
<HintPath>..\packages\NLog.4.5.8\lib\net45\NLog.dll</HintPath>
48+
<HintPath>..\packages\NLog.4.5.9\lib\net45\NLog.dll</HintPath>
4949
</Reference>
5050
<Reference Include="System" />
5151
<Reference Include="System.Configuration" />
@@ -56,7 +56,8 @@
5656
<Reference Include="System.Transactions" />
5757
<Reference Include="System.Xml" />
5858
<Reference Include="xunit.abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
59-
<HintPath>..\packages\xunit.abstractions.2.0.2\lib\net35\xunit.abstractions.dll</HintPath>
59+
<HintPath>..\packages\xunit.abstractions.2.0.3\lib\net35\xunit.abstractions.dll</HintPath>
60+
<Private>True</Private>
6061
</Reference>
6162
<Reference Include="xunit.assert, Version=2.4.0.4049, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
6263
<HintPath>..\packages\xunit.assert.2.4.0\lib\netstandard2.0\xunit.assert.dll</HintPath>

src/NLog.Targets.Splunk.Tests/SplunkHttpEventCollectorTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ public SplunkHttpEventCollectorTests()
2424
splunkHttpEventCollector.ServerUrl = new Uri("http://localhost:8088");
2525
splunkHttpEventCollector.Token = "bff36dda-e0fc-4cdd-b2dc-50418ee98ead";
2626
splunkHttpEventCollector.Channel = "bff36dda-e0fc-4cdd-b2dc-50418ee98ead";
27-
splunkHttpEventCollector.ServicePointManagerProtocols = "Ssl3,Tls,Tls11,Tls12";
2827
splunkHttpEventCollector.RetriesOnError = 0;
2928

3029
// Step 4. Define rules

0 commit comments

Comments
 (0)