diff --git a/src/Microsoft.Dnx.Watcher/CommandOutputLogger.cs b/src/Microsoft.Dnx.Watcher/CommandOutputLogger.cs index ca0763fdc1..a9bfe7d078 100644 --- a/src/Microsoft.Dnx.Watcher/CommandOutputLogger.cs +++ b/src/Microsoft.Dnx.Watcher/CommandOutputLogger.cs @@ -2,7 +2,7 @@ // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; -using Microsoft.Dnx.Runtime.Common.CommandLine; +using Microsoft.Extensions.CommandLineUtils; using Microsoft.Extensions.Logging; namespace Microsoft.Dnx.Watcher diff --git a/src/Microsoft.Dnx.Watcher/Program.cs b/src/Microsoft.Dnx.Watcher/Program.cs index 7faf51b813..e9e8d720ca 100644 --- a/src/Microsoft.Dnx.Watcher/Program.cs +++ b/src/Microsoft.Dnx.Watcher/Program.cs @@ -6,9 +6,8 @@ using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; -using Microsoft.Extensions.CompilationAbstractions; +using Microsoft.Extensions.CommandLineUtils; using Microsoft.Extensions.PlatformAbstractions; -using Microsoft.Dnx.Runtime.Common.CommandLine; using Microsoft.Dnx.Watcher.Core; using Microsoft.Extensions.Logging; diff --git a/src/Microsoft.Dnx.Watcher/project.json b/src/Microsoft.Dnx.Watcher/project.json index 2a32dcc292..cbd29d5335 100644 --- a/src/Microsoft.Dnx.Watcher/project.json +++ b/src/Microsoft.Dnx.Watcher/project.json @@ -7,7 +7,7 @@ }, "dependencies": { "Microsoft.Dnx.Watcher.Core": "1.0.0-*", - "Microsoft.Extensions.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" }, + "Microsoft.Extensions.CommandLineUtils": "1.0.0-*", "Microsoft.Extensions.Logging": "1.0.0-*", "Microsoft.Extensions.Logging.Console": "1.0.0-*" },