blob: 77883583b88a020d41966a9c39be6aec7891ff33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<element name="DotNetCoreSdkSearch">
<annotation>
<documentation>
Searches for an installation of .NET Core SDK.
The variable gets set to the latest version of the given Platform and Major Version.
</documentation>
<appinfo>
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Bundle" />
<parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" />
</appinfo>
</annotation>
<complexType>
<choice minOccurs="0" maxOccurs="unbounded">
<any namespace="##other" processContents="lax">
<annotation>
<documentation>
Extensibility point in the WiX XML Schema. Schema extensions can register additional
elements at this point in the schema.
</documentation>
</annotation>
</any>
</choice>
<attribute name="Id" type="xs:string">
<annotation>
<documentation>Identifier for the search. If the Id is not specified, one will be generated.</documentation>
</annotation>
</attribute>
<attribute name="Variable" type="xs:string" use="required">
<annotation>
<documentation>Name of the variable in which to place the result of the search.</documentation>
</annotation>
</attribute>
<attribute name="Condition" type="xs:string">
<annotation>
<documentation>Condition for evaluating the search. If this evaluates to false, the search is not executed at all.</documentation>
</annotation>
</attribute>
<attribute name="After" type="xs:string">
<annotation>
<documentation>Id of the search that this one should come after.</documentation>
</annotation>
</attribute>
<attribute name="Platform" type="NetfxPreprocessorPlatformType">
<annotation>
<documentation>The platform to search for.</documentation>
</annotation>
</attribute>
<attribute name="MajorVersion" type="wxs:Integer">
<annotation>
<documentation>Major version of .NET SDK. For example, "6".</documentation>
</annotation>
</attribute>
<anyAttribute namespace="##other" processContents="lax">
<annotation>
<documentation>
Extensibility point in the WiX XML Schema. Schema extensions can register additional
attributes at this point in the schema.
</documentation>
</annotation>
</anyAttribute>
</complexType>
</element>
|