Skip to content

Commit 31e50d8

Browse files
committed
Merge branch 'dev'
2 parents c046adc + f1c4ff5 commit 31e50d8

File tree

10 files changed

+1013
-655
lines changed

10 files changed

+1013
-655
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Serilog.Framework.Logging [![Build status](https://ci.appveyor.com/api/projects/status/865nohxfiq1rnby0/branch/master?svg=true)](https://ci.appveyor.com/project/serilog/serilog-framework-logging/branch/master)
1+
# Serilog.Framework.Logging
2+
[![Build status](https://ci.appveyor.com/api/projects/status/865nohxfiq1rnby0/branch/master?svg=true)](https://ci.appveyor.com/project/serilog/serilog-framework-logging/branch/master) [![NuGet Version](http://img.shields.io/nuget/v/Serilog.Framework.Logging.svg?style=flat)](https://www.nuget.org/packages/Serilog.Framework.Logging/)
3+
24

35
A serilog provider for [Microsoft.Framework.Logging](https://www.nuget.org/packages/Microsoft.Framework.Logging), the logging subsystem used by ASP.NET 5.
46

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"projects": [ "src", "test" ],
33
"sdk": {
4-
"version": "1.0.0-beta5"
4+
"version": "1.0.0-beta6"
55
}
66
}

samples/Sample/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public Program()
1919
.Enrich.WithMachineName()
2020
.Enrich.WithProcessId()
2121
.Enrich.WithThreadId()
22-
.WriteTo.LiterateConsole()
22+
.WriteTo.ColoredConsole()
2323
#endif
2424
.CreateLogger();
2525

samples/Sample/project.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,16 @@
77
"licenseUrl": "",
88

99
"dependencies": {
10-
"Microsoft.Framework.Logging": "1.0.0-beta5",
11-
"Serilog.Framework.Logging": "1.0.0-*",
12-
"Serilog.Sinks.Literate": "1.0.6"
10+
"Microsoft.Framework.Logging": "1.0.0-beta6",
11+
"Serilog.Framework.Logging": "1.0.0-*"
1312
},
1413

1514
"commands": {
1615
"Sample": "Sample"
1716
},
1817

1918
"frameworks": {
20-
"dnx451": {
21-
"Serilog.Framework.Logging": "1.0.0-*"
22-
},
19+
"dnx451": {},
2320
"dnxcore50": {
2421
"dependencies": {
2522
"System.Console": "4.0.0-beta-23019",

0 commit comments

Comments
 (0)