<RelatedProducts> Element (ClickOnce Bootstrapper)
The RelatedProducts
element defines other products that either depend upon or are included in the current product.
<RelatedProducts>
<DependsOnProduct
Code
>
<IncludesProduct
Code
>
</RelatedProducts>
Elements and Attributes
The RelatedProducts
element is a child of the Product
element. It has no attributes.
DependsOnProduct
The DependsOnProduct
element signifies that the current product depends upon the named product, and that the named product should be installed before the current one. It is a child of the RelatedProducts
element. A RelatedProducts
element might have one or more DependsOnProduct
elements.
DependsOnProduct
has the following attribute.
Attribute | Description |
---|---|
|
The code name of the included product, as specified by the |
IncludesProduct
The IncludesProduct
element signifies that a product is included with the current install, and does not require a separate installation. It is a child of the RelatedProducts
element. A RelatedProducts
element might have one or more IncludesProduct
elements.
IncludesProduct
has the following attribute.
Attribute | Description |
---|---|
|
The code name of the included product, as specified by the |
Example
The following code example specifies that the Microsoft Installer is installed with the .NET Framework, and therefore will not need a separate installation.
<RelatedProducts>
<IncludesProduct Code="Microsoft.Windows.Installer.2.0" />
</RelatedProducts>