Logging package name changed
1. Fixed the package name in project.json 2. Updated the namespaces.
This commit is contained in:
parent
77887f126c
commit
adb50f7fdc
|
|
@ -1,5 +1,6 @@
|
||||||
using Microsoft.AspNet.Logging;
|
using Microsoft.Framework.Logging;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace MusicStore.Logging
|
namespace MusicStore.Logging
|
||||||
{
|
{
|
||||||
public class NullLogger : ILogger
|
public class NullLogger : ILogger
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
using Microsoft.AspNet.Logging;
|
using Microsoft.Framework.Logging;
|
||||||
|
|
||||||
namespace MusicStore.Logging
|
namespace MusicStore.Logging
|
||||||
{
|
{
|
||||||
public class NullLoggerFactory : ILoggerFactory
|
public class NullLoggerFactory : ILoggerFactory
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ using Microsoft.AspNet.Identity;
|
||||||
using Microsoft.AspNet.Identity.Entity;
|
using Microsoft.AspNet.Identity.Entity;
|
||||||
using Microsoft.AspNet.Identity.InMemory;
|
using Microsoft.AspNet.Identity.InMemory;
|
||||||
using Microsoft.AspNet.Identity.Security;
|
using Microsoft.AspNet.Identity.Security;
|
||||||
using Microsoft.AspNet.Logging;
|
using Microsoft.Framework.Logging;
|
||||||
using Microsoft.AspNet.Mvc;
|
using Microsoft.AspNet.Mvc;
|
||||||
using Microsoft.AspNet.RequestContainer;
|
using Microsoft.AspNet.RequestContainer;
|
||||||
using Microsoft.AspNet.Routing;
|
using Microsoft.AspNet.Routing;
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
"Microsoft.Framework.ConfigurationModel.Json": "0.1-alpha-*",
|
"Microsoft.Framework.ConfigurationModel.Json": "0.1-alpha-*",
|
||||||
"Microsoft.AspNet.Security": "0.1-alpha-*",
|
"Microsoft.AspNet.Security": "0.1-alpha-*",
|
||||||
"Microsoft.AspNet.Security.Cookies": "0.1-alpha-*",
|
"Microsoft.AspNet.Security.Cookies": "0.1-alpha-*",
|
||||||
"Microsoft.AspNet.Logging": "0.1-alpha-*"
|
"Microsoft.Framework.Logging": "0.1-alpha-*"
|
||||||
},
|
},
|
||||||
"commands": {
|
"commands": {
|
||||||
"web": "Microsoft.AspNet.Hosting server.name=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5002",
|
"web": "Microsoft.AspNet.Hosting server.name=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:5002",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue