Browse Source

Updated to use NAnt 0.85 schema.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1907 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 19 years ago
parent
commit
90c22712b4
  1. 6
      data/schemas/nant.xsd
  2. 4
      data/schemas/readme.txt
  3. 2
      src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociation.cs

6
data/schemas/nant.xsd

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
<?xml version="1.0"?>
<xs:schema xmlns:nant="http://nant.sf.net/release/0.85-rc4/nant.xsd" elementFormDefault="qualified" targetNamespace="http://nant.sf.net/release/0.85-rc4/nant.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:schema xmlns:nant="http://nant.sf.net/release/0.85/nant.xsd" elementFormDefault="qualified" targetNamespace="http://nant.sf.net/release/0.85/nant.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>NAnt schema generated at 06/02/2006 21:10:38</xs:documentation>
<xs:documentation>NAnt schema generated at 10/14/2006 16:12:51</xs:documentation>
</xs:annotation>
<xs:complexType name="NAnt.Core.TaskContainer">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
@ -688,6 +688,7 @@ @@ -688,6 +688,7 @@
<xs:attribute name="debug" use="optional" />
<xs:attribute name="doc" use="optional" />
<xs:attribute name="imports" use="optional" />
<xs:attribute name="nostdlib" use="optional" />
<xs:attribute name="optioncompare" use="optional" />
<xs:attribute name="optionexplicit" use="optional" />
<xs:attribute name="optionoptimize" use="optional" />
@ -1161,6 +1162,7 @@ @@ -1161,6 +1162,7 @@
<xs:attribute name="keycontainer" use="optional" />
<xs:attribute name="strictref" use="optional" />
<xs:attribute name="sysarray" use="optional" />
<xs:attribute name="transform" use="optional" />
<xs:attribute name="typelib" use="required" />
<xs:attribute name="unsafe" use="optional" />
<xs:attribute name="timeout" use="optional" />

4
data/schemas/readme.txt

@ -23,8 +23,8 @@ GNU General Public License. @@ -23,8 +23,8 @@ GNU General Public License.
NAnt.xsd
--------
NAnt 0.85 RC 4 schema.
http://nant.sourceforge.net/release/0.85-rc4/nant.xsd
NAnt 0.85 schema.
http://nant.sourceforge.net/release/0.85/nant.xsd
GNU General Public License.
Wix.xsd

2
src/AddIns/DisplayBindings/XmlEditor/Project/Src/XmlSchemaAssociation.cs

@ -92,7 +92,7 @@ namespace ICSharpCode.XmlEditor @@ -92,7 +92,7 @@ namespace ICSharpCode.XmlEditor
association = new XmlSchemaAssociation(extension, @"urn:app-config");
break;
case ".build":
association = new XmlSchemaAssociation(extension, @"http://nant.sf.net/release/0.85-rc4/nant.xsd");
association = new XmlSchemaAssociation(extension, @"http://nant.sf.net/release/0.85/nant.xsd");
break;
case ".addin":
association = new XmlSchemaAssociation(extension, @"http://www.icsharpcode.net/2005/addin");

Loading…
Cancel
Save