Skip to content

Commit 54f2a71

Browse files
Upgraded to use ReflectInsight 5.6.0.
Updated README and CHANGES for supporting documentation for changes.
1 parent a846ceb commit 54f2a71

9 files changed

+46
-25
lines changed

Build.ps1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
param(
2-
[String] $majorMinor = "5.5", # 5.5
3-
[String] $patch = "1", # $env:APPVEYOR_BUILD_VERSION
2+
[String] $majorMinor = "5.6", # 5.6
3+
[String] $patch = "0", # $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"
@@ -48,7 +48,7 @@ function Invoke-NuGetPack($version)
4848
#ls src/**/*.csproj |
4949
# Where-Object { -not ($_.Name -like "*net40*") } |
5050
# ForEach-Object { Invoke-NuGetPackProj $_ }
51-
51+
5252
ls src/**/*.csproj |
5353
Where-Object { -not ($_.Name -like "*net40*") } |
5454
ForEach-Object { Invoke-NuGetPackProj $_ }
@@ -60,8 +60,8 @@ function Invoke-NuGetPack($version)
6060

6161
function Invoke-Build($project, $majorMinor, $patch, $customLogger, $notouch)
6262
{
63-
$solution = "$project 4.5.sln"
64-
63+
$solution = "$project 4.5.sln"
64+
6565
$package="$majorMinor.$patch"
6666

6767
Write-Output "$project $package"
@@ -74,7 +74,7 @@ function Invoke-Build($project, $majorMinor, $patch, $customLogger, $notouch)
7474
Set-AssemblyVersions $package $assembly
7575
}
7676

77-
Install-NuGetPackages $solution
77+
Install-NuGetPackages $solution
7878
Invoke-MSBuild $solution $customLogger
7979

8080
Invoke-NuGetPack $package

CHANGES.md

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

3+
#### Version 5.6.0 ####
4+
* Updated extension to use ReflectInsight 5.6.0 version
5+
36
#### Version 5.5.1 ####
47
* Bug fixes for packages improperly being downloaded. RabbitMQ is now a nuget dependency.
58

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
# ReflectInsight-Extensions-SemanticLogging
22

33
[![Build status](https://ci.appveyor.com/api/projects/status/github/reflectsoftware/reflectinsight-extensions-semanticlogging?svg=true)](https://ci.appveyor.com/project/reflectsoftware/reflectinsight-extensions-semanticlogging)
4+
[![License](https://img.shields.io/:license-MS--PL-blue.svg)](https://github.com/reflectsoftware/reflectinsight-extensions-semanticloging/license.md)
45
[![Release](https://img.shields.io/github/release/reflectsoftware/reflectinsight-extensions-semanticlogging.svg)](https://github.com/reflectsoftware/reflectinsight-extensions-semanticlogging/releases/latest)
56
[![NuGet Version](http://img.shields.io/nuget/v/reflectsoftware.insight.extensions.semanticlogging.svg?style=flat)](http://www.nuget.org/packages/ReflectSoftware.Insight.Extensions.semanticlogging/)
67
[![NuGet](https://img.shields.io/nuget/dt/reflectsoftware.insight.extensions.semanticlogging.svg)](http://www.nuget.org/packages/ReflectSoftware.Insight.Extensions.SemanticLogging/)
78
[![Stars](https://img.shields.io/github/stars/reflectsoftware/reflectinsight-extensions-semanticlogging.svg)](https://github.com/reflectsoftware/reflectinsight-extensions-semanticlogging/stargazers)
89

10+
**Package** - [ReflectSoftware.Insight.Extensions.semanticlogging](http://www.nuget.org/packages/ReflectSoftware.Insight.Extensions.semanticlogging/) | **Platforms** - .NET 4.5
11+
912
## Overview ##
1013

1114
The ReflectInsight Semantic Logging Extension is a custom sink specifically developed for the Semantic Logging Framework. The Semantic Logging Framework was developed to tap into the ETW infrastructure and in doing so developers can redirect ETW messages to their preferred destinations (i.e. Viewer, etc.).

ReflectSoftware.Insight.Extensions.SemanticLogging 4.5.sln

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2013
4-
VisualStudioVersion = 12.0.30501.0
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25123.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Solution Items", "_Solution Items", "{5083DB16-D99D-48E4-8B72-90F9AFD54F7C}"
77
ProjectSection(SolutionItems) = preProject
@@ -13,6 +13,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_Solution Items", "_Solutio
1313
EndProject
1414
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReflectSoftware.Insight.Extensions.SemanticLogging 4.5", "src\ReflectSoftware.Insight.Extensions.SemanticLogging 4.5.csproj", "{3B1F1A11-2CDA-46B8-9233-9C7D12D6BCFA}"
1515
EndProject
16+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{01632575-F573-4A2D-AD76-FC49B3A4895C}"
17+
ProjectSection(SolutionItems) = preProject
18+
src\ReflectSoftware.Insight.Extensions.SemanticLogging.nuspec = src\ReflectSoftware.Insight.Extensions.SemanticLogging.nuspec
19+
EndProjectSection
20+
EndProject
1621
Global
1722
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1823
Debug|Any CPU = Debug|Any CPU
@@ -27,4 +32,7 @@ Global
2732
GlobalSection(SolutionProperties) = preSolution
2833
HideSolutionNode = FALSE
2934
EndGlobalSection
35+
GlobalSection(NestedProjects) = preSolution
36+
{01632575-F573-4A2D-AD76-FC49B3A4895C} = {5083DB16-D99D-48E4-8B72-90F9AFD54F7C}
37+
EndGlobalSection
3038
EndGlobal

assets/VersionInfo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
[assembly: AssemblyCompany("ReflectSoftware Inc.")]
44
[assembly: AssemblyProduct("ReflectSoftware.Insight.Extensions Library")]
5-
[assembly: AssemblyCopyright(2015 ReflectSoftware Inc. All rights reserved.")]
5+
[assembly: AssemblyCopyright(2016 ReflectSoftware Inc. All rights reserved.")]
66
[assembly: AssemblyDescription("Provides extensions to the ReflectInsight Logging Framework")]
77
[assembly: AssemblyTrademark("")]
88
[assembly: AssemblyCulture("")]
99
[assembly: AssemblyConfiguration("")]
10-
[assembly: AssemblyVersion("5.5.1.1510")]
11-
[assembly: AssemblyFileVersion("5.5.1.1510")]
12-
[assembly: AssemblyInformationalVersion("5.5.1")]
10+
[assembly: AssemblyVersion("5.6.0.1604")]
11+
[assembly: AssemblyFileVersion("5.6.0.1604")]
12+
[assembly: AssemblyInformationalVersion("5.6.0")]

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

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,12 @@
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=7.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
57-
<HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
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>
5858
<Private>True</Private>
5959
</Reference>
60-
<Reference Include="RabbitMQ.Client, Version=3.5.4.0, Culture=neutral, PublicKeyToken=89e7d7c5feba84ce, processorArchitecture=MSIL">
61-
<HintPath>..\packages\RabbitMQ.Client.3.5.4\lib\net40\RabbitMQ.Client.dll</HintPath>
62-
<Private>True</Private>
63-
</Reference>
64-
<Reference Include="ReflectSoftware.Insight">
65-
<HintPath>..\packages\ReflectSoftware.Insight.5.5.1\lib\net45\ReflectSoftware.Insight.dll</HintPath>
60+
<Reference Include="ReflectSoftware.Insight, Version=5.6.0.1604, Culture=neutral, PublicKeyToken=c78ddbdaf1f32b08, processorArchitecture=MSIL">
61+
<HintPath>..\packages\ReflectSoftware.Insight.5.6.0\lib\net45\ReflectSoftware.Insight.dll</HintPath>
6662
<Private>True</Private>
6763
</Reference>
6864
<Reference Include="System" />
@@ -77,6 +73,7 @@
7773
<Compile Include="RIEventSink.cs" />
7874
</ItemGroup>
7975
<ItemGroup>
76+
<None Include="app.config" />
8077
<None Include="packages.config" />
8178
<None Include="ReflectSoftware.Public.snk" />
8279
<None Include="Sample.ReflectInsight.config" />

src/ReflectSoftware.Insight.Extensions.SemanticLogging.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ http://www.ReflectSoftware.com/Public/Download.aspx
1919
You can view your EntLib messages in realtime, in a rich viewer that allows you to filter out and search for what really matters to you.</description>
2020
<summary>ReflectInsight EnterpriseLibrary Semantic Logging extention (Sink) makes it easy to integrate ReflectInsight into your existing application logging infrastructure and leverage the power of the Reflect</summary>
2121
<releaseNotes></releaseNotes>
22-
<copyright2015 ReflectSoftware Inc.</copyright>
22+
<copyright2016 ReflectSoftware Inc.</copyright>
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.5.1" />
26+
<dependency id="ReflectSoftware.Insight" version="5.6.0" />
2727
</dependencies>
2828
<references>
2929
<reference file="ReflectSoftware.Insight.Extensions.SemanticLogging.dll" />

src/app.config

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<runtime>
4+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly>
6+
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
7+
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
8+
</dependentAssembly>
9+
</assemblyBinding>
10+
</runtime>
11+
</configuration>

src/packages.config

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +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="7.0.1" targetFramework="net45" />
5-
<package id="RabbitMQ.Client" version="3.5.4" targetFramework="net40" />
6-
<package id="ReflectSoftware.Insight" version="5.5.1" targetFramework="net45" />
4+
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net45" />
5+
<package id="ReflectSoftware.Insight" version="5.6.0" targetFramework="net45" />
76
</packages>

0 commit comments

Comments
 (0)