BUILD: Updated WIX to v3.7.917.0
This commit is contained in:
parent
92975d7272
commit
2d9c8fd86d
171 changed files with 2597 additions and 200 deletions
Binary file not shown.
Binary file not shown.
226
tools/WIX/doc/Dependency.xsd
Normal file
226
tools/WIX/doc/Dependency.xsd
Normal file
|
@ -0,0 +1,226 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<copyright file="Dependency.xsd" company="Outercurve Foundation">
|
||||
Copyright (c) 2004, Outercurve Foundation.
|
||||
This software is released under Microsoft Reciprocal License (MS-RL).
|
||||
The license and further copyright text can be found in the file
|
||||
LICENSE.TXT at the root directory of the distribution.
|
||||
</copyright>
|
||||
-->
|
||||
<xs:schema xmlns:html="http://www.w3.org/1999/xhtml" xmlns:wix="http://schemas.microsoft.com/wix/2006/wi" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xse="http://schemas.microsoft.com/wix/2005/XmlSchemaExtension" targetNamespace="http://schemas.microsoft.com/wix/DependencyExtension" xmlns="http://schemas.microsoft.com/wix/DependencyExtension">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
The source code schema for the Windows Installer XML Toolset Dependency Extension.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:element name="Provides">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Describes the information for this product or feature that serves as a dependency of other products or features.
|
||||
</xs:documentation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="ExePackage" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="MsiPackage" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="MspPackage" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="MsuPackage" />
|
||||
<xse:remarks>
|
||||
<html:p>
|
||||
This element is required for any product, feature, or bundle that will use the Dependency feature to properly reference count
|
||||
other products or features. It should be authored into a component that is always installed and removed with the
|
||||
product or features that contain it. This guarantees that product dependencies are not removed before those products that
|
||||
depend on them.
|
||||
</html:p>
|
||||
<html:p>
|
||||
The @Key attribute should identify a version range for your product that you guarantee will be backward compatible.
|
||||
This key is designed to persist throughout compatible upgrades so that dependent products do not have to be reinstalled
|
||||
and will not prevent your product from being upgraded. If this attribute is not authored, the value is the ProductCode
|
||||
and will not automatically support upgrades.
|
||||
</html:p>
|
||||
<html:p>
|
||||
By default this uses the Product/@Id attribute value, which may be automatically generated.
|
||||
</html:p>
|
||||
</xse:remarks>
|
||||
<xse:howtoRef href="author_product_dependencies.htm">How To: Author product dependencies</xse:howtoRef>
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element ref="Requires" />
|
||||
<xs:element ref="RequiresRef" />
|
||||
</xs:choice>
|
||||
<xs:attribute name="Id" type="xs:string">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Dependency provider identity. If this attribute is not specified, an identifier will be generated automatically.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Key" type="xs:string">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Optional unique registry key name that identifies a product version range on which other products can depend.
|
||||
This attribute is required in package authoring, but optional for components.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Version" type="VersionType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
The version of the package. For MSI packages, the ProductVersion will be used by default
|
||||
and this attribute should not be specified.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="DisplayName" type="xs:string">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Optional display name of the package. For MSI packages, the ProductName will be used by default.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Requires">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Describes a dependency on a provider for the current component or package.
|
||||
</xs:documentation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Bundle" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Fragment" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Module" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Product" />
|
||||
<xse:remarks>
|
||||
<html:p>
|
||||
This element declares a dependency on any product that uses the Provides element. If that product is uninstalled
|
||||
before a product that requires it, the uninstall will err or warn the user that other products are installed
|
||||
which depend on that product. This behavior can be modified by changing the attribute values on the Requires element.
|
||||
</html:p>
|
||||
<html:p>
|
||||
If you do not nest this element under a Provides element, you must specify the @Id attribute
|
||||
so that it can be referenced by a RequiresRef element nested under a Provides element.
|
||||
</html:p>
|
||||
</xse:remarks>
|
||||
<xse:seeAlso ref="RequiresRef" />
|
||||
<xse:howtoRef href="author_product_dependencies.htm">How To: Author product dependencies</xse:howtoRef>
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" type="xs:string">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Dependency requirement identity. If this attribute is not specified, an identifier will be generated automatically.
|
||||
If this element is not authored under a Provides element, this attribute is required.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="ProviderKey" type="xs:string" use="required">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
The unique registry key name for the dependency provider to require during installation of this product.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Minimum" type="VersionType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
The minimum version of the dependency provider required to be installed. The default is unbound.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Maximum" type="VersionType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
The maximum version of the dependency provider required to be installed. The default is unbound.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="IncludeMinimum" type="YesNoType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Set to "yes" to make the range of dependency provider versions required include the value specified in Minimum.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="IncludeMaximum" type="YesNoType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Set to "yes" to make the range of dependency provider versions required include the value specified in Maximum.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="RequiresRef">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
References existing authoring for a dependency on a provider for the current component or package.
|
||||
</xs:documentation>
|
||||
<xs:appinfo>
|
||||
<xse:remarks>
|
||||
<html:p>
|
||||
This element references a dependency on any product that uses the Provides element. If that product is uninstalled
|
||||
before a product that requires it, the uninstall will err or warn the user that other products are installed
|
||||
which depend on that product. This behavior can be modified by changing the attribute values on the Requires element.
|
||||
</html:p>
|
||||
</xse:remarks>
|
||||
<xse:seeAlso ref="Requires" />
|
||||
<xse:howtoRef href="author_product_dependencies.htm">How To: Author product dependencies</xse:howtoRef>
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" type="xs:string" use="required">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
The identifier of the Requires element to reference.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:attribute name="ProviderKey" type="xs:string">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Optional attribute to explicitly author the provider key for the entire bundle.
|
||||
</xs:documentation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Bundle" />
|
||||
<xse:remarks>
|
||||
<html:p>
|
||||
This provider key is designed to persist throughout compatible upgrades so that dependent bundles do not have to be reinstalled
|
||||
and will not prevent your product from being upgraded. If this attribute is not authored, the value is the
|
||||
automatically-generated bundle ID and will not automatically support upgrades.
|
||||
</html:p>
|
||||
<html:p>
|
||||
Only a single provider key is supported for bundles. To author that your bundle provides additional features via
|
||||
packages, author different provider keys for your packages.
|
||||
</html:p>
|
||||
</xse:remarks>
|
||||
<xse:seeAlso ref="Provides" />
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:simpleType name="VersionType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Values of this type will look like: "x.x.x.x" where x is an integer from 0 to 65534.
|
||||
This can also be a preprocessor, binder, or WiX variable.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="(\d{1,5}\.){3}\d{1,5}|[!$]\((var|bind|wix)\.[_A-Za-z][\w\.]*\)" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="YesNoType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Values of this type will either be "yes" or "no".
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="no" />
|
||||
<xs:enumeration value="yes" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
242
tools/WIX/doc/IsolatedApp.xsd
Normal file
242
tools/WIX/doc/IsolatedApp.xsd
Normal file
|
@ -0,0 +1,242 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<copyright file="IsolatedApp.xsd" company="Outercurve Foundation">
|
||||
Copyright (c) 2004, Outercurve Foundation.
|
||||
This software is released under Microsoft Reciprocal License (MS-RL).
|
||||
The license and further copyright text can be found in the file
|
||||
LICENSE.TXT at the root directory of the distribution.
|
||||
</copyright>
|
||||
-->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns:html="http://www.w3.org/1999/xhtml"
|
||||
targetNamespace="http://wix.sourceforge.net/schemas/clickthrough/isolatedapp/2006"
|
||||
xmlns="http://wix.sourceforge.net/schemas/clickthrough/isolatedapp/2006">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Schema for describing Isolated Applications.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
||||
<xs:element name="IsolatedApp">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="Package"/>
|
||||
<xs:element ref="Application"/>
|
||||
<xs:element ref="PreviousFeed" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Package">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="1">
|
||||
<xs:element ref="Description"/>
|
||||
<xs:element ref="Feed"/>
|
||||
<xs:element ref="Icon"/>
|
||||
<xs:element ref="Id"/>
|
||||
<xs:element ref="Manufacturer"/>
|
||||
<xs:element ref="UpdateRate"/>
|
||||
<xs:element ref="Version"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Application">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="1">
|
||||
<xs:element ref="Details"/>
|
||||
<xs:element ref="EntryPoint"/>
|
||||
<xs:element ref="Icon"/>
|
||||
<xs:element ref="Id"/>
|
||||
<xs:element ref="Name"/>
|
||||
<xs:element ref="Source"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="PreviousFeed">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Description">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Details">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="EntryPoint">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:annotation><xs:documentation></xs:documentation></xs:annotation>
|
||||
<xs:attribute name="PackageVersion" type="xs:boolean" use="optional">
|
||||
<xs:annotation>
|
||||
<xs:documentation></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Feed">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Id">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="uuid"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Icon">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:annotation><xs:documentation></xs:documentation></xs:annotation>
|
||||
<xs:attribute name="Index" type="xs:integer" use="optional">
|
||||
<xs:annotation>
|
||||
<xs:documentation></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Manufacturer">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Name">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Source">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="UpdateRate">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:integer"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Version">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="VersionType"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<!-- - - - - - - - - - - Simple Type Definitions - - - - - - - - - - - - -->
|
||||
|
||||
<xs:simpleType name="uuid">
|
||||
<xs:annotation><xs:documentation>Values of this type will look like: "01234567-89AB-CDEF-0123-456789ABCDEF" or "{01234567-89AB-CDEF-0123-456789ABCDEF}".</xs:documentation></xs:annotation>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="[{(]?[0-9A-Fa-f]{8}\-?[0-9A-Fa-f]{4}\-?[0-9A-Fa-f]{4}\-?[0-9A-Fa-f]{4}\-?[0-9A-Fa-f]{12}[})]?"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="VersionType">
|
||||
<xs:annotation><xs:documentation>Values of this type will look like: "x.x.x.x" where x is an integer from 0 to 65534.</xs:documentation></xs:annotation>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="(\d{1,5}\.){3}\d{1,5}"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
262
tools/WIX/doc/OfficeAddin.xsd
Normal file
262
tools/WIX/doc/OfficeAddin.xsd
Normal file
|
@ -0,0 +1,262 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<copyright file="OfficeAddin.xsd" company="Outercurve Foundation">
|
||||
Copyright (c) 2004, Outercurve Foundation.
|
||||
This software is released under Microsoft Reciprocal License (MS-RL).
|
||||
The license and further copyright text can be found in the file
|
||||
LICENSE.TXT at the root directory of the distribution.
|
||||
</copyright>
|
||||
-->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns:html="http://www.w3.org/1999/xhtml"
|
||||
targetNamespace="http://wix.sourceforge.net/schemas/clickthrough/officeaddin/2006"
|
||||
xmlns="http://wix.sourceforge.net/schemas/clickthrough/officeaddin/2006">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Schema for describing Office Addins.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
||||
<xs:element name="OfficeAddin">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="Package"/>
|
||||
<xs:element ref="Application"/>
|
||||
<xs:element ref="PreviousFeed" minOccurs="0"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Package">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="1">
|
||||
<xs:element ref="Description"/>
|
||||
<xs:element ref="Feed"/>
|
||||
<xs:element ref="Icon"/>
|
||||
<xs:element ref="Id"/>
|
||||
<xs:element ref="Manufacturer"/>
|
||||
<xs:element ref="UpdateRate"/>
|
||||
<xs:element ref="Version"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Application">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="1">
|
||||
<xs:element ref="Details"/>
|
||||
<xs:element ref="EntryPoint"/>
|
||||
<xs:element ref="ExtendsApplication"/>
|
||||
<xs:element ref="Icon"/>
|
||||
<xs:element ref="Id"/>
|
||||
<xs:element ref="Name"/>
|
||||
<xs:element ref="Source"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="PreviousFeed">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Description">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Details">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="EntryPoint">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ExtendsApplication">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="SupportedOfficeApplications"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Feed">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Id">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="uuid"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Icon">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:annotation><xs:documentation></xs:documentation></xs:annotation>
|
||||
<xs:attribute name="Index" type="xs:integer" use="optional">
|
||||
<xs:annotation>
|
||||
<xs:documentation></xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Manufacturer">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Name">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Source">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="UpdateRate">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:integer"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="Version">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="VersionType"/>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<!-- - - - - - - - - - - Simple Type Definitions - - - - - - - - - - - - -->
|
||||
|
||||
<xs:simpleType name="SupportedOfficeApplications">
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="Excel2003" />
|
||||
<xs:enumeration value="Outlook2003" />
|
||||
<xs:enumeration value="PowerPoint2003" />
|
||||
<xs:enumeration value="Word2003" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="uuid">
|
||||
<xs:annotation><xs:documentation>Values of this type will look like: "01234567-89AB-CDEF-0123-456789ABCDEF" or "{01234567-89AB-CDEF-0123-456789ABCDEF}".</xs:documentation></xs:annotation>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="[{(]?[0-9A-Fa-f]{8}\-?[0-9A-Fa-f]{4}\-?[0-9A-Fa-f]{4}\-?[0-9A-Fa-f]{4}\-?[0-9A-Fa-f]{12}[})]?"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="VersionType">
|
||||
<xs:annotation><xs:documentation>Values of this type will look like: "x.x.x.x" where x is an integer from 0 to 65534.</xs:documentation></xs:annotation>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="(\d{1,5}\.){3}\d{1,5}"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
949
tools/WIX/doc/complus.xsd
Normal file
949
tools/WIX/doc/complus.xsd
Normal file
|
@ -0,0 +1,949 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<copyright file="complus.xsd" company="Outercurve Foundation">
|
||||
Copyright (c) 2004, Outercurve Foundation.
|
||||
This software is released under Microsoft Reciprocal License (MS-RL).
|
||||
The license and further copyright text can be found in the file
|
||||
LICENSE.TXT at the root directory of the distribution.
|
||||
</copyright>
|
||||
-->
|
||||
<xs:schema xmlns:html="http://www.w3.org/1999/xhtml"
|
||||
xmlns:wix="http://schemas.microsoft.com/wix/2006/wi"
|
||||
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns:xse="http://schemas.microsoft.com/wix/2005/XmlSchemaExtension"
|
||||
targetNamespace="http://schemas.microsoft.com/wix/ComPlusExtension"
|
||||
xmlns="http://schemas.microsoft.com/wix/ComPlusExtension">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
The source code schema for the Windows Installer XML Toolset COM+ Extension.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
|
||||
<xs:import namespace="http://schemas.microsoft.com/wix/2006/wi" />
|
||||
|
||||
<xs:element name="ComPlusPartition">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Fragment" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Module" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Product" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
Defines a COM+ partition. If this element is a child of a
|
||||
Component element, the partition will be created in association with this
|
||||
component. If the element is a child of any of the Fragment, Module or Product
|
||||
elements it is considered to be a locater, referencing an existing partition.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element ref="ComPlusPartitionRole" />
|
||||
<xs:element ref="ComPlusPartitionUser" />
|
||||
<xs:element ref="ComPlusApplication" />
|
||||
</xs:choice>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="PartitionId" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Id for the partition. This attribute can be omitted, in
|
||||
which case an id will be generated on install. If the element is a locater,
|
||||
this attribute can be omitted if a value is provided for the Name attribute.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Name" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Name of the partition. This attribute can be omitted if
|
||||
the element is a locater, and a value is provided for the PartitionId
|
||||
attribute.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Changeable" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="Deleteable" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="Description" use="optional" type="xs:string" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusPartitionRole">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Fragment" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Module" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Product" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
Defines a COM+ partition role. Partition roles can not be
|
||||
created; this element can only be used as a locater to reference an existing
|
||||
role.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element ref="ComPlusUserInPartitionRole" />
|
||||
<xs:element ref="ComPlusGroupInPartitionRole" />
|
||||
</xs:choice>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Partition" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
The id of a ComPlusPartition element representing the partition
|
||||
the role belongs to.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Name" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Name of the partition role.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusUserInPartitionRole">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
This element represents a user membership in a partition
|
||||
role. When the parent component of this element is installed, the user will be
|
||||
added to the associated partition role.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="PartitionRole" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
The id of a ComPlusPartitionRole element representing the
|
||||
partition the user should be added to.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="User" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Foreign key into the User table.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusGroupInPartitionRole">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
This element represents a security group membership in a
|
||||
partition role. When the parent component of this element is installed, the
|
||||
security group will be added to the associated partition role.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="PartitionRole" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
The id of a ComPlusPartitionRole element representing the
|
||||
partition the user should be added to.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Group" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Foreign key into the Group table.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusPartitionUser">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
Represents a default partition definition for a user. When
|
||||
the parent component of this element is installed, the default partition of the
|
||||
user will be set to the referenced partition.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Partition" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
The id of a ComPlusPartition element representing the
|
||||
partition that will be the default partition for the user.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="User" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Foreign key into the User table.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusApplication">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Fragment" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Module" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Product" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
Defines a COM+ application. If this element is a descendent
|
||||
of a Component element, the application will be created in association with
|
||||
this component. If the element is a child of any of the Fragment, Module or
|
||||
Product elements it is considered to be a locater, referencing an existing
|
||||
application.
|
||||
|
||||
If the element is a child of a ComPlusPartition element,
|
||||
or have its Partition attribute set, the application will be installed under
|
||||
the referenced partition.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element ref="ComPlusApplicationRole" />
|
||||
<xs:element ref="ComPlusAssembly" />
|
||||
</xs:choice>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Partition" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
If the element is not a child of a ComPlusPartition
|
||||
element, this attribute can be provided with the id of a ComPlusPartition
|
||||
element representing the partition the application belongs to.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="ApplicationId" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Id for the application. This attribute can be omitted, in
|
||||
which case an id will be generated on install. If the element is a locater,
|
||||
this attribute can be omitted if a value is provided for the Name attribute.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Name" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Name of the application. This attribute can be omitted if
|
||||
the element is a locater, and a value is provided for the PartitionId
|
||||
attribute.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="ThreeGigSupportEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="AccessChecksLevel" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="applicationLevel" />
|
||||
<xs:enumeration value="applicationComponentLevel" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Activation" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="inproc" />
|
||||
<xs:enumeration value="local" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="ApplicationAccessChecksEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="ApplicationDirectory" use="optional" type="xs:string" />
|
||||
<xs:attribute name="Authentication" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="default" />
|
||||
<xs:enumeration value="none" />
|
||||
<xs:enumeration value="connect" />
|
||||
<xs:enumeration value="call" />
|
||||
<xs:enumeration value="packet" />
|
||||
<xs:enumeration value="integrity" />
|
||||
<xs:enumeration value="privacy" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="AuthenticationCapability" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="none" />
|
||||
<xs:enumeration value="secureReference" />
|
||||
<xs:enumeration value="staticCloaking" />
|
||||
<xs:enumeration value="dynamicCloaking" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Changeable" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="CommandLine" use="optional" type="xs:string" />
|
||||
<xs:attribute name="ConcurrentApps" use="optional" type="xs:int" />
|
||||
<xs:attribute name="CreatedBy" use="optional" type="xs:string" />
|
||||
<xs:attribute name="CRMEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="CRMLogFile" use="optional" type="xs:string" />
|
||||
<xs:attribute name="Deleteable" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="Description" use="optional" type="xs:string" />
|
||||
<xs:attribute name="DumpEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="DumpOnException" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="DumpOnFailfast" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="DumpPath" use="optional" type="xs:string" />
|
||||
<xs:attribute name="EventsEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="Identity" use="optional" type="xs:string" />
|
||||
<xs:attribute name="ImpersonationLevel" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="anonymous" />
|
||||
<xs:enumeration value="identify" />
|
||||
<xs:enumeration value="impersonate" />
|
||||
<xs:enumeration value="delegate" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="IsEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="MaxDumpCount" use="optional" type="xs:int" />
|
||||
<xs:attribute name="Password" use="optional" type="xs:string" />
|
||||
<xs:attribute name="QCAuthenticateMsgs" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="secureApps" />
|
||||
<xs:enumeration value="off" />
|
||||
<xs:enumeration value="on" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="QCListenerMaxThreads" use="optional" type="xs:int" />
|
||||
<xs:attribute name="QueueListenerEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="QueuingEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="RecycleActivationLimit" use="optional" type="xs:int" />
|
||||
<xs:attribute name="RecycleCallLimit" use="optional" type="xs:int" />
|
||||
<xs:attribute name="RecycleExpirationTimeout" use="optional" type="xs:int" />
|
||||
<xs:attribute name="RecycleLifetimeLimit" use="optional" type="xs:int" />
|
||||
<xs:attribute name="RecycleMemoryLimit" use="optional" type="xs:int" />
|
||||
<xs:attribute name="Replicable" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="RunForever" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="ShutdownAfter" use="optional" type="xs:int" />
|
||||
<xs:attribute name="SoapActivated" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="SoapBaseUrl" use="optional" type="xs:string" />
|
||||
<xs:attribute name="SoapMailTo" use="optional" type="xs:string" />
|
||||
<xs:attribute name="SoapVRoot" use="optional" type="xs:string" />
|
||||
<xs:attribute name="SRPEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="SRPTrustLevel" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="disallowed" />
|
||||
<xs:enumeration value="fullyTrusted" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusApplicationRole">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Fragment" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Module" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Product" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
Defines an application role. If this element is a descendent
|
||||
of a Component element, the application role will be created in association
|
||||
with this component. If the element is a child of any of the Fragment, Module
|
||||
or Product elements it is considered to be a locater, referencing an existing
|
||||
application role.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element ref="ComPlusUserInApplicationRole" />
|
||||
<xs:element ref="ComPlusGroupInApplicationRole" />
|
||||
</xs:choice>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Application" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
If the element is not a child of a ComPlusApplication
|
||||
element, this attribute should be provided with the id of a
|
||||
ComPlusApplication element representing the application the role belongs to.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Name" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Name of the application role.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Description" use="optional" type="xs:string" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusUserInApplicationRole">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
This element represents a user membership in an
|
||||
application role. When the parent component of this element is installed, the
|
||||
user will be added to the associated application role. This element must be a descendent
|
||||
of a Component element; it can not be a child of a ComPlusApplicationRole
|
||||
locater element. To reference a locater element use the ApplicationRole
|
||||
attribute.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="ApplicationRole" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
If the element is not a child of a ComPlusApplicationRole
|
||||
element, this attribute should be provided with the id of a
|
||||
ComPlusApplicationRole element representing the application role the user is
|
||||
to be added to.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="User" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Foreign key into the User table.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusGroupInApplicationRole">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
This element represents a security group membership in an
|
||||
application role. When the parent component of this element is installed, the
|
||||
user will be added to the associated application role. This element must be a
|
||||
descendent of a Component element; it can not be a child of a
|
||||
ComPlusApplicationRole locater element. To reference a locater element use the
|
||||
ApplicationRole attribute.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="ApplicationRole" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
If the element is not a child of a ComPlusApplicationRole
|
||||
element, this attribute should be provided with the id of a
|
||||
ComPlusApplicationRole element representing the application role the user is
|
||||
to be added to.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Group" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Foreign key into the Group table.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusAssembly">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Represents a DLL or assembly to be registered with COM+. If
|
||||
this element is a child of a ComPlusApplication element, the assembly will be
|
||||
registered in this application. Other ways the Application attribute must be
|
||||
set to an application. The element must be a descendent of a Component element,
|
||||
it can not be a child of a ComPlusApplication locator element.
|
||||
</xs:documentation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
<xse:remarks>
|
||||
<html:p>
|
||||
When installing a native assembly, all components
|
||||
contained in the assembly must be represented as ComPlusComponent elements
|
||||
under this element. Any component not listed will not be removed during
|
||||
uninstall.
|
||||
</html:p>
|
||||
|
||||
<html:p>
|
||||
The fields DllPath, TlbPath and PSDllPath are formatted
|
||||
fields that should contain file paths to there respective file types. A typical
|
||||
value for DllPath for example, should be something like “[#MyAssembly_dll]”,
|
||||
where “MyAssembly_dll” is the key of the dll file in the File table.
|
||||
</html:p>
|
||||
|
||||
<html:p>
|
||||
<html:b>Warning</html:b>: The assembly name provided in the AssemblyName
|
||||
attribute must be a fully specified assembly name, if a partial name is
|
||||
provided a random assembly matching the partial name will be selected.
|
||||
</html:p>
|
||||
</xse:remarks>
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element ref="ComPlusAssemblyDependency" />
|
||||
<xs:element ref="ComPlusComponent" />
|
||||
</xs:choice>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Application" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
If the element is not a child of a ComPlusApplication
|
||||
element, this attribute should be provided with the id of a ComPlusApplication
|
||||
element representing the application the assembly is to be registered in.
|
||||
This attribute can be omitted for a .NET assembly even if the application is
|
||||
not a child of a ComPlusApplication element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="AssemblyName" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
The name of the assembly used to identify the assembly in
|
||||
the GAC. This attribute can be provided only if DllPathFromGAC is set to
|
||||
“yes”.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="DllPath" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
The path to locate the assembly DLL during registration.
|
||||
This attribute should be provided if DllPathFromGAC is not set to “yes”.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="TlbPath" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
An optional path to an external type lib for the assembly.
|
||||
This attribute must be provided if the Type attribute is set to “.net”.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="PSDllPath" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
An optional path to an external proxy/stub DLL for the assembly.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Type" use="required">
|
||||
<xs:annotation><xs:documentation>
|
||||
</xs:documentation></xs:annotation>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="native" />
|
||||
<xs:enumeration value=".net" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="EventClass" use="optional" type="YesNoType">
|
||||
<xs:annotation><xs:documentation>
|
||||
Indicates that the assembly is to be installed as an event
|
||||
class DLL. This attribute is only valid for native assemblies. The assembly
|
||||
will be installed with the COM+ catalog’s InstallEventClass() function.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="DllPathFromGAC" use="optional" type="YesNoType">
|
||||
<xs:annotation><xs:documentation>
|
||||
Indicates that the DLL path should be extracted from the
|
||||
GAC instead for being provided in the DllPath attribute. If this attribute is
|
||||
set to “yes”, the name of the assembly can be provided using the AssemblyName
|
||||
attribute. Or, if this AssemblyName attribute is missing, the name will be
|
||||
extracted from the MsiAssemblyName table using the id of the parent Component
|
||||
element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="RegisterInCommit" use="optional" type="YesNoType">
|
||||
<xs:annotation><xs:documentation>
|
||||
Indicates that the assembly should be installed in the
|
||||
commit custom action instead of the normal deferred custom action. This is
|
||||
necessary when installing .NET assemblies to the GAC in the same
|
||||
installation, as the assemblies are not visible in the GAC until after the
|
||||
InstallFinalize action has run.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusAssemblyDependency">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Defines a dependency between two assemblies. This element
|
||||
affects the order in which assembles are registered. Any assemblies referenced
|
||||
by this element are guarantied to be registered before, and unregistered after,
|
||||
the assembly referenced by the parent ComPlusAssembly element.
|
||||
</xs:documentation>
|
||||
<xs:appinfo>
|
||||
<xse:remarks>
|
||||
It is only necessary to explicitly specify dependencies between
|
||||
assemblies contained in the same package (MSI or MSM). Assemblies merged in to a
|
||||
package from a merge module will always be installed before any assemblies
|
||||
specified in the base package. Assemblies merged in from different merge
|
||||
modules are sequenced using the ModuleDependency MSI table. It is not possible
|
||||
to have cross dependencies between merge modules or have an assembly in a merge
|
||||
module depend on an assembly in the base package.
|
||||
</xse:remarks>
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="RequiredAssembly" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Reference to the id of the assembly required by the parent
|
||||
ComPlusAssembly element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusComponent">
|
||||
<xs:annotation><xs:documentation>
|
||||
Represents a COM+ component in an assembly.
|
||||
</xs:documentation></xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element ref="ComPlusRoleForComponent" />
|
||||
<xs:element ref="ComPlusInterface" />
|
||||
<xs:element ref="ComPlusSubscription" />
|
||||
</xs:choice>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="CLSID" use="required" type="uuid">
|
||||
<xs:annotation><xs:documentation>
|
||||
CLSID of the component.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="AllowInprocSubscribers" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="ComponentAccessChecksEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="ComponentTransactionTimeout" use="optional" type="xs:int" />
|
||||
<xs:attribute name="ComponentTransactionTimeoutEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="COMTIIntrinsics" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="ConstructionEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="ConstructorString" use="optional" type="xs:string" />
|
||||
<xs:attribute name="CreationTimeout" use="optional" type="xs:int" />
|
||||
<xs:attribute name="Description" use="optional" type="xs:string" />
|
||||
<xs:attribute name="EventTrackingEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="ExceptionClass" use="optional" type="xs:string" />
|
||||
<xs:attribute name="FireInParallel" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="IISIntrinsics" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="InitializesServerApplication" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="IsEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="IsPrivateComponent" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="JustInTimeActivation" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="LoadBalancingSupported" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="MaxPoolSize" use="optional" type="xs:int" />
|
||||
<xs:attribute name="MinPoolSize" use="optional" type="xs:int" />
|
||||
<xs:attribute name="MultiInterfacePublisherFilterCLSID" use="optional" type="xs:string" />
|
||||
<xs:attribute name="MustRunInClientContext" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="MustRunInDefaultContext" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="ObjectPoolingEnabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="PublisherID" use="optional" type="xs:string" />
|
||||
<xs:attribute name="SoapAssemblyName" use="optional" type="xs:string" />
|
||||
<xs:attribute name="SoapTypeName" use="optional" type="xs:string" />
|
||||
<xs:attribute name="Synchronization" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="ignored" />
|
||||
<xs:enumeration value="none" />
|
||||
<xs:enumeration value="supported" />
|
||||
<xs:enumeration value="required" />
|
||||
<xs:enumeration value="requiresNew" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Transaction" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="ignored" />
|
||||
<xs:enumeration value="none" />
|
||||
<xs:enumeration value="supported" />
|
||||
<xs:enumeration value="required" />
|
||||
<xs:enumeration value="requiresNew" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="TxIsolationLevel" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="any" />
|
||||
<xs:enumeration value="readUnCommitted" />
|
||||
<xs:enumeration value="readCommitted" />
|
||||
<xs:enumeration value="repeatableRead" />
|
||||
<xs:enumeration value="serializable" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusRoleForComponent">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
Represents a role assignment to a COM+ component.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Component" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
If the element is not a child of a ComPlusComponent
|
||||
element, this attribute should be provided with the id of a ComPlusComponent
|
||||
element representing the component the role is to be added to.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="ApplicationRole" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Id of the ComPlusApplicationRole element representing the
|
||||
role that shall be granted access to the component.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusInterface">
|
||||
<xs:annotation><xs:documentation>
|
||||
Represents an interface for a COM+ component.
|
||||
</xs:documentation></xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element ref="ComPlusRoleForInterface" />
|
||||
<xs:element ref="ComPlusMethod" />
|
||||
</xs:choice>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="IID" use="required" type="uuid">
|
||||
<xs:annotation><xs:documentation>
|
||||
IID of the interface.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Description" use="optional" type="xs:string" />
|
||||
<xs:attribute name="QueuingEnabled" use="optional" type="YesNoType" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusRoleForInterface">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
Represents a role assignment to an interface.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Interface" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
If the element is not a child of a ComPlusInterface
|
||||
element, this attribute should be provided with the id of a ComPlusInterface
|
||||
element representing the interface the role is to be added to.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="ApplicationRole" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Id of the ComPlusApplicationRole element representing the
|
||||
role that shall be granted access to the interface.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusMethod">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Represents a method for an interface.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref="ComPlusRoleForMethod" minOccurs="0" maxOccurs="unbounded" />
|
||||
</xs:sequence>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Index" use="optional" type="xs:int">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Dispatch id of the method. If this attribute is not set a
|
||||
value must be provided for the Name attribute.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Name" use="optional" type="xs:string">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
Name of the method. If this attribute is not set a value
|
||||
must be provided for the Index attribute.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="AutoComplete" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="Description" use="optional" type="xs:string" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusRoleForMethod">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
Represents a role assignment to a COM+ method.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Method" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
If the element is not a child of a ComPlusMethod element,
|
||||
this attribute should be provided with the id of a ComPlusMethod element
|
||||
representing the method the role is to be added to.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="ApplicationRole" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Id of the ComPlusApplicationRole element representing the
|
||||
role that shall be granted access to the method.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name="ComPlusSubscription">
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Component" />
|
||||
</xs:appinfo>
|
||||
<xs:documentation>
|
||||
Defines an event subscription for a COM+ component.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Id" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Identifier for the element.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Component" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
If the element is not a child of a ComPlusComponent
|
||||
element, this attribute should be provided with the id of a ComPlusComponent
|
||||
element representing the component the subscription is to be created for.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="SubscriptionId" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Id of the subscription. If a value is not provided for
|
||||
this attribute, an id will be generated during installation.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Name" use="required" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Name of the subscription.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="EventCLSID" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
CLSID of the event class for the subscription. If a value
|
||||
for this attribute is not provided, a value for the PublisherID attribute
|
||||
must be provided.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="PublisherID" use="optional" type="xs:string">
|
||||
<xs:annotation><xs:documentation>
|
||||
Publisher id for the subscription. If a value for this
|
||||
attribute is not provided, a value for the EventCLSID attribute must be
|
||||
provided.
|
||||
</xs:documentation></xs:annotation>
|
||||
</xs:attribute>
|
||||
<xs:attribute name="Description" use="optional" type="xs:string" />
|
||||
<xs:attribute name="Enabled" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="EventClassPartitionID" use="optional" type="xs:string" />
|
||||
<xs:attribute name="FilterCriteria" use="optional" type="xs:string" />
|
||||
<xs:attribute name="InterfaceID" use="optional" type="xs:string" />
|
||||
<xs:attribute name="MachineName" use="optional" type="xs:string" />
|
||||
<xs:attribute name="MethodName" use="optional" type="xs:string" />
|
||||
<xs:attribute name="PerUser" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="Queued" use="optional" type="YesNoType" />
|
||||
<xs:attribute name="SubscriberMoniker" use="optional" type="xs:string" />
|
||||
<xs:attribute name="UserName" use="optional" type="xs:string" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:simpleType name="YesNoType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Values of this type will either be "yes" or "no".</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:restriction base="xs:NMTOKEN">
|
||||
<xs:enumeration value="no" />
|
||||
<xs:enumeration value="yes" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
<xs:simpleType name="uuid">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Values of this type will look like: "01234567-89AB-CDEF-0123-456789ABCDEF".</xs:documentation>
|
||||
</xs:annotation>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:pattern value="[0-9A-Fa-f]{8}\-?[0-9A-Fa-f]{4}\-?[0-9A-Fa-f]{4}\-?[0-9A-Fa-f]{4}\-?[0-9A-Fa-f]{12}" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
|
||||
</xs:schema>
|
Binary file not shown.
|
@ -74,7 +74,6 @@
|
|||
<xs:element ref="Catalog" minOccurs="0" maxOccurs="unbounded" />
|
||||
<xs:element ref="BootstrapperApplication" minOccurs="0" maxOccurs="1" />
|
||||
<xs:element ref="BootstrapperApplicationRef" minOccurs="0" maxOccurs="1" />
|
||||
<xs:element ref="UX" minOccurs="0" maxOccurs="1" />
|
||||
<xs:element ref="OptionalUpdateRegistration" minOccurs="0" maxOccurs="1" />
|
||||
<xs:element ref="Chain" minOccurs="1" maxOccurs="1" />
|
||||
<xs:element ref="Container" />
|
||||
|
@ -82,6 +81,7 @@
|
|||
<xs:element ref="PayloadGroup" />
|
||||
<xs:element ref="PayloadGroupRef" />
|
||||
<xs:element ref="RelatedBundle" />
|
||||
<xs:element ref="Update" />
|
||||
<xs:element ref="Variable" />
|
||||
<xs:element ref="WixVariable" />
|
||||
<xs:any namespace="##other" processContents="lax">
|
||||
|
@ -1368,12 +1368,33 @@
|
|||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Update">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Defines the update for a Bundle.</xs:documentation>
|
||||
<xs:appinfo>
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Bundle" />
|
||||
<xse:parent namespace="http://schemas.microsoft.com/wix/2006/wi" ref="Fragment" />
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Location" type="xs:string" use="required">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
The absolute path or URL to check for an update bundle. Currently the engine provides this value
|
||||
in the IBootstrapperApplication::OnDetectUpdateBegin() and otherwise ignores the value. In the
|
||||
future the engine will be able to acquire an update bundle from the location and determine if it
|
||||
is newer than the current executing bundle.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Product">
|
||||
<xs:annotation>
|
||||
<xs:documentation>
|
||||
The Product element is analogous to the main function in a C program. When linking, only one Product section
|
||||
can be given to the linker to produce a successful result. Using this element creates an msi file.
|
||||
</xs:documentation>
|
||||
The Product element is analogous to the main function in a C program. When linking, only one Product section
|
||||
can be given to the linker to produce a successful result. Using this element creates an msi file.
|
||||
</xs:documentation>
|
||||
<xs:appinfo>
|
||||
<xse:remarks>
|
||||
<html:p>You can specify any valid Windows code page by integer like 1252, or by web name like Windows-1252. See <html:a href="codepage.htm">Code Pages</html:a> for more information.</html:p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue