From: Donald L M. Jr. <lu...@us...> - 2005-04-01 20:50:23
|
Update of /cvsroot/nhibernate/NHibernateContrib/src/Nullables In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12860/src/Nullables Modified Files: AssemblyInfo.cs NullableSByte.cs Log Message: Added CLSCompliant(true) to the nullable assemblies (and CLSCompiant(false) to the NullableSByte because it isn't. Index: NullableSByte.cs =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/Nullables/NullableSByte.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** NullableSByte.cs 8 Feb 2005 19:13:11 -0000 1.2 --- NullableSByte.cs 1 Apr 2005 20:49:58 -0000 1.3 *************** *** 5,9 **** namespace Nullables { ! [System.ComponentModel.TypeConverter(typeof(Nullables.TypeConverters.NullableSByteConverter)), Serializable()] public struct NullableSByte : INullableType, IFormattable, IComparable { --- 5,9 ---- namespace Nullables { ! [System.ComponentModel.TypeConverter(typeof(Nullables.TypeConverters.NullableSByteConverter)), Serializable(), CLSCompliant(false)] public struct NullableSByte : INullableType, IFormattable, IComparable { Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/nhibernate/NHibernateContrib/src/Nullables/AssemblyInfo.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** AssemblyInfo.cs 1 Mar 2005 16:24:39 -0000 1.8 --- AssemblyInfo.cs 1 Apr 2005 20:49:58 -0000 1.9 *************** *** 1,2 **** --- 1,3 ---- + using System; using System.Reflection; using System.Runtime.CompilerServices; *************** *** 12,15 **** --- 13,17 ---- //------------------------------------------------------------------------------ + [assembly: CLSCompliant(true)] [assembly: AssemblyTitleAttribute("Nullables for Microsoft .NET Framework 1.1")] [assembly: AssemblyDescriptionAttribute("A library of Nullable Primitive Types to serve as a bridge to .net-2.0.")] *************** *** 21,23 **** [assembly: AssemblyFileVersionAttribute("0.6.0.0")] //[assembly: AssemblyKeyFileAttribute("..\\NHibernate.snk")] - --- 23,24 ---- |