Update of /cvsroot/nhibernate/nhibernate/src/NHibernate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13895/NHibernate
Modified Files:
NHibernate-1.1.csproj NHibernate.cs
Log Message:
NH-151: added SByteType and Fixture for it
Moved nh specific CompositeId tests to their own namespace.
Index: NHibernate-1.1.csproj
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate-1.1.csproj,v
retrieving revision 1.64
retrieving revision 1.65
diff -C2 -d -r1.64 -r1.65
*** NHibernate-1.1.csproj 11 Dec 2004 16:28:27 -0000 1.64
--- NHibernate-1.1.csproj 11 Dec 2004 20:08:12 -0000 1.65
***************
*** 1904,1907 ****
--- 1904,1912 ----
/>
<File
+ RelPath = "Type\SByteType.cs"
+ SubType = "Code"
+ BuildAction = "Compile"
+ />
+ <File
RelPath = "Type\SerializableType.cs"
SubType = "Code"
Index: NHibernate.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate.cs,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** NHibernate.cs 9 Dec 2004 17:52:14 -0000 1.23
--- NHibernate.cs 11 Dec 2004 20:08:16 -0000 1.24
***************
*** 92,95 ****
--- 92,100 ----
/// <summary>
+ /// NHibernate System.SByte type
+ /// </summary>
+ public static readonly NullableType SByte = new SByteType();
+
+ /// <summary>
/// NHIbernate System.Single (float in C#) Type
/// </summary>
|