aboutsummaryrefslogtreecommitdiff
path: root/src/xsd/dependency.xsd
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/xsd/dependency.xsd40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/xsd/dependency.xsd b/src/xsd/dependency.xsd
new file mode 100644
index 00000000..b06e081c
--- /dev/null
+++ b/src/xsd/dependency.xsd
@@ -0,0 +1,40 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- 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. -->
3
4
5<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
6 xmlns:xse="http://wixtoolset.org/schemas/XmlSchemaExtension"
7 xmlns:wxs="http://wixtoolset.org/schemas/v4/wxs"
8 targetNamespace="http://wixtoolset.org/schemas/v4/wxs/dependency"
9 xmlns="http://wixtoolset.org/schemas/v4/wxs/dependency">
10 <xs:annotation>
11 <xs:documentation>
12 The source code schema for the WiX Toolset Dependency Extension.
13 </xs:documentation>
14 </xs:annotation>
15
16 <xs:import namespace="http://wixtoolset.org/schemas/v4/wxs" />
17
18 <xs:attribute name="Check" type="wxs:YesNoTypeUnion">
19 <xs:annotation>
20 <xs:documentation>
21 When set to "yes", adds a custom action to prompt the user when dependencies are still on the computer. The default is "no".
22 </xs:documentation>
23 <xs:appinfo>
24 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Provides" />
25 </xs:appinfo>
26 </xs:annotation>
27 </xs:attribute>
28
29 <xs:attribute name="Enforce" type="wxs:YesNoTypeUnion">
30 <xs:annotation>
31 <xs:documentation>
32 When set to "yes", adds a custom action to prompt the user when dependencies are missing from the computer. The default is "no".
33 </xs:documentation>
34 <xs:appinfo>
35 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Requires" />
36 <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="RequiresRef" />
37 </xs:appinfo>
38 </xs:annotation>
39 </xs:attribute>
40</xs:schema>