diff options
| author | Rob Mensching <rob@firegiant.com> | 2018-08-01 03:02:34 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2018-08-01 03:02:34 -0700 |
| commit | 52005c7e6917f9866dd0b0de6993def16a72ed4b (patch) | |
| tree | 59e32ad17a3ca5915c4cddbeaa83b58a73f0c3a5 /src/WixToolset.Core/Link | |
| parent | 79473d778b6cc4c8eec93b92e3b244aed904dac1 (diff) | |
| download | wix-52005c7e6917f9866dd0b0de6993def16a72ed4b.tar.gz wix-52005c7e6917f9866dd0b0de6993def16a72ed4b.tar.bz2 wix-52005c7e6917f9866dd0b0de6993def16a72ed4b.zip | |
Major reduction in public surface area of WixToolset.Core
Diffstat (limited to 'src/WixToolset.Core/Link')
7 files changed, 13 insertions, 13 deletions
diff --git a/src/WixToolset.Core/Link/ConnectToFeature.cs b/src/WixToolset.Core/Link/ConnectToFeature.cs index bc85426a..dd95f2db 100644 --- a/src/WixToolset.Core/Link/ConnectToFeature.cs +++ b/src/WixToolset.Core/Link/ConnectToFeature.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 | ||
| 3 | namespace WixToolset.Link | 3 | namespace WixToolset.Core.Link |
| 4 | { | 4 | { |
| 5 | using System.Collections.Generic; | 5 | using System.Collections.Generic; |
| 6 | using WixToolset.Data; | 6 | using WixToolset.Data; |
| @@ -8,7 +8,7 @@ namespace WixToolset.Link | |||
| 8 | /// <summary> | 8 | /// <summary> |
| 9 | /// Object that connects things (components/modules) to features. | 9 | /// Object that connects things (components/modules) to features. |
| 10 | /// </summary> | 10 | /// </summary> |
| 11 | public sealed class ConnectToFeature | 11 | internal class ConnectToFeature |
| 12 | { | 12 | { |
| 13 | /// <summary> | 13 | /// <summary> |
| 14 | /// Creates a new connect to feature. | 14 | /// Creates a new connect to feature. |
diff --git a/src/WixToolset.Core/Link/ConnectToFeatureCollection.cs b/src/WixToolset.Core/Link/ConnectToFeatureCollection.cs index 8dd0d22c..b7874527 100644 --- a/src/WixToolset.Core/Link/ConnectToFeatureCollection.cs +++ b/src/WixToolset.Core/Link/ConnectToFeatureCollection.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 | ||
| 3 | namespace WixToolset.Link | 3 | namespace WixToolset.Core.Link |
| 4 | { | 4 | { |
| 5 | using System; | 5 | using System; |
| 6 | using System.Collections; | 6 | using System.Collections; |
| @@ -8,7 +8,7 @@ namespace WixToolset.Link | |||
| 8 | /// <summary> | 8 | /// <summary> |
| 9 | /// Hash collection of connect to feature objects. | 9 | /// Hash collection of connect to feature objects. |
| 10 | /// </summary> | 10 | /// </summary> |
| 11 | public sealed class ConnectToFeatureCollection : ICollection | 11 | internal class ConnectToFeatureCollection : ICollection |
| 12 | { | 12 | { |
| 13 | private Hashtable collection; | 13 | private Hashtable collection; |
| 14 | 14 | ||
diff --git a/src/WixToolset.Core/Link/ConnectToModule.cs b/src/WixToolset.Core/Link/ConnectToModule.cs index d6a8338e..4380e12c 100644 --- a/src/WixToolset.Core/Link/ConnectToModule.cs +++ b/src/WixToolset.Core/Link/ConnectToModule.cs | |||
| @@ -1,11 +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. | 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 | ||
| 3 | namespace WixToolset.Link | 3 | namespace WixToolset.Core.Link |
| 4 | { | 4 | { |
| 5 | /// <summary> | 5 | /// <summary> |
| 6 | /// Object that connects things to modules. | 6 | /// Object that connects things to modules. |
| 7 | /// </summary> | 7 | /// </summary> |
| 8 | public sealed class ConnectToModule | 8 | internal class ConnectToModule |
| 9 | { | 9 | { |
| 10 | private string childId; | 10 | private string childId; |
| 11 | private string module; | 11 | private string module; |
diff --git a/src/WixToolset.Core/Link/ConnectToModuleCollection.cs b/src/WixToolset.Core/Link/ConnectToModuleCollection.cs index 6595487f..e0f96ffb 100644 --- a/src/WixToolset.Core/Link/ConnectToModuleCollection.cs +++ b/src/WixToolset.Core/Link/ConnectToModuleCollection.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 | ||
| 3 | namespace WixToolset.Link | 3 | namespace WixToolset.Core.Link |
| 4 | { | 4 | { |
| 5 | using System; | 5 | using System; |
| 6 | using System.Collections; | 6 | using System.Collections; |
| @@ -8,7 +8,7 @@ namespace WixToolset.Link | |||
| 8 | /// <summary> | 8 | /// <summary> |
| 9 | /// Hash collection of connect to module objects. | 9 | /// Hash collection of connect to module objects. |
| 10 | /// </summary> | 10 | /// </summary> |
| 11 | public sealed class ConnectToModuleCollection : ICollection | 11 | internal class ConnectToModuleCollection : ICollection |
| 12 | { | 12 | { |
| 13 | private Hashtable collection; | 13 | private Hashtable collection; |
| 14 | 14 | ||
diff --git a/src/WixToolset.Core/Link/ReportConflictingSymbolsCommand.cs b/src/WixToolset.Core/Link/ReportConflictingSymbolsCommand.cs index 23fac864..8d818ad9 100644 --- a/src/WixToolset.Core/Link/ReportConflictingSymbolsCommand.cs +++ b/src/WixToolset.Core/Link/ReportConflictingSymbolsCommand.cs | |||
| @@ -1,13 +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. | 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 | ||
| 3 | namespace WixToolset.Link | 3 | namespace WixToolset.Core.Link |
| 4 | { | 4 | { |
| 5 | using System.Collections.Generic; | 5 | using System.Collections.Generic; |
| 6 | using System.Linq; | 6 | using System.Linq; |
| 7 | using WixToolset.Data; | 7 | using WixToolset.Data; |
| 8 | using WixToolset.Extensibility.Services; | 8 | using WixToolset.Extensibility.Services; |
| 9 | 9 | ||
| 10 | public class ReportConflictingSymbolsCommand | 10 | internal class ReportConflictingSymbolsCommand |
| 11 | { | 11 | { |
| 12 | public ReportConflictingSymbolsCommand(IMessaging messaging, IEnumerable<Symbol> possibleConflicts, IEnumerable<IntermediateSection> resolvedSections) | 12 | public ReportConflictingSymbolsCommand(IMessaging messaging, IEnumerable<Symbol> possibleConflicts, IEnumerable<IntermediateSection> resolvedSections) |
| 13 | { | 13 | { |
diff --git a/src/WixToolset.Core/Link/ResolveReferencesCommand.cs b/src/WixToolset.Core/Link/ResolveReferencesCommand.cs index c05464e9..0188f9ac 100644 --- a/src/WixToolset.Core/Link/ResolveReferencesCommand.cs +++ b/src/WixToolset.Core/Link/ResolveReferencesCommand.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 | ||
| 3 | namespace WixToolset.Link | 3 | namespace WixToolset.Core.Link |
| 4 | { | 4 | { |
| 5 | using System; | 5 | using System; |
| 6 | using System.Collections.Generic; | 6 | using System.Collections.Generic; |
diff --git a/src/WixToolset.Core/Link/WixGroupingOrdering.cs b/src/WixToolset.Core/Link/WixGroupingOrdering.cs index 50c4d8d2..4e89e607 100644 --- a/src/WixToolset.Core/Link/WixGroupingOrdering.cs +++ b/src/WixToolset.Core/Link/WixGroupingOrdering.cs | |||
| @@ -16,7 +16,7 @@ namespace WixToolset.Core.Link | |||
| 16 | /// <summary> | 16 | /// <summary> |
| 17 | /// Grouping and Ordering class of the WiX toolset. | 17 | /// Grouping and Ordering class of the WiX toolset. |
| 18 | /// </summary> | 18 | /// </summary> |
| 19 | internal sealed class WixGroupingOrdering | 19 | internal class WixGroupingOrdering |
| 20 | { | 20 | { |
| 21 | private IMessaging messageHandler; | 21 | private IMessaging messageHandler; |
| 22 | private List<string> groupTypes; | 22 | private List<string> groupTypes; |
| @@ -679,7 +679,7 @@ namespace WixToolset.Core.Link | |||
| 679 | /// <summary> | 679 | /// <summary> |
| 680 | /// Helper IComparer class to make ordering easier. | 680 | /// Helper IComparer class to make ordering easier. |
| 681 | /// </summary> | 681 | /// </summary> |
| 682 | internal sealed class AfterItemComparer : IComparer<Item> | 682 | internal class AfterItemComparer : IComparer<Item> |
| 683 | { | 683 | { |
| 684 | public int Compare(Item x, Item y) | 684 | public int Compare(Item x, Item y) |
| 685 | { | 685 | { |
