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

Commit 1aae559

Browse files
committed
Interfaces->Abstractions
1 parent 89e3636 commit 1aae559

File tree

20 files changed

+6
-6
lines changed

20 files changed

+6
-6
lines changed

Logging.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{09920C51-6
99
EndProject
1010
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Logging.Test", "test\Microsoft.Framework.Logging.Test\Microsoft.Framework.Logging.Test.xproj", "{96B1D6A8-7E40-43C7-813F-898DC8192DDE}"
1111
EndProject
12-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Logging.Interfaces", "src\Microsoft.Framework.Logging.Interfaces\Microsoft.Framework.Logging.Interfaces.xproj", "{8221FA95-4B1A-44BF-925F-8AC1A317CC7C}"
12+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Logging.Abstractions", "src\Microsoft.Framework.Logging.Abstractions\Microsoft.Framework.Logging.Abstractions.xproj", "{8221FA95-4B1A-44BF-925F-8AC1A317CC7C}"
1313
EndProject
1414
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Logging.NLog", "src\Microsoft.Framework.Logging.NLog\Microsoft.Framework.Logging.NLog.xproj", "{718CBC9D-1E65-447D-A64A-7AC467FB5D6A}"
1515
EndProject

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "1.0.0-*",
33
"description": "Console logger implementation.",
44
"dependencies": {
5-
"Microsoft.Framework.Logging.Interfaces": "1.0.0-*"
5+
"Microsoft.Framework.Logging.Abstractions": "1.0.0-*"
66
},
77
"frameworks": {
88
"net45": { },

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": "1.0.0-*",
33
"dependencies": {
4-
"Microsoft.Framework.Logging.Interfaces": "1.0.0-*",
4+
"Microsoft.Framework.Logging.Abstractions": "1.0.0-*",
55
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-*" },
66
"NLog": "3.1.0"
77
},

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": "1.0.0-*",
33
"dependencies": {
4-
"Microsoft.Framework.Logging.Interfaces": "1.0.0-*",
4+
"Microsoft.Framework.Logging.Abstractions": "1.0.0-*",
55
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-*" },
66
"Serilog": "1.4.14"
77
},

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": "1.0.0-*",
33
"dependencies": {
4-
"Microsoft.Framework.Logging.Interfaces": "1.0.0-*",
4+
"Microsoft.Framework.Logging.Abstractions": "1.0.0-*",
55
"Microsoft.Framework.NotNullAttribute.Internal": { "type": "build", "version": "1.0.0-*" }
66
},
77

src/Microsoft.Framework.Logging/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Logging infrastructure.",
44
"dependencies": {
55
"Microsoft.Framework.DependencyInjection.Interfaces": "1.0.0-*",
6-
"Microsoft.Framework.Logging.Interfaces": "1.0.0-*"
6+
"Microsoft.Framework.Logging.Abstractions": "1.0.0-*"
77
},
88
"compilationOptions": {
99
"define": [

0 commit comments

Comments
 (0)