From: <gc...@us...> - 2003-03-25 03:02:12
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock In directory sc8-pr-cvs1:/tmp/cvs-serv10579/DotNetMock Modified Files: AssemblyInfo.cs MockObject.cs Log Message: 1) Added [Serializable()] attribute to MockObject 2) Changed MockObject to extend from MarshalByRefObject 3) Added AssemblyInfo.cs to the DotNetMock.Framework assembly Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/AssemblyInfo.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** AssemblyInfo.cs 13 Jan 2003 04:03:57 -0000 1.6 --- AssemblyInfo.cs 25 Mar 2003 03:02:07 -0000 1.7 *************** *** 34,38 **** // by using the '*' as shown below: ! [assembly: AssemblyVersion("0.3.0.*")] // --- 34,38 ---- // by using the '*' as shown below: ! [assembly: AssemblyVersion("0.4.0.*")] // Index: MockObject.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/MockObject.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** MockObject.cs 13 Jan 2003 04:03:57 -0000 1.8 --- MockObject.cs 25 Mar 2003 03:02:08 -0000 1.9 *************** *** 9,13 **** // TODO: Extend MarshalByRefObject to take care of remoting issues. ! public class MockObject : IVerifiable { /// <summary> --- 9,14 ---- // TODO: Extend MarshalByRefObject to take care of remoting issues. ! [Serializable()] ! public class MockObject : MarshalByRefObject, IVerifiable { /// <summary> |