diff options
author | Rob Mensching <rob@firegiant.com> | 2025-02-14 12:53:59 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2025-03-18 15:55:06 -0700 |
commit | 777b28beb32b2013e9feb77a9a18af397265f4ba (patch) | |
tree | a4700ebafdb4ad80be301a6814a490e7b189b202 /src/xsd/dependency.xsd | |
parent | 1f48dfeb5bc15bb9d3e90ac6b236dbff77819561 (diff) | |
download | wix-777b28beb32b2013e9feb77a9a18af397265f4ba.tar.gz wix-777b28beb32b2013e9feb77a9a18af397265f4ba.tar.bz2 wix-777b28beb32b2013e9feb77a9a18af397265f4ba.zip |
Migrate XSDs from web project
This is the new home for the XSDs. Closer to the code to hopefully be kept
better up to date as changes happen to the language.
Diffstat (limited to 'src/xsd/dependency.xsd')
-rw-r--r-- | src/xsd/dependency.xsd | 40 |
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> | ||