From: Griffin C. <gc...@us...> - 2005-02-05 21:46:39
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock/TestFramework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8391/DotNetMock/TestFramework Modified Files: IDynamicLinker.cs Implementation.cs ImplementationFactory.cs SystemDynamicLinker.cs Log Message: - Moved ITestFramework.cs to DotNetMock assembly - removed DotNetMock.Core assembly - Updated build file Index: IDynamicLinker.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/TestFramework/IDynamicLinker.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IDynamicLinker.cs 29 Jan 2005 09:13:32 -0000 1.2 --- IDynamicLinker.cs 5 Feb 2005 21:46:27 -0000 1.3 *************** *** 4,11 **** #region Imports using System; - using System.Collections; using System.Reflection; - using DotNetMock.Core; #endregion --- 4,9 ---- Index: SystemDynamicLinker.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/TestFramework/SystemDynamicLinker.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SystemDynamicLinker.cs 29 Jan 2005 09:13:32 -0000 1.2 --- SystemDynamicLinker.cs 5 Feb 2005 21:46:27 -0000 1.3 *************** *** 4,12 **** #region Imports using System; - using System.Collections; using System.IO; using System.Reflection; - using DotNetMock.Core; #endregion --- 4,10 ---- Index: ImplementationFactory.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/TestFramework/ImplementationFactory.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ImplementationFactory.cs 29 Jan 2005 09:13:32 -0000 1.2 --- ImplementationFactory.cs 5 Feb 2005 21:46:27 -0000 1.3 *************** *** 6,11 **** using System.Collections; using System.Reflection; - using DotNetMock.Core; #endregion --- 6,11 ---- using System.Collections; using System.Reflection; using DotNetMock.Core; + #endregion Index: Implementation.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/TestFramework/Implementation.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Implementation.cs 29 Jan 2005 09:13:32 -0000 1.2 --- Implementation.cs 5 Feb 2005 21:46:27 -0000 1.3 *************** *** 5,10 **** using System; using System.Collections; - using DotNetMock.Core; #endregion --- 5,10 ---- using System; using System.Collections; using DotNetMock.Core; + #endregion |