diff options
Diffstat (limited to 'src/wix/WixInternal.Core.TestPackage/ExtractBAContainerResult.cs')
-rw-r--r-- | src/wix/WixInternal.Core.TestPackage/ExtractBAContainerResult.cs | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/wix/WixInternal.Core.TestPackage/ExtractBAContainerResult.cs b/src/wix/WixInternal.Core.TestPackage/ExtractBAContainerResult.cs index ab45d68e..1d4ba47f 100644 --- a/src/wix/WixInternal.Core.TestPackage/ExtractBAContainerResult.cs +++ b/src/wix/WixInternal.Core.TestPackage/ExtractBAContainerResult.cs | |||
@@ -13,14 +13,14 @@ namespace WixInternal.Core.TestPackage | |||
13 | public class ExtractBAContainerResult | 13 | public class ExtractBAContainerResult |
14 | { | 14 | { |
15 | /// <summary> | 15 | /// <summary> |
16 | /// <see cref="XmlDocument"/> for BundleExtensionData.xml. | 16 | /// <see cref="XmlDocument"/> for BootstrapperExtensionData.xml. |
17 | /// </summary> | 17 | /// </summary> |
18 | public XmlDocument BundleExtensionDataDocument { get; set; } | 18 | public XmlDocument BootstrapperExtensionDataDocument { get; set; } |
19 | 19 | ||
20 | /// <summary> | 20 | /// <summary> |
21 | /// <see cref="XmlNamespaceManager"/> for BundleExtensionData.xml. | 21 | /// <see cref="XmlNamespaceManager"/> for BootstrapperExtensionData.xml. |
22 | /// </summary> | 22 | /// </summary> |
23 | public XmlNamespaceManager BundleExtensionDataNamespaceManager { get; set; } | 23 | public XmlNamespaceManager BootstrapperExtensionDataNamespaceManager { get; set; } |
24 | 24 | ||
25 | /// <summary> | 25 | /// <summary> |
26 | /// <see cref="XmlDocument"/> for BootstrapperApplicationData.xml. | 26 | /// <see cref="XmlDocument"/> for BootstrapperApplicationData.xml. |
@@ -53,7 +53,7 @@ namespace WixInternal.Core.TestPackage | |||
53 | public bool? AttachedContainersSuccess { get; set; } | 53 | public bool? AttachedContainersSuccess { get; set; } |
54 | 54 | ||
55 | /// <summary> | 55 | /// <summary> |
56 | /// | 56 | /// |
57 | /// </summary> | 57 | /// </summary> |
58 | /// <returns></returns> | 58 | /// <returns></returns> |
59 | public ExtractBAContainerResult AssertSuccess() | 59 | public ExtractBAContainerResult AssertSuccess() |
@@ -77,12 +77,12 @@ namespace WixInternal.Core.TestPackage | |||
77 | } | 77 | } |
78 | 78 | ||
79 | /// <summary> | 79 | /// <summary> |
80 | /// Returns the relative path of the BundleExtension entry point dll in the given folder. | 80 | /// Returns the relative path of the BootstrapperExtension entry point dll in the given folder. |
81 | /// </summary> | 81 | /// </summary> |
82 | /// <param name="extractedBAContainerFolderPath"></param> | 82 | /// <param name="extractedBAContainerFolderPath"></param> |
83 | /// <param name="extensionId"></param> | 83 | /// <param name="extensionId"></param> |
84 | /// <returns></returns> | 84 | /// <returns></returns> |
85 | public string GetBundleExtensionFilePath(string extractedBAContainerFolderPath, string extensionId) | 85 | public string GetBootstrapperExtensionFilePath(string extractedBAContainerFolderPath, string extensionId) |
86 | { | 86 | { |
87 | var uxPayloads = this.SelectManifestNodes($"/burn:BurnManifest/burn:UX/burn:Payload[@Id='{extensionId}']"); | 87 | var uxPayloads = this.SelectManifestNodes($"/burn:BurnManifest/burn:UX/burn:Payload[@Id='{extensionId}']"); |
88 | var bextPayload = uxPayloads[0]; | 88 | var bextPayload = uxPayloads[0]; |
@@ -91,7 +91,7 @@ namespace WixInternal.Core.TestPackage | |||
91 | } | 91 | } |
92 | 92 | ||
93 | /// <summary> | 93 | /// <summary> |
94 | /// | 94 | /// |
95 | /// </summary> | 95 | /// </summary> |
96 | /// <param name="xpath">elements must have the 'ba' prefix</param> | 96 | /// <param name="xpath">elements must have the 'ba' prefix</param> |
97 | /// <returns></returns> | 97 | /// <returns></returns> |
@@ -101,7 +101,7 @@ namespace WixInternal.Core.TestPackage | |||
101 | } | 101 | } |
102 | 102 | ||
103 | /// <summary> | 103 | /// <summary> |
104 | /// | 104 | /// |
105 | /// </summary> | 105 | /// </summary> |
106 | /// <param name="xpath">elements must have the 'ba' prefix</param> | 106 | /// <param name="xpath">elements must have the 'ba' prefix</param> |
107 | /// <param name="ignoredAttributesByElementName">Attributes for which the value should be set to '*'.</param> | 107 | /// <param name="ignoredAttributesByElementName">Attributes for which the value should be set to '*'.</param> |
@@ -112,28 +112,28 @@ namespace WixInternal.Core.TestPackage | |||
112 | } | 112 | } |
113 | 113 | ||
114 | /// <summary> | 114 | /// <summary> |
115 | /// | 115 | /// |
116 | /// </summary> | 116 | /// </summary> |
117 | /// <param name="xpath">elements must have the 'be' prefix</param> | 117 | /// <param name="xpath">elements must have the 'be' prefix</param> |
118 | /// <returns></returns> | 118 | /// <returns></returns> |
119 | public XmlNodeList SelectBundleExtensionDataNodes(string xpath) | 119 | public XmlNodeList SelectBootstrapperExtensionDataNodes(string xpath) |
120 | { | 120 | { |
121 | return this.BundleExtensionDataDocument.SelectNodes(xpath, this.BundleExtensionDataNamespaceManager); | 121 | return this.BootstrapperExtensionDataDocument.SelectNodes(xpath, this.BootstrapperExtensionDataNamespaceManager); |
122 | } | 122 | } |
123 | 123 | ||
124 | /// <summary> | 124 | /// <summary> |
125 | /// | 125 | /// |
126 | /// </summary> | 126 | /// </summary> |
127 | /// <param name="xpath">elements must have the 'be' prefix</param> | 127 | /// <param name="xpath">elements must have the 'be' prefix</param> |
128 | /// <param name="ignoredAttributesByElementName">Attributes for which the value should be set to '*'.</param> | 128 | /// <param name="ignoredAttributesByElementName">Attributes for which the value should be set to '*'.</param> |
129 | /// <returns></returns> | 129 | /// <returns></returns> |
130 | public string[] GetBundleExtensionTestXmlLines(string xpath, Dictionary<string, List<string>> ignoredAttributesByElementName = null) | 130 | public string[] GetBootstrapperExtensionTestXmlLines(string xpath, Dictionary<string, List<string>> ignoredAttributesByElementName = null) |
131 | { | 131 | { |
132 | return this.SelectBundleExtensionDataNodes(xpath).GetTestXmlLines(ignoredAttributesByElementName); | 132 | return this.SelectBootstrapperExtensionDataNodes(xpath).GetTestXmlLines(ignoredAttributesByElementName); |
133 | } | 133 | } |
134 | 134 | ||
135 | /// <summary> | 135 | /// <summary> |
136 | /// | 136 | /// |
137 | /// </summary> | 137 | /// </summary> |
138 | /// <param name="xpath">elements must have the 'burn' prefix</param> | 138 | /// <param name="xpath">elements must have the 'burn' prefix</param> |
139 | /// <returns></returns> | 139 | /// <returns></returns> |
@@ -143,7 +143,7 @@ namespace WixInternal.Core.TestPackage | |||
143 | } | 143 | } |
144 | 144 | ||
145 | /// <summary> | 145 | /// <summary> |
146 | /// | 146 | /// |
147 | /// </summary> | 147 | /// </summary> |
148 | /// <param name="xpath">elements must have the 'burn' prefix</param> | 148 | /// <param name="xpath">elements must have the 'burn' prefix</param> |
149 | /// <param name="ignoredAttributesByElementName">Attributes for which the value should be set to '*'.</param> | 149 | /// <param name="ignoredAttributesByElementName">Attributes for which the value should be set to '*'.</param> |