Skip to content

Commit c6b2cc6

Browse files
committed
Merge branch 'dev'
# Conflicts: # global.json # samples/Sample/Program.cs # samples/Sample/project.lock.json # src/Serilog.Framework.Logging/SerilogLogger.cs # src/Serilog.Framework.Logging/project.lock.json # test/Serilog.Framework.Logging.Tests/project.lock.json
2 parents f35319f + db46a1b commit c6b2cc6

File tree

12 files changed

+3135
-1529
lines changed

12 files changed

+3135
-1529
lines changed

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-beta8"
4+
"version": "1.0.0-rc1-final"
55
}
66
}

samples/Sample/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
2-
using Microsoft.Framework.Logging;
3-
using ILogger = Microsoft.Framework.Logging.ILogger;
2+
using Microsoft.Extensions.Logging;
3+
using ILogger = Microsoft.Extensions.Logging.ILogger;
44
using Serilog;
55

66
namespace Sample

samples/Sample/project.json

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

99
"dependencies": {
10-
"Microsoft.Framework.Logging": "1.0.0-beta8",
1110
"Serilog.Framework.Logging": "1.0.0-*"
1211
},
1312

@@ -19,11 +18,11 @@
1918
"dnx451": {},
2019
"dnxcore50": {
2120
"dependencies": {
22-
"System.Console": "4.0.0-beta-23019",
23-
"System.Collections": "4.0.10-beta-23019",
24-
"System.Linq": "4.0.0-beta-23019",
25-
"System.Threading": "4.0.10-beta-23019",
26-
"Microsoft.CSharp": "4.0.0-beta-23019"
21+
"System.Console": "4.0.0-beta-23516",
22+
"System.Collections": "4.0.0",
23+
"System.Linq": "4.0.0",
24+
"System.Threading": "4.0.0",
25+
"Microsoft.CSharp": "4.0.0"
2726
}
2827
}
2928
}

0 commit comments

Comments
 (0)