Move command-line handling into CommandLine namespace
Rob Mensching committed
Feb 4, 2022 at 10:24 UTC
647f6bc49ecf035add9d41bd2bc0625cd8cb27da
9 files changed
+10
-8
src/wix/WixToolset.Core.Burn/BurnExtensionCommandLine.cs
+2
-1
@@ -4,12 +4,13 @@ namespace WixToolset.Core.Burn
4
{
5
using System;
6
using System.Collections.Generic;
7
+ using WixToolset.Core.Burn.CommandLine;
8
using WixToolset.Extensibility;
9
using WixToolset.Extensibility.Data;
10
using WixToolset.Extensibility.Services;
11
12
/// <summary>
12
- /// Parses the "msi" command-line command. See <c>WindowsInstallerCommand</c>
13
+ /// Parses the "burn" command-line command. See <c>BurnCommand</c>
14
/// for the bulk of the command-line processing.
15
/// </summary>
16
internal class BurnExtensionCommandLine : BaseExtensionCommandLine
src/wix/WixToolset.Core.Burn/CommandLine/BurnCommand.cs
renamed
+1
-1
@@ -1,6 +1,6 @@
1
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3
-namespace WixToolset.Core.Burn
3
+namespace WixToolset.Core.Burn.CommandLine
4
{
5
using System;
6
using System.Threading;
src/wix/WixToolset.Core.Burn/CommandLine/BurnSubcommandBase.cs
renamed
+1
-1
@@ -1,6 +1,6 @@
1
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3
-namespace WixToolset.Core.Burn
3
+namespace WixToolset.Core.Burn.CommandLine
4
{
5
using System.Threading;
6
using System.Threading.Tasks;
src/wix/WixToolset.Core.Burn/CommandLine/DetachSubcommand.cs
renamed
+1
-1
@@ -1,6 +1,6 @@
1
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3
-namespace WixToolset.Core.Burn
3
+namespace WixToolset.Core.Burn.CommandLine
4
{
5
using System;
6
using System.IO;
src/wix/WixToolset.Core.Burn/CommandLine/ReattachSubcommand.cs
renamed
+1
-1
@@ -1,6 +1,6 @@
1
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3
-namespace WixToolset.Core.Burn
3
+namespace WixToolset.Core.Burn.CommandLine
4
{
5
using System;
6
using System.IO;
src/wix/WixToolset.Core.WindowsInstaller/CommandLine/InscribeSubcommand.cs
renamed
+1
-1
@@ -1,6 +1,6 @@
1
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3
-namespace WixToolset.Core.WindowsInstaller
3
+namespace WixToolset.Core.WindowsInstaller.CommandLine
4
{
5
using System;
6
using System.IO;
src/wix/WixToolset.Core.WindowsInstaller/CommandLine/WindowsInstallerCommand.cs
renamed
+1
-1
@@ -1,6 +1,6 @@
1
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3
-namespace WixToolset.Core.WindowsInstaller
3
+namespace WixToolset.Core.WindowsInstaller.CommandLine
4
{
5
using System;
6
using System.Threading;
src/wix/WixToolset.Core.WindowsInstaller/CommandLine/WindowsInstallerSubcommandBase.cs
renamed
+1
-1
@@ -1,6 +1,6 @@
1
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3
-namespace WixToolset.Core.WindowsInstaller
3
+namespace WixToolset.Core.WindowsInstaller.CommandLine
4
{
5
using System.Threading;
6
using System.Threading.Tasks;
src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs
+1
@@ -4,6 +4,7 @@ namespace WixToolset.Core.WindowsInstaller
4
{
5
using System;
6
using System.Collections.Generic;
7
+ using WixToolset.Core.WindowsInstaller.CommandLine;
8
using WixToolset.Extensibility;
9
using WixToolset.Extensibility.Data;
10
using WixToolset.Extensibility.Services;