New test.
[mono.git] / mcs / tools / mono-xsd / ChangeLog
1 2004-07-12  Lluis Sanchez Gual  <lluis@novell.com>
2
3         * NewMonoXSD.cs: Don't write the exception trace for common parameter
4         errors.
5
6 2005-01-11  Atsushi Enomoto <atsushi@ximian.com>
7
8         * NewMonoXSD.cs : by default, dataset namespace is not "Schemas" but
9           empty.
10
11 2004-08-16  Atsushi Enomoto <atsushi@ximian.com>
12
13         * NewMonoXSD.cs : /language should support custom assembly qualified
14           name specification. This fixes bug #63081.
15           Also fixed usage message. "VB" is considered as valid.
16
17 2004-08-07  Atsushi Enomoto <atsushi@ximian.com>
18
19         * NewMonoXSD.cs : /generator (/g) option didn't work, since it usually
20           ends with .dll (or .exe) and regarded as mere assembly filename.
21
22 2004-07-12  Lluis Sanchez Gual  <lluis@novell.com>
23
24         * NewMonoXSD.cs: Accept files with absolute paths.
25
26 2004-05-07  Atsushi Enomoto <atsushi@ximian.com>
27
28         * NewMonoXSD.cs : Previous change broke default C# code generation.
29           XML schema inference output path fix.
30
31 2004-05-06  Atsushi Enomoto <atsushi@ximian.com>
32
33         * NewMonoXSD.cs : Added new /generator:typename(,assemblyfile) option
34           support that enables users to use any CodeDomProvider.
35           Added VB support (/language:VB).
36
37 2004-04-29  Lluis Sanchez Gual  <lluis@ximian.com>
38
39         * NewMonoXSD.cs: Import elements in the order they are declared in the schema.
40
41 2004-04-26  Atsushi Enomoto <atsushi@ximian.com>
42
43         * NewMonoXSD.cs : Enabled /d option (typed dataset generation support
44           using newly implemented TypedDataSetGenerator).
45
46 2004-04-22  Atsushi Enomoto <atsushi@ximian.com>
47
48         * NewMonoXSD.cs : Added support for (ADO.NET based) xsd inference.
49           Changed command line usage to require /c for serialization class
50           generation, or /d for typed dataset generation (not supported yet).
51           Modified usage message due to the changes above.
52         * Makefile : Added reference to System.Data.dll.
53
54 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
55
56         * NewMonoXSD.cs: Compile the loaded schemas if they are not already compiled.
57
58 2003-08-05  Lluis Sanchez Gual  <lluis@ximian.com>
59
60         * NewMonoXSD.cs: new implementation of monoxsd based on the
61           classes in System.Xml.Serialization.
62         * xsd.exe.sources: new sources file.
63         * Makefile: renamed executable to xsd.exe
64
65 2003-06-13  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
66
67         * XSD2Class.cs: several changes.
68
69 2003-06-04  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
70
71         * (temporarily) added XSD2Class.cs.
72
73 2003-03-25  Duncan Mak  <duncan@ximian.com>
74
75         * MonoXSD.cs: Added support for two command line arguments:
76
77            /output: specify the directory to put the generated schema.
78            /type:   specify a specific type in the assembly.
79
80 2003-03-24  Duncan Mak  <duncan@ximian.com>
81
82         * MonoXSD.cs: Add support for having enums as a field in the
83         class. I overlooked this bit last week.
84
85         Removed the special case for 'XmlNode' fields, turns out that
86         behave the same as all the other subclasses of 'XmlNode'.
87
88         * makefile: Make it build with debug enabled by default.
89
90 2003-03-22  Duncan Mak  <duncan@ximian.com>
91
92         * MonoXSD.cs: Moved things around, now it's not only
93         static methods (functions) anymore.
94
95         Attributes handling galore! We now handle:
96
97            - XmlElementAttribute
98            - XmlAttributeAtribute
99            - XmlArrayAttribute
100            - XmlArrayItemAttribute
101            - XmlTextAttribute
102            - XmlAnyElementAttribute
103            - XmlAnyAttributeAttribute
104
105 2003-03-20  Duncan Mak  <duncan@ximian.com>
106
107         * MonoXSD.cs: More refinements. We now support transforming
108         enumerations as well as arrays to their corresponding XML Schema
109         type. Read/Write properties will also be transformed (thanks to
110         reading KeithBa's book). XmlNode is properly handled, and XmlElement
111         & co. should also be transformed correctly.
112         
113         Next up: I should look into whether or not xsd.exe makes use of
114         XmlAttributes. If so, I'll have to support that.
115         
116         Other than that, this part of MonoXSD should be complete.
117
118 2003-03-17  Duncan Mak  <duncan@ximian.com>
119
120         * MonoXSD.cs: A simple implementation of MonoXSD. It current
121         supports creating an XML Schema based on a .NET assembly. The
122         handling of schema derivation is simplistic.