Update the namespace in WixToolset.Mba.Core.
Sean Hall committed
Dec 11, 2019 at 20:27 UTC
46d46435592ba779d6c8d017859c27d90b092aa6
26 files changed
+41
-29
balutil.sln
+1
-1
@@ -28,7 +28,7 @@ Global
28
{E7E1841E-A58E-4901-B9CA-4845B807D45F}.Debug|x86.ActiveCfg = Debug|Any CPU
29
{E7E1841E-A58E-4901-B9CA-4845B807D45F}.Debug|x86.Build.0 = Debug|Any CPU
30
{E7E1841E-A58E-4901-B9CA-4845B807D45F}.Release|x64.ActiveCfg = Release|Any CPU
31
- {E7E1841E-A58E-4901-B9CA-4845B807D45F}.Release|x64.Build.0 = Release|Any
31
+ {E7E1841E-A58E-4901-B9CA-4845B807D45F}.Release|x64.Build.0 = Release|Any CPU
32
{E7E1841E-A58E-4901-B9CA-4845B807D45F}.Release|x86.ActiveCfg = Release|Any CPU
33
{E7E1841E-A58E-4901-B9CA-4845B807D45F}.Release|x86.Build.0 = Release|Any CPU
34
EndGlobalSection
src/WixToolset.Mba.Core/BaseBootstrapperApplicationFactory.cs
+3
-1
@@ -1,7 +1,9 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
+ using WixToolset.BootstrapperCore;
6
+
7
public abstract class BaseBootstrapperApplicationFactory : IBootstrapperApplicationFactory
8
{
9
public IBootstrapperApplication Create(IBootstrapperEngine pEngine, ref Command command)
src/WixToolset.Mba.Core/BootstrapperApplication.cs
+2
-1
@@ -1,10 +1,11 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Runtime.InteropServices;
7
using System.Threading;
8
+ using WixToolset.BootstrapperCore;
9
10
/// <summary>
11
/// The default bootstrapper application.
src/WixToolset.Mba.Core/BootstrapperApplicationData.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.IO;
src/WixToolset.Mba.Core/BootstrapperApplicationFactory.cs
+2
-1
@@ -1,11 +1,12 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Configuration;
7
using System.Reflection;
8
using System.Runtime.InteropServices;
9
+ using WixToolset.BootstrapperCore;
10
11
/// <summary>
12
/// Entry point for the MBA host to create and return the IBootstrapperApplication implementation to the engine.
src/WixToolset.Mba.Core/BootstrapperApplicationFactoryAttribute.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
src/WixToolset.Mba.Core/BootstrapperCommand.cs
+2
-1
@@ -1,10 +1,11 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.ComponentModel;
7
using System.Runtime.InteropServices;
8
+ using WixToolset.BootstrapperCore;
9
10
public sealed class BootstrapperCommand : IBootstrapperCommand
11
{
src/WixToolset.Mba.Core/BootstrapperSectionGroup.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Configuration;
src/WixToolset.Mba.Core/BundleInfo.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Collections.Generic;
src/WixToolset.Mba.Core/Engine.cs
+2
-1
@@ -1,12 +1,13 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.ComponentModel;
7
using System.Runtime.InteropServices;
8
using System.Security;
9
using System.Text;
10
+ using WixToolset.BootstrapperCore;
11
12
/// <summary>
13
/// Container class for the <see cref="IBootstrapperEngine"/> interface.
src/WixToolset.Mba.Core/EventArgs.cs
+2
-1
@@ -1,10 +1,11 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Collections.Generic;
7
using System.Collections.ObjectModel;
8
+ using WixToolset.BootstrapperCore;
9
10
/// <summary>
11
/// Base class for BA <see cref="EventArgs"/> classes.
src/WixToolset.Mba.Core/Exceptions.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Runtime.Serialization;
src/WixToolset.Mba.Core/HostSection.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Configuration;
src/WixToolset.Mba.Core/IBootstrapperApplicationData.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System.IO;
6
src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs
+2
-1
@@ -1,10 +1,11 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.CodeDom.Compiler;
7
using System.Runtime.InteropServices;
8
+ using WixToolset.BootstrapperCore;
9
10
[ComVisible(true)]
11
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
src/WixToolset.Mba.Core/IBootstrapperCommand.cs
+2
-1
@@ -1,8 +1,9 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
+ using WixToolset.BootstrapperCore;
7
8
/// <summary>
9
/// Command information passed from the engine for the BA to perform.
src/WixToolset.Mba.Core/IBundleInfo.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System.Collections.Generic;
6
src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs
+2
-1
@@ -1,8 +1,9 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
+ using WixToolset.BootstrapperCore;
7
8
public interface IDefaultBootstrapperApplication : IBootstrapperApplication
9
{
src/WixToolset.Mba.Core/IEngine.cs
+2
-1
@@ -1,10 +1,11 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.ComponentModel;
7
using System.Security;
8
+ using WixToolset.BootstrapperCore;
9
10
public interface IEngine
11
{
src/WixToolset.Mba.Core/IPackageInfo.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
public interface IPackageInfo
6
{
src/WixToolset.Mba.Core/IVariables.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
src/WixToolset.Mba.Core/NativeMethods.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Runtime.InteropServices;
src/WixToolset.Mba.Core/PackageInfo.cs
+2
-1
@@ -1,11 +1,12 @@
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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Collections.Generic;
7
using System.Xml;
8
using System.Xml.XPath;
9
+ using WixToolset.BootstrapperCore;
10
11
public enum CacheType
12
{
src/WixToolset.Mba.Core/SupportedFrameworkElement.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Configuration;
src/WixToolset.Mba.Core/SupportedFrameworkElementCollection.cs
+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.BootstrapperCore
3
+namespace WixToolset.Mba.Core
4
{
5
using System;
6
using System.Configuration;
src/WixToolset.Mba.Core/WixToolset.Mba.Core.config
+4
-4
@@ -4,8 +4,8 @@
4
5
<configuration>
6
<configSections>
7
- <sectionGroup name="wix.bootstrapper" type="WixToolset.BootstrapperCore.BootstrapperSectionGroup, WixToolset.BootstrapperCore">
8
- <section name="host" type="WixToolset.BootstrapperCore.HostSection, WixToolset.BootstrapperCore" />
7
+ <sectionGroup name="wix.bootstrapper" type="WixToolset.Mba.Core.BootstrapperSectionGroup, WixToolset.Mba.Core">
8
+ <section name="host" type="WixToolset.Mba.Core.HostSection, WixToolset.Mba.Core" />
9
</sectionGroup>
10
</configSections>
11
<startup useLegacyV2RuntimeActivationPolicy="true">
@@ -20,7 +20,7 @@
20
<supportedFramework version="v3.0" />
21
-->
22
23
- <!-- Example only. Replace the host/@assemblyName attribute with assembly that implements BootstrapperApplication. -->
24
- <host assemblyName="AssemblyWithClassThatInheritsFromBootstrapperApplication" />
23
+ <!-- Example only. Replace the host/@assemblyName attribute with assembly that implements IBootstrapperApplicationFactory. -->
24
+ <host assemblyName="AssemblyWithClassThatInheritsFromBootstrapperApplicationFactory" />
25
</wix.bootstrapper>
26
</configuration>