blob: 28507696560a885c1e4479a4f5e4d5cb7c93b1d7 (
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
|
<simpleType name="NativeImagePlatformType">
<restriction base="xs:NMTOKEN">
<enumeration value="32bit">
<annotation>
<documentation>
Attempt to generate native images only for the 32-bit version of the .NET Framework
on the target machine. If the 32-bit version of the .NET Framework 2.0 or newer is not
present on the target machine, native image custom actions will not be scheduled.
This is the default value.
</documentation>
</annotation>
</enumeration>
<enumeration value="64bit">
<annotation>
<documentation>
Attempt to generate native images only for the 64-bit version of the .NET Framework
on the target machine. If a 64-bit version of the .NET Framework 2.0 or newer is not
present on the target machine, native image custom actions will not be scheduled.
</documentation>
</annotation>
</enumeration>
<enumeration value="all">
<annotation>
<documentation>
Attempt to generate native images for the 32-bit and 64-bit versions of the .NET Framework
on the target machine. If a version of the .NET Framework 2.0 or newer is not present on the
target machine for a processor architecture, native image custom actions will not be
scheduled for that processor architecture.
</documentation>
</annotation>
</enumeration>
</restriction>
</simpleType>
|