From: Michael D. <mik...@us...> - 2004-12-16 21:53:06
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17209/NHibernate Modified Files: NHibernate-1.1.csproj NHibernate.build Log Message: Added Castle.DynamicProxy to csproj and build file. Index: NHibernate-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate-1.1.csproj,v retrieving revision 1.65 retrieving revision 1.66 diff -C2 -d -r1.65 -r1.66 *** NHibernate-1.1.csproj 11 Dec 2004 20:08:12 -0000 1.65 --- NHibernate-1.1.csproj 16 Dec 2004 21:52:56 -0000 1.66 *************** *** 95,98 **** --- 95,103 ---- HintPath = "..\..\lib\net\1.1\Iesi.Collections.dll" /> + <Reference + Name = "Castle.DynamicProxy" + AssemblyName = "Castle.DynamicProxy" + HintPath = "..\..\lib\net\1.1\Castle.DynamicProxy.dll" + /> </References> </Build> *************** *** 1385,1388 **** --- 1390,1408 ---- /> <File + RelPath = "Proxy\CastleCustomProxyGenerator.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "Proxy\CastleLazyInitializer.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "Proxy\CastleProxyGenerator.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Proxy\INHibernateProxy.cs" SubType = "Code" Index: NHibernate.build =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate.build,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** NHibernate.build 8 Dec 2004 15:30:54 -0000 1.7 --- NHibernate.build 16 Dec 2004 21:52:56 -0000 1.8 *************** *** 91,94 **** --- 91,95 ---- <includes name="log4net.dll" /> <includes name="HashCodeProvider.dll" /> + <includes name="Castle.DynamicProxy.dll" /> </references> |