更新:2007 年 11 月
定义一些值,这些值用于标识一个平台,在该平台上,程序集将作为非特定程序集执行,或者通过一个来自 ProcessorArchitectures 简单类型的值执行。
<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>
枚举
下列值由 Platform 简单类型定义:
值 |
说明 |
---|---|
* |
非特定平台标识符。 |
neutral |
将平台标识为非特定平台。 |