From: Michael D. <mik...@us...> - 2004-05-06 20:56:03
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23568 Modified Files: NHibernate-1.1.csproj nhibernate.build Log Message: Modified files in the Cache namespace for the csproj. Removed an excludes from the build file because it no longer exists. Index: NHibernate-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate-1.1.csproj,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** NHibernate-1.1.csproj 6 May 2004 13:19:05 -0000 1.25 --- NHibernate-1.1.csproj 6 May 2004 20:55:53 -0000 1.26 *************** *** 321,350 **** /> <File ! RelPath = "Cache\ICache.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "Cache\ICacheConcurrencyStrategy.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "Cache\ICacheTest.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "Cache\ReadOnlyCache.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "Cache\ReadWriteCache.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "Cache\SimpleCache.cs" SubType = "Code" BuildAction = "Compile" --- 321,350 ---- /> <File ! RelPath = "Cache\HashtableCache.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "Cache\ICache.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "Cache\ICacheConcurrencyStrategy.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "Cache\NonstrictReadWriteCache.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "Cache\ReadOnlyCache.cs" SubType = "Code" BuildAction = "Compile" /> <File ! RelPath = "Cache\ReadWriteCache.cs" SubType = "Code" BuildAction = "Compile" Index: nhibernate.build =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/nhibernate.build,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** nhibernate.build 31 Mar 2004 08:48:05 -0000 1.8 --- nhibernate.build 6 May 2004 20:55:53 -0000 1.9 *************** *** 22,26 **** <sources> <includes name="**/*.cs" /> - <excludes name="Cache/*Test.cs" /> <excludes name="Eg/**" /> <excludes name="InternalTest/**/*.cs" /> --- 22,25 ---- *************** *** 62,66 **** <sources> <includes name="**/*.cs" /> - <excludes name="Cache/*Test.cs" /> <excludes name="Eg/**" /> <excludes name="InternalTest/**/*.cs" /> --- 61,64 ---- |