Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Commit 47b857a

Browse files
committed
Fix license headers, change to Common NotNull
1 parent 090bf4a commit 47b857a

File tree

11 files changed

+30
-24
lines changed

11 files changed

+30
-24
lines changed

src/Microsoft.Framework.Logging.Console/Internal/IConsole.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
using System;
25

36
namespace Microsoft.Framework.Logging.Console.Internal
47
{

src/Microsoft.Framework.Logging.Console/LogConsole.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
using System;
25
using System.IO;
36
using Microsoft.Framework.Logging.Console.Internal;
47

src/Microsoft.Framework.Logging.Interfaces/ILogValues.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Collections.Generic;
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
using System.Collections.Generic;
25

36
namespace Microsoft.Framework.Logging
47
{

src/Microsoft.Framework.Logging.Interfaces/LogFormatter.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
using System;
25
using System.Collections.Generic;
36
using System.Linq;
47
using System.Text;

src/Microsoft.Framework.Logging.Serilog/NotNullAttribute.cs

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/Microsoft.Framework.Logging.Serilog/SerilogLogger.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
5-
using JetBrains.Annotations;
6-
using Serilog.Events;
5+
using Microsoft.Framework.Internal;
76
using Serilog.Core;
8-
7+
using Serilog.Events;
98
using SLogger = Serilog.ILogger;
109

1110
namespace Microsoft.Framework.Logging.Serilog

src/Microsoft.Framework.Logging.Serilog/SerilogLoggerFactoryExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using Serilog;
4+
using Microsoft.Framework.Internal;
55
using Microsoft.Framework.Logging.Serilog;
6-
using JetBrains.Annotations;
6+
using Serilog;
77

88
namespace Microsoft.Framework.Logging
99
{

src/Microsoft.Framework.Logging.Serilog/SerilogLoggerProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
#if ASPNET50
66
using System.Runtime.Remoting;
77
using System.Runtime.Remoting.Messaging;
8+
using Microsoft.Framework.Internal;
89
#else
910
using System.Threading;
1011
#endif
11-
using JetBrains.Annotations;
1212
using Serilog.Core;
1313
using Serilog.Events;
1414

src/Microsoft.Framework.Logging.Serilog/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"version": "1.0.0-*",
33
"dependencies": {
44
"Microsoft.Framework.Logging.Interfaces": "1.0.0-*",
5+
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-*" },
56
"Serilog": "1.4.14"
67
},
78
"frameworks": {

src/Microsoft.Framework.Logging.TraceSource/TraceSourceFactoryExtensions.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
1+
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3+
4+
using System;
25
using System.Diagnostics;
36
using Microsoft.Framework.Internal;
47

0 commit comments

Comments
 (0)