diff options
Diffstat (limited to 'src/wixext/bal.xsd')
-rw-r--r-- | src/wixext/bal.xsd | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/wixext/bal.xsd b/src/wixext/bal.xsd index 73f10540..3081a279 100644 --- a/src/wixext/bal.xsd +++ b/src/wixext/bal.xsd | |||
@@ -186,6 +186,35 @@ | |||
186 | </xs:complexType> | 186 | </xs:complexType> |
187 | </xs:element> | 187 | </xs:element> |
188 | 188 | ||
189 | <xs:element name="ManagedBootstrapperApplicationPrereqInformation"> | ||
190 | <xs:annotation> | ||
191 | <xs:documentation> | ||
192 | Adds license information for a prereq package, should only be used when unable to add the license attributes to the package directly. | ||
193 | </xs:documentation> | ||
194 | <xs:appinfo> | ||
195 | <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" /> | ||
196 | <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" /> | ||
197 | </xs:appinfo> | ||
198 | </xs:annotation> | ||
199 | <xs:complexType> | ||
200 | <xs:attribute name="PackageId" type="xs:string" use="required"> | ||
201 | <xs:annotation> | ||
202 | <xs:documentation>Id of the target package.</xs:documentation> | ||
203 | </xs:annotation> | ||
204 | </xs:attribute> | ||
205 | <xs:attribute name="LicenseFile" type="xs:string"> | ||
206 | <xs:annotation> | ||
207 | <xs:documentation>Source file of the license. May not be used with LicenseUrl.</xs:documentation> | ||
208 | </xs:annotation> | ||
209 | </xs:attribute> | ||
210 | <xs:attribute name="LicenseUrl" type="xs:string"> | ||
211 | <xs:annotation> | ||
212 | <xs:documentation>Source url of the license. May not be used with LicenseFile.</xs:documentation> | ||
213 | </xs:annotation> | ||
214 | </xs:attribute> | ||
215 | </xs:complexType> | ||
216 | </xs:element> | ||
217 | |||
189 | <xs:attribute name="BAFunctions" type="YesNoType"> | 218 | <xs:attribute name="BAFunctions" type="YesNoType"> |
190 | <xs:annotation> | 219 | <xs:annotation> |
191 | <xs:documentation> | 220 | <xs:documentation> |