From 46d46435592ba779d6c8d017859c27d90b092aa6 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 11 Dec 2019 20:27:17 +1100 Subject: Update the namespace in WixToolset.Mba.Core. --- src/WixToolset.Mba.Core/BaseBootstrapperApplicationFactory.cs | 4 +++- src/WixToolset.Mba.Core/BootstrapperApplication.cs | 3 ++- src/WixToolset.Mba.Core/BootstrapperApplicationData.cs | 2 +- src/WixToolset.Mba.Core/BootstrapperApplicationFactory.cs | 3 ++- .../BootstrapperApplicationFactoryAttribute.cs | 2 +- src/WixToolset.Mba.Core/BootstrapperCommand.cs | 3 ++- src/WixToolset.Mba.Core/BootstrapperSectionGroup.cs | 2 +- src/WixToolset.Mba.Core/BundleInfo.cs | 2 +- src/WixToolset.Mba.Core/Engine.cs | 3 ++- src/WixToolset.Mba.Core/EventArgs.cs | 3 ++- src/WixToolset.Mba.Core/Exceptions.cs | 2 +- src/WixToolset.Mba.Core/HostSection.cs | 2 +- src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs | 2 +- src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs | 3 ++- src/WixToolset.Mba.Core/IBootstrapperCommand.cs | 3 ++- src/WixToolset.Mba.Core/IBundleInfo.cs | 2 +- src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs | 3 ++- src/WixToolset.Mba.Core/IEngine.cs | 3 ++- src/WixToolset.Mba.Core/IPackageInfo.cs | 2 +- src/WixToolset.Mba.Core/IVariables.cs | 2 +- src/WixToolset.Mba.Core/NativeMethods.cs | 2 +- src/WixToolset.Mba.Core/PackageInfo.cs | 3 ++- src/WixToolset.Mba.Core/SupportedFrameworkElement.cs | 2 +- src/WixToolset.Mba.Core/SupportedFrameworkElementCollection.cs | 2 +- src/WixToolset.Mba.Core/WixToolset.Mba.Core.config | 8 ++++---- 25 files changed, 40 insertions(+), 28 deletions(-) (limited to 'src') diff --git a/src/WixToolset.Mba.Core/BaseBootstrapperApplicationFactory.cs b/src/WixToolset.Mba.Core/BaseBootstrapperApplicationFactory.cs index e9b60929..08d2c4d8 100644 --- a/src/WixToolset.Mba.Core/BaseBootstrapperApplicationFactory.cs +++ b/src/WixToolset.Mba.Core/BaseBootstrapperApplicationFactory.cs @@ -1,7 +1,9 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { + using WixToolset.BootstrapperCore; + public abstract class BaseBootstrapperApplicationFactory : IBootstrapperApplicationFactory { public IBootstrapperApplication Create(IBootstrapperEngine pEngine, ref Command command) diff --git a/src/WixToolset.Mba.Core/BootstrapperApplication.cs b/src/WixToolset.Mba.Core/BootstrapperApplication.cs index c08a60c7..52667923 100644 --- a/src/WixToolset.Mba.Core/BootstrapperApplication.cs +++ b/src/WixToolset.Mba.Core/BootstrapperApplication.cs @@ -1,10 +1,11 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Runtime.InteropServices; using System.Threading; + using WixToolset.BootstrapperCore; /// /// The default bootstrapper application. diff --git a/src/WixToolset.Mba.Core/BootstrapperApplicationData.cs b/src/WixToolset.Mba.Core/BootstrapperApplicationData.cs index a17f1a05..d6d590ba 100644 --- a/src/WixToolset.Mba.Core/BootstrapperApplicationData.cs +++ b/src/WixToolset.Mba.Core/BootstrapperApplicationData.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.IO; diff --git a/src/WixToolset.Mba.Core/BootstrapperApplicationFactory.cs b/src/WixToolset.Mba.Core/BootstrapperApplicationFactory.cs index 28430bb8..de12ca17 100644 --- a/src/WixToolset.Mba.Core/BootstrapperApplicationFactory.cs +++ b/src/WixToolset.Mba.Core/BootstrapperApplicationFactory.cs @@ -1,11 +1,12 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Configuration; using System.Reflection; using System.Runtime.InteropServices; + using WixToolset.BootstrapperCore; /// /// Entry point for the MBA host to create and return the IBootstrapperApplication implementation to the engine. diff --git a/src/WixToolset.Mba.Core/BootstrapperApplicationFactoryAttribute.cs b/src/WixToolset.Mba.Core/BootstrapperApplicationFactoryAttribute.cs index 781d4ea1..95252cf3 100644 --- a/src/WixToolset.Mba.Core/BootstrapperApplicationFactoryAttribute.cs +++ b/src/WixToolset.Mba.Core/BootstrapperApplicationFactoryAttribute.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; diff --git a/src/WixToolset.Mba.Core/BootstrapperCommand.cs b/src/WixToolset.Mba.Core/BootstrapperCommand.cs index bbd10e1d..1ca64924 100644 --- a/src/WixToolset.Mba.Core/BootstrapperCommand.cs +++ b/src/WixToolset.Mba.Core/BootstrapperCommand.cs @@ -1,10 +1,11 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.ComponentModel; using System.Runtime.InteropServices; + using WixToolset.BootstrapperCore; public sealed class BootstrapperCommand : IBootstrapperCommand { diff --git a/src/WixToolset.Mba.Core/BootstrapperSectionGroup.cs b/src/WixToolset.Mba.Core/BootstrapperSectionGroup.cs index 7721c027..f307e53e 100644 --- a/src/WixToolset.Mba.Core/BootstrapperSectionGroup.cs +++ b/src/WixToolset.Mba.Core/BootstrapperSectionGroup.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Configuration; diff --git a/src/WixToolset.Mba.Core/BundleInfo.cs b/src/WixToolset.Mba.Core/BundleInfo.cs index 51c2d268..e6d2f6e6 100644 --- a/src/WixToolset.Mba.Core/BundleInfo.cs +++ b/src/WixToolset.Mba.Core/BundleInfo.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Collections.Generic; diff --git a/src/WixToolset.Mba.Core/Engine.cs b/src/WixToolset.Mba.Core/Engine.cs index ad62134f..2e094bb9 100644 --- a/src/WixToolset.Mba.Core/Engine.cs +++ b/src/WixToolset.Mba.Core/Engine.cs @@ -1,12 +1,13 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.ComponentModel; using System.Runtime.InteropServices; using System.Security; using System.Text; + using WixToolset.BootstrapperCore; /// /// Container class for the interface. diff --git a/src/WixToolset.Mba.Core/EventArgs.cs b/src/WixToolset.Mba.Core/EventArgs.cs index 9e8e6ecc..26a3b573 100644 --- a/src/WixToolset.Mba.Core/EventArgs.cs +++ b/src/WixToolset.Mba.Core/EventArgs.cs @@ -1,10 +1,11 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Collections.Generic; using System.Collections.ObjectModel; + using WixToolset.BootstrapperCore; /// /// Base class for BA classes. diff --git a/src/WixToolset.Mba.Core/Exceptions.cs b/src/WixToolset.Mba.Core/Exceptions.cs index 360b360d..72669a42 100644 --- a/src/WixToolset.Mba.Core/Exceptions.cs +++ b/src/WixToolset.Mba.Core/Exceptions.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Runtime.Serialization; diff --git a/src/WixToolset.Mba.Core/HostSection.cs b/src/WixToolset.Mba.Core/HostSection.cs index e5b7ea64..2586f565 100644 --- a/src/WixToolset.Mba.Core/HostSection.cs +++ b/src/WixToolset.Mba.Core/HostSection.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Configuration; diff --git a/src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs b/src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs index c8c6e6e3..a19a34b5 100644 --- a/src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs +++ b/src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System.IO; diff --git a/src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs b/src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs index 414d28ed..6dd4af72 100644 --- a/src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs +++ b/src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs @@ -1,10 +1,11 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.CodeDom.Compiler; using System.Runtime.InteropServices; + using WixToolset.BootstrapperCore; [ComVisible(true)] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] diff --git a/src/WixToolset.Mba.Core/IBootstrapperCommand.cs b/src/WixToolset.Mba.Core/IBootstrapperCommand.cs index 332b4c3b..fc7d1fc2 100644 --- a/src/WixToolset.Mba.Core/IBootstrapperCommand.cs +++ b/src/WixToolset.Mba.Core/IBootstrapperCommand.cs @@ -1,8 +1,9 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; + using WixToolset.BootstrapperCore; /// /// Command information passed from the engine for the BA to perform. diff --git a/src/WixToolset.Mba.Core/IBundleInfo.cs b/src/WixToolset.Mba.Core/IBundleInfo.cs index a5f4b9c7..3d5b067e 100644 --- a/src/WixToolset.Mba.Core/IBundleInfo.cs +++ b/src/WixToolset.Mba.Core/IBundleInfo.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System.Collections.Generic; diff --git a/src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs b/src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs index ccbe84db..ee290865 100644 --- a/src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs +++ b/src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs @@ -1,8 +1,9 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; + using WixToolset.BootstrapperCore; public interface IDefaultBootstrapperApplication : IBootstrapperApplication { diff --git a/src/WixToolset.Mba.Core/IEngine.cs b/src/WixToolset.Mba.Core/IEngine.cs index 46b8158a..6aef50b3 100644 --- a/src/WixToolset.Mba.Core/IEngine.cs +++ b/src/WixToolset.Mba.Core/IEngine.cs @@ -1,10 +1,11 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.ComponentModel; using System.Security; + using WixToolset.BootstrapperCore; public interface IEngine { diff --git a/src/WixToolset.Mba.Core/IPackageInfo.cs b/src/WixToolset.Mba.Core/IPackageInfo.cs index f4c7c558..5afe4b38 100644 --- a/src/WixToolset.Mba.Core/IPackageInfo.cs +++ b/src/WixToolset.Mba.Core/IPackageInfo.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { public interface IPackageInfo { diff --git a/src/WixToolset.Mba.Core/IVariables.cs b/src/WixToolset.Mba.Core/IVariables.cs index 15da4c84..c7994f0b 100644 --- a/src/WixToolset.Mba.Core/IVariables.cs +++ b/src/WixToolset.Mba.Core/IVariables.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; diff --git a/src/WixToolset.Mba.Core/NativeMethods.cs b/src/WixToolset.Mba.Core/NativeMethods.cs index 1964cb45..adb2256e 100644 --- a/src/WixToolset.Mba.Core/NativeMethods.cs +++ b/src/WixToolset.Mba.Core/NativeMethods.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Runtime.InteropServices; diff --git a/src/WixToolset.Mba.Core/PackageInfo.cs b/src/WixToolset.Mba.Core/PackageInfo.cs index 99ebb33a..9bc21923 100644 --- a/src/WixToolset.Mba.Core/PackageInfo.cs +++ b/src/WixToolset.Mba.Core/PackageInfo.cs @@ -1,11 +1,12 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Collections.Generic; using System.Xml; using System.Xml.XPath; + using WixToolset.BootstrapperCore; public enum CacheType { diff --git a/src/WixToolset.Mba.Core/SupportedFrameworkElement.cs b/src/WixToolset.Mba.Core/SupportedFrameworkElement.cs index 37a31b69..7eae8bbf 100644 --- a/src/WixToolset.Mba.Core/SupportedFrameworkElement.cs +++ b/src/WixToolset.Mba.Core/SupportedFrameworkElement.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Configuration; diff --git a/src/WixToolset.Mba.Core/SupportedFrameworkElementCollection.cs b/src/WixToolset.Mba.Core/SupportedFrameworkElementCollection.cs index 1a5aa2de..88a9b4dd 100644 --- a/src/WixToolset.Mba.Core/SupportedFrameworkElementCollection.cs +++ b/src/WixToolset.Mba.Core/SupportedFrameworkElementCollection.cs @@ -1,6 +1,6 @@ // 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. -namespace WixToolset.BootstrapperCore +namespace WixToolset.Mba.Core { using System; using System.Configuration; diff --git a/src/WixToolset.Mba.Core/WixToolset.Mba.Core.config b/src/WixToolset.Mba.Core/WixToolset.Mba.Core.config index 1e284001..81b49347 100644 --- a/src/WixToolset.Mba.Core/WixToolset.Mba.Core.config +++ b/src/WixToolset.Mba.Core/WixToolset.Mba.Core.config @@ -4,8 +4,8 @@ - -
+ +
@@ -20,7 +20,7 @@ --> - - + + -- cgit v1.2.3-55-g6feb