In Configuration Manager 2007, the AssemblyPropertyRules (AssemblyType) element groups the various rules/checks that are possible on properties of a .NET Framework assembly.

The AssemblyPropertyRules element is defined by the AssemblyType complex type.

<xs:element name="AssemblyPropertyRules">
	<xs:complexType>
		<xs:sequence
			minOccurs="1"
			maxOccurs="1"
		>
			<xs:element name="Culture">
				<xs:complexType>
					<xs:sequence
						minOccurs="0"
						maxOccurs="unbounded"
					>
						<xs:element
							ref="Rule"
						 />
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="Version">
				<xs:complexType>
					<xs:sequence
						minOccurs="0"
						maxOccurs="unbounded"
					>
						<xs:element
							ref="Rule"
						 />
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="PublicKeyToken">
				<xs:complexType>
					<xs:sequence
						minOccurs="0"
						maxOccurs="unbounded"
					>
						<xs:element
							ref="Rule"
						 />
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="CacheType">
				<xs:complexType>
					<xs:sequence
						minOccurs="0"
						maxOccurs="unbounded"
					>
						<xs:element
							ref="Rule"
						 />
					</xs:sequence>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
</xs:element>

Child Elements

Element Type Description

Culture

ComplexType

Groups all the rules/checks on the Culture information for a .NET Framework assembly.

The syntax of the Culture property to be used in rules is as described in the MSDN documentation about the CultureInfo Class (http://go.microsoft.com/fwlink/?LinkID=111714).

PublicKeyToken

ComplexType

Groups all the rules/checks on the Public key token information for a .NET Framework assembly.

The syntax of the Version property to be used in rules is a hexadecimal-encoded string representation of the public key token.

Version

ComplexType

Groups all the rules/checks on the version information for a .NET Framework assembly.

The syntax of the Version property to be used in rules is a four-part version string.

See Also


Send comments about this topic to Microsoft.