Skip to content

Commit 9ac878e

Browse files
Updated to ReflectInsight v5.7.1.1.
1 parent e2f8c6f commit 9ac878e

7 files changed

+16
-13
lines changed

Build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
param(
22
[String] $majorMinor = "5.7", # 5.7
3-
[String] $patch = "0", # $env:APPVEYOR_BUILD_VERSION
3+
[String] $patch = "1", # $env:APPVEYOR_BUILD_VERSION
44
[String] $customLogger = "", # C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll
55
[Switch] $notouch,
66
[String] $project = "ReflectSoftware.Insight.Extensions.SemanticLogging"

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Change Log ##
22

3+
#### Version 5.7.1 ####
4+
* Updated to ReflectInsight v5.7.1.1
5+
* Updated reference to Newtonsoft.Json v10.0.2
6+
37
#### Version 5.7.0 ####
48
* Updated to ReflectInsight v5.7.0.0
59

assets/VersionInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
[assembly: AssemblyTrademark("")]
88
[assembly: AssemblyCulture("")]
99
[assembly: AssemblyConfiguration("")]
10-
[assembly: AssemblyVersion("5.7.0.1705")]
11-
[assembly: AssemblyFileVersion("5.7.0.1705")]
12-
[assembly: AssemblyInformationalVersion("5.7.0")]
10+
[assembly: AssemblyVersion("5.7.1.1706")]
11+
[assembly: AssemblyFileVersion("5.7.1.1706")]
12+
[assembly: AssemblyInformationalVersion("5.7.1")]

src/ReflectSoftware.Insight.Extensions.SemanticLogging 4.5.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,11 @@
5353
<Reference Include="Microsoft.Practices.EnterpriseLibrary.SemanticLogging">
5454
<HintPath>..\packages\EnterpriseLibrary.SemanticLogging.2.0.1406.1\lib\net45\Microsoft.Practices.EnterpriseLibrary.SemanticLogging.dll</HintPath>
5555
</Reference>
56-
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
57-
<HintPath>..\packages\Newtonsoft.Json.8.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
58-
<Private>True</Private>
56+
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
57+
<HintPath>..\packages\Newtonsoft.Json.10.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
5958
</Reference>
60-
<Reference Include="ReflectSoftware.Insight, Version=5.7.0.1705, Culture=neutral, PublicKeyToken=c78ddbdaf1f32b08, processorArchitecture=MSIL">
61-
<HintPath>..\packages\ReflectSoftware.Insight.5.7.0.0\lib\net45\ReflectSoftware.Insight.dll</HintPath>
59+
<Reference Include="ReflectSoftware.Insight, Version=5.7.1.1706, Culture=neutral, PublicKeyToken=c78ddbdaf1f32b08, processorArchitecture=MSIL">
60+
<HintPath>..\packages\ReflectSoftware.Insight.5.7.1.1\lib\net45\ReflectSoftware.Insight.dll</HintPath>
6261
</Reference>
6362
<Reference Include="System" />
6463
<Reference Include="System.Data" />

src/ReflectSoftware.Insight.Extensions.SemanticLogging.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can view your EntLib messages in realtime, in a rich viewer that allows you
2323
<tags>reflectinsight logging log logfiles events ETW semantic entlib6 EventSource exception handling structured tracing trace debug diagnostic Enterprise Library LOB lab</tags>
2424
<dependencies>
2525
<dependency id="EnterpriseLibrary.SemanticLogging" version="2.0.1406.1" />
26-
<dependency id="ReflectSoftware.Insight" version="5.7.0.0" />
26+
<dependency id="ReflectSoftware.Insight" version="5.7.1.1" />
2727
</dependencies>
2828
<references>
2929
<reference file="ReflectSoftware.Insight.Extensions.SemanticLogging.dll" />

src/app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
55
<dependentAssembly>
66
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
7-
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
7+
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
88
</dependentAssembly>
99
</assemblyBinding>
1010
</runtime>

src/packages.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="EnterpriseLibrary.SemanticLogging" version="2.0.1406.1" targetFramework="net45" />
4-
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net45" />
5-
<package id="ReflectSoftware.Insight" version="5.7.0.0" targetFramework="net451" />
4+
<package id="Newtonsoft.Json" version="10.0.2" targetFramework="net451" />
5+
<package id="ReflectSoftware.Insight" version="5.7.1.1" targetFramework="net451" />
66
</packages>

0 commit comments

Comments
 (0)