| 
					
						 From the 1.2.1.GA src zip, I found two nhibernate-mapping.xsd files, which are somewhat different ( patch style diff output is at end ). 
 
 Which of the two is the correct one ?
 
 TIA
 
 Marcelo
 
 File "at rigth" is from the root src dir; the file "at left" is from the Mapping.Attributes directory
 
 300a301,308
 > 	<xs:element name="definition">
 > 		<xs:complexType>
 > 			<xs:sequence>
 > 				<xs:element ref="param" minOccurs="0" maxOccurs="unbounded" />
 > 			</xs:sequence>
 > 			<xs:attribute name="class" type="xs:string" use="required" />
 > 		</xs:complexType>
 > 	</xs:element>
 304,305c312,320
 < 				<xs:element ref="create" />
 < 				<xs:element ref="drop" />
 ---
 > 				<xs:choice>
 > 					<xs:sequence>
 > 						<xs:element ref="create" />
 > 						<xs:element ref="drop" />
 > 					</xs:sequence>
 > 					<xs:sequence>
 > 						<xs:element ref="definition" />
 > 					</xs:sequence>
 > 				</xs:choice> 
					
  
						
					 |