diff --git a/src/dotnet/Program.cs b/src/dotnet/Program.cs index e1b80b075..f7ddc514a 100644 --- a/src/dotnet/Program.cs +++ b/src/dotnet/Program.cs @@ -15,6 +15,8 @@ using Microsoft.DotNet.Tools.Build3; using Microsoft.DotNet.Tools.Compiler; using Microsoft.DotNet.Tools.Compiler.Csc; using Microsoft.DotNet.Tools.Help; +using Microsoft.DotNet.Tools.Migrate; +using Microsoft.DotNet.Tools.MSBuild; using Microsoft.DotNet.Tools.New; using Microsoft.DotNet.Tools.NuGet; using Microsoft.DotNet.Tools.Pack3; @@ -24,7 +26,6 @@ using Microsoft.DotNet.Tools.Restore3; using Microsoft.DotNet.Tools.Run; using Microsoft.DotNet.Tools.Test; using Microsoft.DotNet.Tools.VSTest; -using Microsoft.DotNet.Tools.Migrate; using NuGet.Frameworks; namespace Microsoft.DotNet.Cli diff --git a/src/dotnet/commands/dotnet-build3/Program.cs b/src/dotnet/commands/dotnet-build3/Program.cs index da62440fe..b34a7b56c 100644 --- a/src/dotnet/commands/dotnet-build3/Program.cs +++ b/src/dotnet/commands/dotnet-build3/Program.cs @@ -2,9 +2,9 @@ // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Collections.Generic; -using Microsoft.DotNet.Cli; using Microsoft.DotNet.Cli.CommandLine; using Microsoft.DotNet.Cli.Utils; +using Microsoft.DotNet.Tools.MSBuild; namespace Microsoft.DotNet.Tools.Build3 { diff --git a/src/dotnet/commands/dotnet-msbuild/MSBuildForwardingApp.cs b/src/dotnet/commands/dotnet-msbuild/MSBuildForwardingApp.cs index 35fa03122..7f5b70d28 100644 --- a/src/dotnet/commands/dotnet-msbuild/MSBuildForwardingApp.cs +++ b/src/dotnet/commands/dotnet-msbuild/MSBuildForwardingApp.cs @@ -1,12 +1,13 @@ // Copyright (c) .NET Foundation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. -using Microsoft.DotNet.Cli.Utils; using System; using System.Collections.Generic; using System.IO; +using Microsoft.DotNet.Cli; +using Microsoft.DotNet.Cli.Utils; -namespace Microsoft.DotNet.Cli +namespace Microsoft.DotNet.Tools.MSBuild { public class MSBuildForwardingApp { diff --git a/src/dotnet/commands/dotnet-msbuild/Program.cs b/src/dotnet/commands/dotnet-msbuild/Program.cs index d3566d9c6..014769ff3 100644 --- a/src/dotnet/commands/dotnet-msbuild/Program.cs +++ b/src/dotnet/commands/dotnet-msbuild/Program.cs @@ -1,7 +1,7 @@ // Copyright (c) .NET Foundation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. -namespace Microsoft.DotNet.Cli +namespace Microsoft.DotNet.Tools.MSBuild { public class MSBuildCommand { diff --git a/src/dotnet/commands/dotnet-pack3/Pack3Command.cs b/src/dotnet/commands/dotnet-pack3/Pack3Command.cs index 41fb392cc..aec1b4a39 100644 --- a/src/dotnet/commands/dotnet-pack3/Pack3Command.cs +++ b/src/dotnet/commands/dotnet-pack3/Pack3Command.cs @@ -1,11 +1,10 @@ // Copyright (c) .NET Foundation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. -using System; using System.Collections.Generic; -using Microsoft.DotNet.Cli; using Microsoft.DotNet.Cli.CommandLine; using Microsoft.DotNet.Cli.Utils; +using Microsoft.DotNet.Tools.MSBuild; namespace Microsoft.DotNet.Tools.Pack3 { diff --git a/src/dotnet/commands/dotnet-restore3/Program.cs b/src/dotnet/commands/dotnet-restore3/Program.cs index c47eeb1bb..11e8b0332 100644 --- a/src/dotnet/commands/dotnet-restore3/Program.cs +++ b/src/dotnet/commands/dotnet-restore3/Program.cs @@ -1,11 +1,10 @@ // Copyright (c) .NET Foundation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. -using System; using System.Collections.Generic; -using Microsoft.DotNet.Cli; using Microsoft.DotNet.Cli.CommandLine; using Microsoft.DotNet.Cli.Utils; +using Microsoft.DotNet.Tools.MSBuild; namespace Microsoft.DotNet.Tools.Restore3 { diff --git a/src/dotnet/commands/dotnet-run3/Run3Command.cs b/src/dotnet/commands/dotnet-run3/Run3Command.cs index 222853395..c5e4f29db 100644 --- a/src/dotnet/commands/dotnet-run3/Run3Command.cs +++ b/src/dotnet/commands/dotnet-run3/Run3Command.cs @@ -6,8 +6,8 @@ using System.Collections.Generic; using System.IO; using System.Linq; using Microsoft.Build.Execution; -using Microsoft.DotNet.Cli; using Microsoft.DotNet.Cli.Utils; +using Microsoft.DotNet.Tools.MSBuild; namespace Microsoft.DotNet.Tools.Run {