Skip to content

Commit

Permalink
Release v2
Browse files Browse the repository at this point in the history
  • Loading branch information
c0shea committed Nov 25, 2018
1 parent 5d98561 commit 87b568d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Seq.Client.EventLog

[![Build status](https://coshea.visualstudio.com/Seq.Client.EventLog/_apis/build/status/Seq.Client.EventLog-.NET%20Desktop-CI)](https://coshea.visualstudio.com/Seq.Client.EventLog/_build/latest?definitionId=-1)

[Seq](https://getseq.net/) is a fantastic tool for handling structured logs in .NET apps. There's a lot of value in having a centralized log repository that can ingest events from many sources.

The trouble, however, is that applications beyond your control write useful information to the Windows Event Logs. That's where the EventLog service comes in. Define the logs and filters you care about and the service takes care of ingesting them into Seq.
Expand Down
12 changes: 10 additions & 2 deletions src/Seq.Client.EventLog.sln
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2050
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Seq.Client.EventLog", "Seq.Client.EventLog\Seq.Client.EventLog.csproj", "{B14232BD-B051-4255-9DEC-81EA174660E8}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{32DED70B-174F-4C3F-BC48-B776AB83C1BE}"
ProjectSection(SolutionItems) = preProject
..\README.md = ..\README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -19,4 +24,7 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D3E72DDE-EBE2-42EB-BA3E-3E7F80DDD4ED}
EndGlobalSection
EndGlobal
7 changes: 3 additions & 4 deletions src/Seq.Client.EventLog/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
Expand All @@ -10,7 +9,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Seq.Client.EventLog")]
[assembly: AssemblyCopyright("Copyright © 2017 Connor O'Shea")]
[assembly: AssemblyCopyright("Copyright © 2018 Connor O'Shea")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]

0 comments on commit 87b568d

Please sign in to comment.