aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-02-04 10:24:51 -0800
committerRob Mensching <rob@firegiant.com>2022-02-08 09:42:04 -0800
commit647f6bc49ecf035add9d41bd2bc0625cd8cb27da (patch)
treeff6b6e022717e9146edb603ec900a658fe2e8a77 /src
parentdd267e9f577d232b7887f2deb047f8d318be4700 (diff)
downloadwix-647f6bc49ecf035add9d41bd2bc0625cd8cb27da.tar.gz
wix-647f6bc49ecf035add9d41bd2bc0625cd8cb27da.tar.bz2
wix-647f6bc49ecf035add9d41bd2bc0625cd8cb27da.zip
Move command-line handling into CommandLine namespace
Diffstat (limited to 'src')
-rw-r--r--src/wix/WixToolset.Core.Burn/BurnExtensionCommandLine.cs3
-rw-r--r--src/wix/WixToolset.Core.Burn/CommandLine/BurnCommand.cs (renamed from src/wix/WixToolset.Core.Burn/BurnCommand.cs)2
-rw-r--r--src/wix/WixToolset.Core.Burn/CommandLine/BurnSubcommandBase.cs (renamed from src/wix/WixToolset.Core.Burn/BurnSubcommandBase.cs)2
-rw-r--r--src/wix/WixToolset.Core.Burn/CommandLine/DetachSubcommand.cs (renamed from src/wix/WixToolset.Core.Burn/DetachSubcommand.cs)2
-rw-r--r--src/wix/WixToolset.Core.Burn/CommandLine/ReattachSubcommand.cs (renamed from src/wix/WixToolset.Core.Burn/ReattachSubcommand.cs)2
-rw-r--r--src/wix/WixToolset.Core.WindowsInstaller/CommandLine/InscribeSubcommand.cs (renamed from src/wix/WixToolset.Core.WindowsInstaller/InscribeSubcommand.cs)2
-rw-r--r--src/wix/WixToolset.Core.WindowsInstaller/CommandLine/WindowsInstallerCommand.cs (renamed from src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerCommand.cs)2
-rw-r--r--src/wix/WixToolset.Core.WindowsInstaller/CommandLine/WindowsInstallerSubcommandBase.cs (renamed from src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerSubcommandBase.cs)2
-rw-r--r--src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs1
9 files changed, 10 insertions, 8 deletions
diff --git a/src/wix/WixToolset.Core.Burn/BurnExtensionCommandLine.cs b/src/wix/WixToolset.Core.Burn/BurnExtensionCommandLine.cs
index 66e77888..b306199d 100644
--- a/src/wix/WixToolset.Core.Burn/BurnExtensionCommandLine.cs
+++ b/src/wix/WixToolset.Core.Burn/BurnExtensionCommandLine.cs
@@ -4,12 +4,13 @@ namespace WixToolset.Core.Burn
4{ 4{
5 using System; 5 using System;
6 using System.Collections.Generic; 6 using System.Collections.Generic;
7 using WixToolset.Core.Burn.CommandLine;
7 using WixToolset.Extensibility; 8 using WixToolset.Extensibility;
8 using WixToolset.Extensibility.Data; 9 using WixToolset.Extensibility.Data;
9 using WixToolset.Extensibility.Services; 10 using WixToolset.Extensibility.Services;
10 11
11 /// <summary> 12 /// <summary>
12 /// Parses the "msi" command-line command. See <c>WindowsInstallerCommand</c> 13 /// Parses the "burn" command-line command. See <c>BurnCommand</c>
13 /// for the bulk of the command-line processing. 14 /// for the bulk of the command-line processing.
14 /// </summary> 15 /// </summary>
15 internal class BurnExtensionCommandLine : BaseExtensionCommandLine 16 internal class BurnExtensionCommandLine : BaseExtensionCommandLine
diff --git a/src/wix/WixToolset.Core.Burn/BurnCommand.cs b/src/wix/WixToolset.Core.Burn/CommandLine/BurnCommand.cs
index 3835bf2e..a50fb7cd 100644
--- a/src/wix/WixToolset.Core.Burn/BurnCommand.cs
+++ b/src/wix/WixToolset.Core.Burn/CommandLine/BurnCommand.cs
@@ -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. 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 2
3namespace WixToolset.Core.Burn 3namespace WixToolset.Core.Burn.CommandLine
4{ 4{
5 using System; 5 using System;
6 using System.Threading; 6 using System.Threading;
diff --git a/src/wix/WixToolset.Core.Burn/BurnSubcommandBase.cs b/src/wix/WixToolset.Core.Burn/CommandLine/BurnSubcommandBase.cs
index 62d69d4a..cf2da708 100644
--- a/src/wix/WixToolset.Core.Burn/BurnSubcommandBase.cs
+++ b/src/wix/WixToolset.Core.Burn/CommandLine/BurnSubcommandBase.cs
@@ -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. 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 2
3namespace WixToolset.Core.Burn 3namespace WixToolset.Core.Burn.CommandLine
4{ 4{
5 using System.Threading; 5 using System.Threading;
6 using System.Threading.Tasks; 6 using System.Threading.Tasks;
diff --git a/src/wix/WixToolset.Core.Burn/DetachSubcommand.cs b/src/wix/WixToolset.Core.Burn/CommandLine/DetachSubcommand.cs
index a1614a85..3f958c81 100644
--- a/src/wix/WixToolset.Core.Burn/DetachSubcommand.cs
+++ b/src/wix/WixToolset.Core.Burn/CommandLine/DetachSubcommand.cs
@@ -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. 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 2
3namespace WixToolset.Core.Burn 3namespace WixToolset.Core.Burn.CommandLine
4{ 4{
5 using System; 5 using System;
6 using System.IO; 6 using System.IO;
diff --git a/src/wix/WixToolset.Core.Burn/ReattachSubcommand.cs b/src/wix/WixToolset.Core.Burn/CommandLine/ReattachSubcommand.cs
index ce2af2d3..ba034973 100644
--- a/src/wix/WixToolset.Core.Burn/ReattachSubcommand.cs
+++ b/src/wix/WixToolset.Core.Burn/CommandLine/ReattachSubcommand.cs
@@ -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. 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 2
3namespace WixToolset.Core.Burn 3namespace WixToolset.Core.Burn.CommandLine
4{ 4{
5 using System; 5 using System;
6 using System.IO; 6 using System.IO;
diff --git a/src/wix/WixToolset.Core.WindowsInstaller/InscribeSubcommand.cs b/src/wix/WixToolset.Core.WindowsInstaller/CommandLine/InscribeSubcommand.cs
index d44fb0bd..ebc4673d 100644
--- a/src/wix/WixToolset.Core.WindowsInstaller/InscribeSubcommand.cs
+++ b/src/wix/WixToolset.Core.WindowsInstaller/CommandLine/InscribeSubcommand.cs
@@ -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. 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 2
3namespace WixToolset.Core.WindowsInstaller 3namespace WixToolset.Core.WindowsInstaller.CommandLine
4{ 4{
5 using System; 5 using System;
6 using System.IO; 6 using System.IO;
diff --git a/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerCommand.cs b/src/wix/WixToolset.Core.WindowsInstaller/CommandLine/WindowsInstallerCommand.cs
index cedc65b2..db178ddf 100644
--- a/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerCommand.cs
+++ b/src/wix/WixToolset.Core.WindowsInstaller/CommandLine/WindowsInstallerCommand.cs
@@ -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. 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 2
3namespace WixToolset.Core.WindowsInstaller 3namespace WixToolset.Core.WindowsInstaller.CommandLine
4{ 4{
5 using System; 5 using System;
6 using System.Threading; 6 using System.Threading;
diff --git a/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerSubcommandBase.cs b/src/wix/WixToolset.Core.WindowsInstaller/CommandLine/WindowsInstallerSubcommandBase.cs
index c5156a1d..e3f26296 100644
--- a/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerSubcommandBase.cs
+++ b/src/wix/WixToolset.Core.WindowsInstaller/CommandLine/WindowsInstallerSubcommandBase.cs
@@ -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. 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 2
3namespace WixToolset.Core.WindowsInstaller 3namespace WixToolset.Core.WindowsInstaller.CommandLine
4{ 4{
5 using System.Threading; 5 using System.Threading;
6 using System.Threading.Tasks; 6 using System.Threading.Tasks;
diff --git a/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs b/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs
index 4c516d0d..ae8f0a94 100644
--- a/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs
+++ b/src/wix/WixToolset.Core.WindowsInstaller/WindowsInstallerExtensionCommandLine.cs
@@ -4,6 +4,7 @@ namespace WixToolset.Core.WindowsInstaller
4{ 4{
5 using System; 5 using System;
6 using System.Collections.Generic; 6 using System.Collections.Generic;
7 using WixToolset.Core.WindowsInstaller.CommandLine;
7 using WixToolset.Extensibility; 8 using WixToolset.Extensibility;
8 using WixToolset.Extensibility.Data; 9 using WixToolset.Extensibility.Data;
9 using WixToolset.Extensibility.Services; 10 using WixToolset.Extensibility.Services;