Konstantin Koch 8287c54432 Included the Visual Studio extension and made the necessary changes to make it run.
Replaced the old VS templates with ones that offer more flexiblity.
Started replacing the Content Project for the samples with our custom project type.
Inlcuded a basic not yet working AssimpImporter.
2015-04-08 14:50:03 +02:00

36 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="Content"
targetNamespace="https://anxframework.codeplex.com/Content.xsd"
elementFormDefault="qualified"
xmlns="https://anxframework.codeplex.com/Content.xsd"
xmlns:anxsf="https://anxframework.codeplex.com/Content.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
>
<!-- Either of them are allowed -->
<xs:element name="AnxContent">
<xs:complexType>
<xs:sequence>
<xs:element name="Asset" minOccurs="1">
<xs:complexType>
<xs:attribute type="xs:QName" name="Type" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="XnaContent">
<xs:complexType>
<xs:sequence>
<xs:element name="Asset" minOccurs="1">
<xs:complexType>
<xs:attribute type="xs:QName" name="Type" use="required"/>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>