NullableTypes NullableTypes.Tests.DLL.config,NONE,1.1 ReadMe.txt,1.15,1.16 ReleaseNotes.txt,1.11,1.1
Status: Inactive
Brought to you by:
lukadotnet
From: <luk...@us...> - 2004-02-20 00:53:11
|
Update of /cvsroot/nullabletypes/NullableTypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8752 Modified Files: ReadMe.txt ReleaseNotes.txt Added Files: NullableTypes.Tests.DLL.config Log Message: --- NEW FILE: NullableTypes.Tests.DLL.config --- <?xml version="1.0" encoding="Windows-1252"?> <configuration> <!-- Settings to make NullableTypes (built using .NET Framework 1.1) run also on .NET Framework 1.0 --> <!-- ============================================================================================== --> <startup> <supportedRuntime version="v1.1.4322" /> <supportedRuntime version="v1.0.3705" /> </startup> <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" appliesTo="v1.0.3705"> <!-- Settings for NullableTypes.dll Assembly --> <dependentAssembly> <assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture=""/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <!-- Settings for NullableTypes.Tests.dll Assembly --> <dependentAssembly> <assemblyIdentity name="System.Data" publicKeyToken="b77a5c561934e089" culture=""/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Runtime.Serialization.Formatters.Soap" publicKeyToken="b03f5f7f11d50a3a" culture=""/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> </assemblyBinding> </runtime> </configuration> Index: ReadMe.txt =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/ReadMe.txt,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** ReadMe.txt 30 Jan 2004 16:31:02 -0000 1.15 --- ReadMe.txt 20 Feb 2004 00:42:21 -0000 1.16 *************** *** 80,86 **** ============================== NullableTypes source code has been written and compiled against .NET Framework v1.1. ! Due to high degree of support for .NET Framework v1.1 backward compatibility (most applications created ! using v1.0 will run on v1.1) NullableTypes source code still compile with .NET Framework v1.0 and NullableTypes assembly still run and pass tests on .NET Framework v1.0. NullableTypes projects and source code are created using VS.NET 2002 and have been converted to VS.NET 2003. --- 80,89 ---- ============================== NullableTypes source code has been written and compiled against .NET Framework v1.1. ! Due to high degree of support for .NET Framework v1.0 forward compatibility (applications created ! using v1.1 may run on v1.0) NullableTypes source code still compile with .NET Framework v1.0 and NullableTypes assembly still run and pass tests on .NET Framework v1.0. + To run NullableTypes on .NET Framework v1.0 use the configuration settings in file + bin\NullableTypes.Tests.DLL.config to make your myAppllication.exe.config file or put them on your + Web.config file. NullableTypes projects and source code are created using VS.NET 2002 and have been converted to VS.NET 2003. *************** *** 142,147 **** - Massimo Prota (porting to Linux/Mono, VB.NET sample) ! Thanks also goes to Massimo Roccaforte, Roni Burd, Partha Choudhury and Alberto Tronchin for ! their suggestions and to Damien Guard for his help implementing Web Services support. At the end thanks also goes to the open-source community that developed these tools: --- 145,151 ---- - Massimo Prota (porting to Linux/Mono, VB.NET sample) ! Thanks also goes to Massimo Roccaforte, Roni Burd, Partha Choudhury, Shaun Bowe and ! Alberto Tronchin for their suggestions and to Damien Guard for his help implementing Web Services ! support. At the end thanks also goes to the open-source community that developed these tools: Index: ReleaseNotes.txt =================================================================== RCS file: /cvsroot/nullabletypes/NullableTypes/ReleaseNotes.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ReleaseNotes.txt 30 Jan 2004 16:31:02 -0000 1.11 --- ReleaseNotes.txt 20 Feb 2004 00:42:21 -0000 1.12 *************** *** 28,32 **** 2 or more NullableTypes parameters in a WS method - BUG FIX: Fixed IXmlSerializable.ReadXml implementation in ! NullableBoolean - NullableBoolean Operator^ (XOR) marked Obsolete - NullableBoolean Xor method marked Obsolete --- 28,34 ---- 2 or more NullableTypes parameters in a WS method - BUG FIX: Fixed IXmlSerializable.ReadXml implementation in ! NullableBoolean ! - BUG FIX: Fixed IXmlSerializable.ReadXml implementation for ! all types to accept a nil value with a non empty element. - NullableBoolean Operator^ (XOR) marked Obsolete - NullableBoolean Xor method marked Obsolete |