NullableTypes/src/Types NullableDateTime.cs,1.19,1.20 NullableDecimal.cs,1.18,1.19 NullableDouble.cs
Status: Inactive
Brought to you by:
lukadotnet
From: <luk...@us...> - 2003-12-08 21:57:30
|
Update of /cvsroot/nullabletypes/NullableTypes/src/Types In directory sc8-pr-cvs1:/tmp/cvs-serv8251/src/Types Modified Files: NullableDateTime.cs NullableDecimal.cs NullableDouble.cs NullableInt16.cs NullableInt32.cs NullableInt64.cs NullableSingle.cs NullableString.cs Types.csproj Log Message: Index: NullableDateTime.cs =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableDateTime.cs,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** NullableDateTime.cs 7 Oct 2003 20:23:45 -0000 1.19 --- NullableDateTime.cs 8 Dec 2003 21:57:27 -0000 1.20 *************** *** 22,25 **** --- 22,29 ---- // 03-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code + // 06-Dic-2003 Luca Bug Fix Replaced Xml Schema id "NullableDateTimeXmlSchema" with "NullableDateTime" + // because VSDesigner use it as type-name in the auto-generated WS client Proxy + // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with + // other types in NullableTypes // *************** *** 219,223 **** // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" // targetNamespace="http://NullableTypes.SourceForge.Net/XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableDateTime" type="xs:dateTime" nillable = "true" /> --- 223,227 ---- // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" // targetNamespace="http://NullableTypes.SourceForge.Net/XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/NullableDateTimeXMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableDateTime" type="xs:dateTime" nillable = "true" /> *************** *** 234,240 **** // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableDateTimeXmlSchema"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; --- 238,244 ---- // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableDateTime"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/NullableDateTimeXMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; Index: NullableDecimal.cs =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableDecimal.cs,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** NullableDecimal.cs 7 Oct 2003 20:23:45 -0000 1.18 --- NullableDecimal.cs 8 Dec 2003 21:57:27 -0000 1.19 *************** *** 6,21 **** // Damien Guard (dam...@us...) // ! // Date Author Changes Reasons ! // 11-Apr-2003 Luca Create Declared public members ! // 17-Jun-2003 Luca Create Added XML documentation ! // 24-Jun-2003 Abhijeet Create Added method definitions. ! // 27-Jun-2003 Luca Refactoring Unified equivalent error messages ! // 30-Jun-2003 Luca Upgrade New requirement by Roni Burd: GetTypeCode ! // 02-Jul-2003 Luca Bug Fix Removed bugs to pass tests ! // 07-Jul-2003 Luca Upgrade Applied FxCop guideline: explicited CurrentCulture in CompareTo, ! // ToString, Parse, NullableString conv. and Equals code ! // 13-Sep-2003 Luca Upgrade New requirement: the type must be sarializable ! // 05-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable ! // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code // --- 6,25 ---- // Damien Guard (dam...@us...) // ! // Date Author Changes Reasons ! // 11-Apr-2003 Luca Create Declared public members ! // 17-Jun-2003 Luca Create Added XML documentation ! // 24-Jun-2003 Abhijeet Create Added method definitions. ! // 27-Jun-2003 Luca Refactoring Unified equivalent error messages ! // 30-Jun-2003 Luca Upgrade New requirement by Roni Burd: GetTypeCode ! // 02-Jul-2003 Luca Bug Fix Removed bugs to pass tests ! // 07-Jul-2003 Luca Upgrade Applied FxCop guideline: explicited CurrentCulture in CompareTo, ! // ToString, Parse, NullableString conv. and Equals code ! // 13-Sep-2003 Luca Upgrade New requirement: the type must be sarializable ! // 05-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable ! // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code ! // 06-Dic-2003 Luca Bug Fix Replaced Xml Schema id "NullableDecimalXmlSchema" with "NullableDecimal" ! // because VSDesigner use it as type-name in the auto-generated WS client Proxy ! // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with ! // other types in NullableTypes // *************** *** 375,380 **** // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableDecimal" type="xs:decimal" nillable="true" /> --- 379,384 ---- // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/NullableDecimalXMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/NullableDecimalXMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableDecimal" type="xs:decimal" nillable="true" /> *************** *** 390,396 **** // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableDecimalXmlSchema"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; --- 394,400 ---- // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableDecimal"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/NullableDecimalXMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; Index: NullableDouble.cs =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableDouble.cs,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** NullableDouble.cs 7 Oct 2003 20:23:45 -0000 1.16 --- NullableDouble.cs 8 Dec 2003 21:57:27 -0000 1.17 *************** *** 16,19 **** --- 16,23 ---- // 05-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code + // 06-Dic-2003 Luca Bug Fix Replaced Xml Schema id "NullableDoubleXmlSchema" with "NullableDouble" + // because VSDesigner use it as type-name in the auto-generated WS client Proxy + // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with + // other types in NullableTypes // *************** *** 229,234 **** // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableDouble" type="xs:double" nillable="true" /> --- 233,238 ---- // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/NullableDoubleXMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/NullableDoubleXMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableDouble" type="xs:double" nillable="true" /> *************** *** 244,250 **** // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableDoubleXmlSchema"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; --- 248,254 ---- // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableDouble"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/NullableDoubleXMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; Index: NullableInt16.cs =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableInt16.cs,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** NullableInt16.cs 7 Oct 2003 20:23:45 -0000 1.11 --- NullableInt16.cs 8 Dec 2003 21:57:27 -0000 1.12 *************** *** 6,20 **** // Damien Guard (dam...@us...) // ! // Date Author Changes Reasons ! // 03-Jun-2003 Abhijeet Create ! // 24-Jun-2003 Luca Create Added XML documentation ! // 27-Jun-2003 Luca Refactoring Unified equivalent error messages ! // 30-Jun-2003 Luca Upgrade New requirement by Roni Burd: GetTypeCode ! // 30-Jun-2003 Luca Upgrade Removed NullableMoney and NullableGuid ! // 07-Jul-2003 Luca Upgrade Applied FxCop guideline: explicited CurrentCulture in CompareTo, Parse ! // and ToString code ! // 13-Sep-2003 Luca Upgrade New requirement: the type must be sarializable ! // 05-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable ! // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code // --- 6,24 ---- // Damien Guard (dam...@us...) // ! // Date Author Changes Reasons ! // 03-Jun-2003 Abhijeet Create ! // 24-Jun-2003 Luca Create Added XML documentation ! // 27-Jun-2003 Luca Refactoring Unified equivalent error messages ! // 30-Jun-2003 Luca Upgrade New requirement by Roni Burd: GetTypeCode ! // 30-Jun-2003 Luca Upgrade Removed NullableMoney and NullableGuid ! // 07-Jul-2003 Luca Upgrade Applied FxCop guideline: explicited CurrentCulture in CompareTo, Parse ! // and ToString code ! // 13-Sep-2003 Luca Upgrade New requirement: the type must be sarializable ! // 05-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable ! // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code ! // 06-Dic-2003 Luca Bug Fix Replaced Xml Schema id "NullableInt16XmlSchema" with "NullableInt16" ! // because VSDesigner use it as type-name in the auto-generated WS client Proxy ! // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with ! // other types in NullableTypes // *************** *** 131,136 **** // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableInt16" type="xs:short" nillable="true" /> --- 135,140 ---- // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/NullableInt16XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/NullableInt16XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableInt16" type="xs:short" nillable="true" /> *************** *** 146,152 **** // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableInt16XmlSchema"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; --- 150,156 ---- // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableInt16"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/NullableInt16XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; Index: NullableInt32.cs =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableInt32.cs,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** NullableInt32.cs 7 Oct 2003 20:23:45 -0000 1.18 --- NullableInt32.cs 8 Dec 2003 21:57:27 -0000 1.19 *************** *** 16,19 **** --- 16,23 ---- // 05-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code + // 06-Dic-2003 Luca Bug Fix Replaced Xml Schema id "NullableInt32XmlSchema" with "NullableInt32" + // because VSDesigner use it as type-name in the auto-generated WS client Proxy + // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with + // other types in NullableTypes // *************** *** 189,194 **** // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableInt32" type="xs:int" nillable="true" /> --- 193,198 ---- // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/NullableInt32XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/NullableInt32XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableInt32" type="xs:int" nillable="true" /> *************** *** 204,210 **** // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableInt32XmlSchema"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; --- 208,214 ---- // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableInt32"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/NullableInt32XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; Index: NullableInt64.cs =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableInt64.cs,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** NullableInt64.cs 7 Oct 2003 20:23:45 -0000 1.11 --- NullableInt64.cs 8 Dec 2003 21:57:27 -0000 1.12 *************** *** 15,18 **** --- 15,22 ---- // 05-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code + // 06-Dic-2003 Luca Bug Fix Replaced Xml Schema id "NullableInt64XmlSchema" with "NullableInt64" + // because VSDesigner use it as type-name in the auto-generated WS client Proxy + // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with + // other types in NullableTypes // *************** *** 188,193 **** // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableInt64" type="xs:long" nillable="true" /> --- 192,197 ---- // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/NullableInt64XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/NullableInt64XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableInt64" type="xs:long" nillable="true" /> *************** *** 203,209 **** // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableInt64XmlSchema"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; --- 207,213 ---- // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableInt64"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/NullableInt64XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; Index: NullableSingle.cs =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableSingle.cs,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** NullableSingle.cs 7 Oct 2003 20:23:45 -0000 1.18 --- NullableSingle.cs 8 Dec 2003 21:57:27 -0000 1.19 *************** *** 16,19 **** --- 16,23 ---- // 05-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code + // 06-Dic-2003 Luca Bug Fix Replaced Xml Schema id "NullableSingleXmlSchema" with "NullableSingle" + // because VSDesigner use it as type-name in the auto-generated WS client Proxy + // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with + // other types in NullableTypes // *************** *** 250,255 **** // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableSingle" type="xs:float" nillable="true" /> --- 254,259 ---- // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/NullableSingleXMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/NullableSingleXMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableSingle" type="xs:float" nillable="true" /> *************** *** 265,271 **** // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableSingleXmlSchema"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; --- 269,275 ---- // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableSingle"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/NullableSingleXMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; Index: NullableString.cs =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/NullableString.cs,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** NullableString.cs 7 Oct 2003 20:23:45 -0000 1.13 --- NullableString.cs 8 Dec 2003 21:57:27 -0000 1.14 *************** *** 6,22 **** // Damien Guard (dam...@us...) // ! // Date Author Changes Reasons ! // 14-Apr-2003 Luca Create Declared public members ! // 30-Apr-2003 NiceGuyUK Create Started implementation (fields, constructors, INullable, IComparable) ! // 17-Jun-2003 Luca Create Added XML documentation ! // 24-Jun-2003 Luca Create Implementation completed ! // 27-Jun-2003 Luca Refactoring Unified equivalent error messages ! // 30-Jun-2003 Luca Upgrade New requirement by Roni Burd: GetTypeCode ! // 30-Jun-2003 Luca Upgrade Removed NullableMoney and NullableGuid ! // 07-Jul-2003 Luca Upgrade Applied FxCop guideline: explicited CurrentCulture in Compare, ! // explicit conv. operators and CompareTo code ! // 13-Sep-2003 Luca Upgrade New requirement: the type must be sarializable ! // 05-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable ! // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code // --- 6,26 ---- // Damien Guard (dam...@us...) // ! // Date Author Changes Reasons ! // 14-Apr-2003 Luca Create Declared public members ! // 30-Apr-2003 NiceGuyUK Create Started implementation (fields, constructors, INullable, IComparable) ! // 17-Jun-2003 Luca Create Added XML documentation ! // 24-Jun-2003 Luca Create Implementation completed ! // 27-Jun-2003 Luca Refactoring Unified equivalent error messages ! // 30-Jun-2003 Luca Upgrade New requirement by Roni Burd: GetTypeCode ! // 30-Jun-2003 Luca Upgrade Removed NullableMoney and NullableGuid ! // 07-Jul-2003 Luca Upgrade Applied FxCop guideline: explicited CurrentCulture in Compare, ! // explicit conv. operators and CompareTo code ! // 13-Sep-2003 Luca Upgrade New requirement: the type must be sarializable ! // 05-Oct-2003 DamienG Upgrade New requirement: the type must be XmlSerializable ! // 06-Oct-2003 Luca Upgrade Code upgrade: Replaced tabs with spaces and removed commented out code ! // 06-Dic-2003 Luca Bug Fix Replaced Xml Schema id "NullableStringXmlSchema" with "NullableString" ! // because VSDesigner use it as type-name in the auto-generated WS client Proxy ! // 06-Dic-2003 Luca Bug Fix Replaced Target Namespace for Xml Schema to avoid duplicate namespace with ! // other types in NullableTypes // *************** *** 324,329 **** // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/XMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/XMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableSingle" type="xs:string" nillable="true" /> --- 328,333 ---- // <?xml version="1.0"?> // <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ! // targetNamespace="http://NullableTypes.SourceForge.Net/NullableStringXMLSchema" ! // xmlns="http://NullableTypes.SourceForge.Net/NullableStringXMLSchema" // elementFormDefault="qualified"> // <xs:element name="NullableSingle" type="xs:string" nillable="true" /> *************** *** 339,345 **** // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableStringXmlSchema"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/XMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; --- 343,349 ---- // Xml Schema sysXmlScm.XmlSchema xsd = new sysXmlScm.XmlSchema(); ! xsd.Id = "NullableString"; xsd.Namespaces.Add("xs", "http://www.w3.org/2001/XMLSchema"); ! xsd.TargetNamespace = "http://NullableTypes.SourceForge.Net/NullableStringXMLSchema"; xsd.Items.Add(rootElement); xsd.ElementFormDefault = sysXmlScm.XmlSchemaForm.Qualified; Index: Types.csproj =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/src/Types/Types.csproj,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Types.csproj 7 Oct 2003 20:35:25 -0000 1.16 --- Types.csproj 8 Dec 2003 21:57:27 -0000 1.17 *************** *** 2,7 **** <CSHARP ProjectType = "Local" ! ProductVersion = "7.0.9466" ! SchemaVersion = "1.0" ProjectGuid = "{5AE18977-9F9F-460E-86F5-E42668CDFE9E}" > --- 2,7 ---- <CSHARP ProjectType = "Local" ! ProductVersion = "7.10.3077" ! SchemaVersion = "2.0" ProjectGuid = "{5AE18977-9F9F-460E-86F5-E42668CDFE9E}" > *************** *** 17,21 **** --- 17,24 ---- DelaySign = "false" OutputType = "Library" + PreBuildEvent = "" + PostBuildEvent = "" RootNamespace = "NullableTypes" + RunPostBuildEvent = "OnBuildSuccess" StartupObject = "" > *************** *** 31,34 **** --- 34,39 ---- FileAlignment = "4096" IncrementalBuild = "true" + NoStdLib = "false" + NoWarn = "" Optimize = "false" OutputPath = "bin\Debug\" *************** *** 49,52 **** --- 54,59 ---- FileAlignment = "4096" IncrementalBuild = "false" + NoStdLib = "false" + NoWarn = "" Optimize = "true" OutputPath = "bin\Release\" |