Platform Simple Type
Defines the values used to identify the platform on which an assembly will execute as neutral or with a value from the ProcessorArchitectures Simple Type.
<xs:simpleType name="Platform">
<xs:union
memberValues="ProcessorArchitectures"
>
<xs:simpleType>
<xs:restriction
base="string"
>
<xs:enumeration
value="*"
/>
<xs:enumeration
value="neutral"
/>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>
Enumeration
The following values are defined by the Platform simple type:
Value | Description |
---|---|
* |
The platform-neutral identifier. |
neutral |
Identifies the platform as neutral. |