Renaming Microsoft.Framework.* -> Microsoft.Extensions.*

This commit is contained in:
Pranav K 2015-10-03 15:44:58 -07:00
parent 5dc1a639d2
commit ac6e441f15
7 changed files with 15 additions and 15 deletions

View File

@ -1,4 +1,4 @@
// Copyright (c) .NET Foundation. All rights reserved. // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System; using System;
@ -6,7 +6,7 @@ using System.IO;
using System.Linq; using System.Linq;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.Framework.Logging; using Microsoft.Extensions.Logging;
namespace Microsoft.Dnx.Watcher.Core namespace Microsoft.Dnx.Watcher.Core
{ {

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using Microsoft.Framework.FileSystemGlobbing; using Microsoft.Extensions.FileSystemGlobbing;
using Microsoft.Dnx.Runtime.Json; using Microsoft.Dnx.Runtime.Json;
namespace Microsoft.Dnx.Runtime namespace Microsoft.Dnx.Runtime

View File

@ -9,8 +9,8 @@
"type": "build", "type": "build",
"version": "1.0.0-*" "version": "1.0.0-*"
}, },
"Microsoft.Framework.Logging.Abstractions": "1.0.0-*", "Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",
"Microsoft.Framework.FileSystemGlobbing": "1.0.0-*" "Microsoft.Extensions.FileSystemGlobbing": "1.0.0-*"
}, },
"frameworks": { "frameworks": {
"dnx451": { "dnx451": {

View File

@ -1,9 +1,9 @@
// Copyright (c) .NET Foundation. All rights reserved. // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System; using System;
using Microsoft.Dnx.Runtime.Common.CommandLine; using Microsoft.Dnx.Runtime.Common.CommandLine;
using Microsoft.Framework.Logging; using Microsoft.Extensions.Logging;
namespace Microsoft.Dnx.Watcher namespace Microsoft.Dnx.Watcher
{ {

View File

@ -1,9 +1,9 @@
// Copyright (c) .NET Foundation. All rights reserved. // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System; using System;
using Microsoft.Dnx.Runtime; using Microsoft.Dnx.Runtime;
using Microsoft.Framework.Logging; using Microsoft.Extensions.Logging;
namespace Microsoft.Dnx.Watcher namespace Microsoft.Dnx.Watcher
{ {

View File

@ -1,4 +1,4 @@
// Copyright (c) .NET Foundation. All rights reserved. // Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System; using System;
@ -9,7 +9,7 @@ using System.Threading.Tasks;
using Microsoft.Dnx.Runtime; using Microsoft.Dnx.Runtime;
using Microsoft.Dnx.Runtime.Common.CommandLine; using Microsoft.Dnx.Runtime.Common.CommandLine;
using Microsoft.Dnx.Watcher.Core; using Microsoft.Dnx.Watcher.Core;
using Microsoft.Framework.Logging; using Microsoft.Extensions.Logging;
namespace Microsoft.Dnx.Watcher namespace Microsoft.Dnx.Watcher
{ {

View File

@ -1,11 +1,11 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"compilationOptions": { "warningsAsErrors": true }, "compilationOptions": { "warningsAsErrors": true },
"dependencies": { "dependencies": {
"Microsoft.Dnx.Watcher.Core": "1.0.0-*", "Microsoft.Dnx.Watcher.Core": "1.0.0-*",
"Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" }, "Microsoft.Extensions.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" },
"Microsoft.Framework.Logging": "1.0.0-*", "Microsoft.Extensions.Logging": "1.0.0-*",
"Microsoft.Framework.Logging.Console": "1.0.0-*" "Microsoft.Extensions.Logging.Console": "1.0.0-*"
}, },
"frameworks": { "frameworks": {
"dnx451": { }, "dnx451": { },