定义指定任务版本的模式。
<xs:simpleType name="versionType">
    <xs:restriction
        base="string"
    >
        <xs:pattern
            value="\d+(\.\d+){1,3}"
         />
    </xs:restriction>
</xs:simpleType>
Patterns
The versionType simple type is a string that is restricted by the following pattern:
- \d+(\.\d+){1,3}- 后跟一个、两个或三个数字的数字:数字用点分隔。 例如,1.2、1.2.3 或 9.87.65.432。 
Requirements
| Requirement | Value | 
|---|---|
| 支持的最低客户端 | Windows Vista [仅限桌面应用] | 
| 支持的最低服务器 | Windows Server 2008 [仅限桌面应用] |