This list is closed, nobody may subscribe to it.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(99) |
Feb
(163) |
Mar
(3) |
Apr
(33) |
May
(8) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
(10) |
Apr
|
May
|
Jun
(16) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Choy R. <ch...@us...> - 2005-02-09 05:19:24
|
Update of /cvsroot/dotnetmock/dotnetmock/lib-ext In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5008/lib-ext Log Message: Directory /cvsroot/dotnetmock/dotnetmock/lib-ext added to the repository |
From: Griffin C. <gc...@us...> - 2005-02-05 22:05:49
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/ComponentModel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12423/DotNetMock.Framework/ComponentModel Modified Files: MockMarshalByValueComponent.cs Log Message: - Various FxCop fixes Index: MockMarshalByValueComponent.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/ComponentModel/MockMarshalByValueComponent.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MockMarshalByValueComponent.cs 26 Jun 2004 20:23:13 -0000 1.2 --- MockMarshalByValueComponent.cs 5 Feb 2005 22:05:08 -0000 1.3 *************** *** 21,27 **** /// Default COnstructor /// </summary> ! public MockMarshalByValueComponent() { - this.name = "MockMarshalByValueComponent"; _serviceProviders = new Hashtable(); } --- 21,26 ---- /// Default COnstructor /// </summary> ! public MockMarshalByValueComponent() : base("MockMarshalByValueComponent") { _serviceProviders = new Hashtable(); } |
From: Griffin C. <gc...@us...> - 2005-02-05 22:05:48
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12423/DotNetMock.Framework/Data Modified Files: MockCommand.cs MockDataReader.cs Log Message: - Various FxCop fixes Index: MockDataReader.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Data/MockDataReader.cs,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** MockDataReader.cs 24 Oct 2004 16:03:28 -0000 1.21 --- MockDataReader.cs 5 Feb 2005 22:05:09 -0000 1.22 *************** *** 27,33 **** public MockDataReader() {} ! public MockDataReader( string mockName ) : this() { - this.name = mockName; } --- 27,32 ---- public MockDataReader() {} ! public MockDataReader( string mockName ) : base(mockName) { } Index: MockCommand.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Data/MockCommand.cs,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** MockCommand.cs 1 Jan 2005 01:49:06 -0000 1.18 --- MockCommand.cs 5 Feb 2005 22:05:09 -0000 1.19 *************** *** 29,33 **** /// Default constructor /// </summary> ! public MockCommand() { _parameters = new MockDataParameterCollection(); --- 29,33 ---- /// Default constructor /// </summary> ! public MockCommand() : base() { _parameters = new MockDataParameterCollection(); *************** *** 37,43 **** /// </summary> /// <param name="mockName"></param> ! public MockCommand( string mockName ) : this() { ! this.name = mockName; } --- 37,43 ---- /// </summary> /// <param name="mockName"></param> ! public MockCommand( string mockName ) : base(mockName) { ! _parameters = new MockDataParameterCollection(); } |
From: Griffin C. <gc...@us...> - 2005-02-05 22:05:22
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock/TestFramework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12423/DotNetMock/TestFramework Modified Files: AbstractStubMaker.cs IDynamicLinker.cs Implementation.cs Log Message: - Various FxCop fixes Index: IDynamicLinker.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/TestFramework/IDynamicLinker.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IDynamicLinker.cs 5 Feb 2005 21:46:27 -0000 1.3 --- IDynamicLinker.cs 5 Feb 2005 22:05:12 -0000 1.4 *************** *** 36,42 **** /// </summary> /// <param name="typeName">full name of type</param> ! /// <param name="assembly">assembly to get it from</param> /// <returns></returns> ! Type GetType(string typeName, Assembly assembly); /// <summary> /// Create instance of type. --- 36,42 ---- /// </summary> /// <param name="typeName">full name of type</param> ! /// <param name="sourceAssembly">assembly to get it from</param> /// <returns></returns> ! Type GetType(string typeName, Assembly sourceAssembly); /// <summary> /// Create instance of type. Index: AbstractStubMaker.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/TestFramework/AbstractStubMaker.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AbstractStubMaker.cs 29 Jan 2005 09:13:32 -0000 1.2 --- AbstractStubMaker.cs 5 Feb 2005 22:05:11 -0000 1.3 *************** *** 69,79 **** /// Get list of parameter types on a <see cref="MethodInfo"/>. /// </summary> ! /// <param name="mi"><see cref="MethodInfo"/> of method we're /// interested in</param> /// <returns><see cref="IList"/> of parameter types.</returns> ! protected static IList GetParameterTypes( MethodInfo mi ) { ArrayList types = new ArrayList(); ! foreach (ParameterInfo pi in mi.GetParameters()) { types.Add(pi.ParameterType); --- 69,79 ---- /// Get list of parameter types on a <see cref="MethodInfo"/>. /// </summary> ! /// <param name="targetMethodInfo"><see cref="MethodInfo"/> of method we're /// interested in</param> /// <returns><see cref="IList"/> of parameter types.</returns> ! protected static IList GetParameterTypes( MethodInfo targetMethodInfo ) { ArrayList types = new ArrayList(); ! foreach (ParameterInfo pi in targetMethodInfo.GetParameters()) { types.Add(pi.ParameterType); Index: Implementation.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/TestFramework/Implementation.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Implementation.cs 5 Feb 2005 21:46:27 -0000 1.3 --- Implementation.cs 5 Feb 2005 22:05:12 -0000 1.4 *************** *** 19,23 **** private static ITestFramework _instance = null; private static object _lock = new object(); - /// <summary> /// Global instance of <see cref="ITestFramework"/> --- 19,22 ---- |
From: Griffin C. <gc...@us...> - 2005-02-05 22:05:20
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Security/Principal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12423/DotNetMock.Framework/Security/Principal Modified Files: MockIIdentity.cs MockIPrincipal.cs Log Message: - Various FxCop fixes Index: MockIPrincipal.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Security/Principal/MockIPrincipal.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MockIPrincipal.cs 21 Mar 2004 22:42:51 -0000 1.4 --- MockIPrincipal.cs 5 Feb 2005 22:05:09 -0000 1.5 *************** *** 26,32 **** /// Default Constructor /// </summary> ! public MockIPrincipal() { - this.name = "MockIPrincipal"; _roles = new ArrayList(); } --- 26,31 ---- /// Default Constructor /// </summary> ! public MockIPrincipal() : base("MockIPrincipal") { _roles = new ArrayList(); } Index: MockIIdentity.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/Security/Principal/MockIIdentity.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MockIIdentity.cs 21 Mar 2004 22:42:51 -0000 1.4 --- MockIIdentity.cs 5 Feb 2005 22:05:09 -0000 1.5 *************** *** 26,32 **** /// Default Constructor /// </summary> ! public MockIIdentity() { - this.name = "MockIdentity"; } #region Mock Methods --- 26,31 ---- /// Default Constructor /// </summary> ! public MockIIdentity() : base("MockIdentity") { } #region Mock Methods |
From: Griffin C. <gc...@us...> - 2005-02-05 22:05:20
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12423/DotNetMock Modified Files: AbstractExpectation.cs IExpectation.cs MockObject.cs Log Message: - Various FxCop fixes Index: MockObject.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/MockObject.cs,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** MockObject.cs 2 Aug 2004 21:22:37 -0000 1.19 --- MockObject.cs 5 Feb 2005 22:05:10 -0000 1.20 *************** *** 12,21 **** /// Field to hold the name of this MockObject /// </summary> ! protected string name = null; /// <summary> /// Flag to indicate if this object has been verified /// </summary> ! protected bool verified = false; /// <summary> --- 12,21 ---- /// Field to hold the name of this MockObject /// </summary> ! private string _name = null; /// <summary> /// Flag to indicate if this object has been verified /// </summary> ! private bool _verified = false; /// <summary> *************** *** 31,35 **** public MockObject() { ! name = "MockObject"; } /// <summary> --- 31,35 ---- public MockObject() { ! _name = "MockObject"; } /// <summary> *************** *** 38,42 **** public bool IsVerified { ! get { return verified; } } --- 38,42 ---- public bool IsVerified { ! get { return _verified; } } *************** *** 55,59 **** { Verifier.Verify(this); ! verified = true; } /// <summary> --- 55,59 ---- { Verifier.Verify(this); ! _verified = true; } /// <summary> *************** *** 64,72 **** get { ! return name; } set { ! name = value; } } --- 64,72 ---- get { ! return _name; } set { ! _name = value; } } Index: IExpectation.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/IExpectation.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** IExpectation.cs 10 Oct 2004 07:53:31 -0000 1.5 --- IExpectation.cs 5 Feb 2005 22:05:10 -0000 1.6 *************** *** 16,20 **** /// Sets the verify immediate flag /// </summary> ! bool VerifyImmediate {set;} /// <summary> /// Gets should check immediate --- 16,20 ---- /// Sets the verify immediate flag /// </summary> ! bool VerifyImmediate {get;set;} /// <summary> /// Gets should check immediate Index: AbstractExpectation.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/AbstractExpectation.cs,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** AbstractExpectation.cs 10 Oct 2004 07:53:31 -0000 1.15 --- AbstractExpectation.cs 5 Feb 2005 22:05:10 -0000 1.16 *************** *** 22,26 **** /// Flag to indicate if this object has been verified /// </summary> ! protected bool verified = false; /// <summary> /// Verifys current object and all MockObject fields within. --- 22,26 ---- /// Flag to indicate if this object has been verified /// </summary> ! private bool _verified = false; /// <summary> /// Verifys current object and all MockObject fields within. *************** *** 47,50 **** --- 47,54 ---- public bool VerifyImmediate { + get + { + return this._verifyImmediate; + } set { *************** *** 76,80 **** public bool IsVerified { ! get { return verified; } } } --- 80,84 ---- public bool IsVerified { ! get { return _verified; } } } |
From: Griffin C. <gc...@us...> - 2005-02-05 21:52:51
|
Update of /cvsroot/dotnetmock/dotnetmock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9755 Removed Files: dotnetmock.public Log Message: - Not delaying signing assemblies --- dotnetmock.public DELETED --- |
From: Griffin C. <gc...@us...> - 2005-02-05 21:49:19
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9062/DotNetMock.Core Removed Files: ITestFramework.cs Log Message: --- ITestFramework.cs DELETED --- |
From: Griffin C. <gc...@us...> - 2005-02-05 21:47:19
|
Update of /cvsroot/dotnetmock/dotnetmock/docs/ChangeLogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8705/docs/ChangeLogs Modified Files: Changes-0.7.4.txt Log Message: - updated changelog Index: Changes-0.7.4.txt =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/docs/ChangeLogs/Changes-0.7.4.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Changes-0.7.4.txt 5 Feb 2005 20:44:08 -0000 1.2 --- Changes-0.7.4.txt 5 Feb 2005 21:47:10 -0000 1.3 *************** *** 1,2 **** - Signing Assemblies ! - Dynamic loading of test assemblies \ No newline at end of file --- 1,3 ---- - Signing Assemblies ! - Dynamic loading of test assemblies ! - Moved ITestFramework from DotNetMock.Core assembly to DotNetMock assembly, while keeping namespace the same. |
From: Griffin C. <gc...@us...> - 2005-02-05 21:46:39
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8391/DotNetMock.Core Removed Files: .cvsignore DotNetMock.Core.csproj Log Message: - Moved ITestFramework.cs to DotNetMock assembly - removed DotNetMock.Core assembly - Updated build file --- .cvsignore DELETED --- --- DotNetMock.Core.csproj DELETED --- |
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 |
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.TestFramework.Tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8391/DotNetMock.TestFramework.Tests Modified Files: DotNetMock.TestFramework.Tests.csproj ImplementationFactoryTests.cs MbUnitStubMakerTests.cs NUnitStubMakerTests.cs csUnitStubMakerTests.cs Log Message: - Moved ITestFramework.cs to DotNetMock assembly - removed DotNetMock.Core assembly - Updated build file Index: NUnitStubMakerTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.TestFramework.Tests/NUnitStubMakerTests.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** NUnitStubMakerTests.cs 29 Jan 2005 09:13:32 -0000 1.2 --- NUnitStubMakerTests.cs 5 Feb 2005 21:46:26 -0000 1.3 *************** *** 6,14 **** using System.Reflection; using System.Reflection.Emit; ! using NUnit.Framework; using DotNetMock.TestFramework; - using DotNetMock.Core; #endregion --- 6,13 ---- using System.Reflection; using System.Reflection.Emit; ! using DotNetMock.Core; using NUnit.Framework; using DotNetMock.TestFramework; #endregion Index: ImplementationFactoryTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.TestFramework.Tests/ImplementationFactoryTests.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ImplementationFactoryTests.cs 29 Jan 2005 09:13:32 -0000 1.2 --- ImplementationFactoryTests.cs 5 Feb 2005 21:46:26 -0000 1.3 *************** *** 6,14 **** using System.Collections; using System.Reflection; ! using NUnit.Framework; using DotNetMock.TestFramework; - using DotNetMock.Core; #endregion --- 6,13 ---- using System.Collections; using System.Reflection; ! using DotNetMock.Core; using NUnit.Framework; using DotNetMock.TestFramework; #endregion *************** *** 175,180 **** } ! public class TestStaticImplementation : ! ITestFramework { #region ITestFramework Members --- 174,178 ---- } ! public class TestStaticImplementation : ITestFramework { #region ITestFramework Members Index: DotNetMock.TestFramework.Tests.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.TestFramework.Tests/DotNetMock.TestFramework.Tests.csproj,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DotNetMock.TestFramework.Tests.csproj 29 Jan 2005 09:13:32 -0000 1.2 --- DotNetMock.TestFramework.Tests.csproj 5 Feb 2005 21:46:25 -0000 1.3 *************** *** 81,89 **** /> <Reference - Name = "DotNetMock.Core" - Project = "{5666DF57-5109-4C5F-967D-EEDC554B8E55}" - Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" - /> - <Reference Name = "DotNetMock" Project = "{1AD0CD00-16FA-4456-B2ED-A47406957228}" --- 81,84 ---- Index: csUnitStubMakerTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.TestFramework.Tests/csUnitStubMakerTests.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** csUnitStubMakerTests.cs 29 Jan 2005 09:13:32 -0000 1.2 --- csUnitStubMakerTests.cs 5 Feb 2005 21:46:26 -0000 1.3 *************** *** 6,14 **** using System.Reflection; using System.Reflection.Emit; ! using NUnit.Framework; using DotNetMock.TestFramework; - using DotNetMock.Core; #endregion --- 6,13 ---- using System.Reflection; using System.Reflection.Emit; ! using DotNetMock.Core; using NUnit.Framework; using DotNetMock.TestFramework; #endregion Index: MbUnitStubMakerTests.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.TestFramework.Tests/MbUnitStubMakerTests.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MbUnitStubMakerTests.cs 29 Jan 2005 09:13:32 -0000 1.2 --- MbUnitStubMakerTests.cs 5 Feb 2005 21:46:26 -0000 1.3 *************** *** 6,14 **** using System.Reflection; using System.Reflection.Emit; ! using NUnit.Framework; using DotNetMock.TestFramework; - using DotNetMock.Core; #endregion --- 6,13 ---- using System.Reflection; using System.Reflection.Emit; ! using DotNetMock.Core; using NUnit.Framework; using DotNetMock.TestFramework; #endregion |
From: Griffin C. <gc...@us...> - 2005-02-05 21:46:37
|
Update of /cvsroot/dotnetmock/dotnetmock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8391 Modified Files: DotNetMock.build DotNetMock.sln Log Message: - Moved ITestFramework.cs to DotNetMock assembly - removed DotNetMock.Core assembly - Updated build file Index: DotNetMock.sln =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.sln,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** DotNetMock.sln 5 Feb 2005 20:20:17 -0000 1.16 --- DotNetMock.sln 5 Feb 2005 21:46:26 -0000 1.17 *************** *** 20,27 **** EndProjectSection EndProject - Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock.Core", "DotNetMock.Core\DotNetMock.Core.csproj", "{5666DF57-5109-4C5F-967D-EEDC554B8E55}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection - EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotNetMock.TestFramework.Tests", "DotNetMock.TestFramework.Tests\DotNetMock.TestFramework.Tests.csproj", "{6C2904D4-ADCC-4980-AED0-64A8C6F3AF69}" ProjectSection(ProjectDependencies) = postProject --- 20,23 ---- *************** *** 54,61 **** {80B98B32-57CB-4989-B506-0F2B0AD94DBA}.Release.ActiveCfg = Release|.NET {80B98B32-57CB-4989-B506-0F2B0AD94DBA}.Release.Build.0 = Release|.NET - {5666DF57-5109-4C5F-967D-EEDC554B8E55}.Debug.ActiveCfg = Debug|.NET - {5666DF57-5109-4C5F-967D-EEDC554B8E55}.Debug.Build.0 = Debug|.NET - {5666DF57-5109-4C5F-967D-EEDC554B8E55}.Release.ActiveCfg = Release|.NET - {5666DF57-5109-4C5F-967D-EEDC554B8E55}.Release.Build.0 = Release|.NET {6C2904D4-ADCC-4980-AED0-64A8C6F3AF69}.Debug.ActiveCfg = Debug|.NET {6C2904D4-ADCC-4980-AED0-64A8C6F3AF69}.Debug.Build.0 = Debug|.NET --- 50,53 ---- Index: DotNetMock.build =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.build,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** DotNetMock.build 5 Feb 2005 21:12:49 -0000 1.17 --- DotNetMock.build 5 Feb 2005 21:46:26 -0000 1.18 *************** *** 51,60 **** </target> <target name="build" description="Builds .NET Mock Object modules" depends="init"> - <csc target="library" output="${build.dir}/DotNetMock.Core.dll" debug="${debug.build}" doc="${build.dir}\DotNetMock.Core.xml"> - <sources basedir="."> - <includes name="${build.assemblyInfo}"/> - <includes name="DotNetMock.Core/**/*.cs"/> - </sources> - </csc> <csc target="library" output="${build.dir}/DotNetMock.dll" debug="${debug.build}" doc="${build.dir}\DotNetMock.xml"> <sources basedir="."> --- 51,54 ---- *************** *** 62,68 **** <includes name="DotNetMock/**/*.cs"/> </sources> - <references basedir="."> - <includes name="build/DotNetMock.Core.dll" /> - </references> </csc> <csc target="library" output="${build.dir}/DotNetMock.Tests.dll" debug="${debug.build}"> --- 56,59 ---- *************** *** 111,115 **** <includes name="lib/nunit.framework.dll"/> <includes name="build/DotNetMock.dll"/> - <includes name="build/DotNetMock.Core.dll"/> </references> </csc> --- 102,105 ---- *************** *** 156,164 **** </fileset> </copy> - <copy todir="${src.dir}/DotNetMock.Core"> - <fileset basedir="DotNetMock.Core"> - <includes name="**/*.cs"/> - </fileset> - </copy> <copy todir="${src.dir}/DotNetMock.Framework"> <fileset basedir="DotNetMock.Framework"> --- 146,149 ---- *************** *** 306,310 **** <fileset basedir="."> <includes name="DotNetMock/**/*"/> - <includes name="DotNetMock.Core/**/*"/> <includes name="DotNetMock.Framework/**/*"/> <excludes name="DotNetMock.Examples/**/*"/> --- 291,294 ---- |
From: Griffin C. <gc...@us...> - 2005-02-05 21:46:37
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8391/DotNetMock/Core Added Files: ITestFramework.cs Log Message: - Moved ITestFramework.cs to DotNetMock assembly - removed DotNetMock.Core assembly - Updated build file --- NEW FILE: ITestFramework.cs --- using System; namespace DotNetMock.Core { /// <summary> /// Interface to encapsulate specific testing framework from DotNetMock. /// </summary> public interface ITestFramework { #region AssertEquals methods /// <summary> /// Asserts that two objects are equal. If the objects are not equal the assertions fails with the /// given message. /// </summary> void AssertEquals( string message, object expectedObject, object actualObject ); /// <summary> /// Asserts that two objects are equal. If the objects are not equal the assertions fails. /// </summary> void AssertEquals( object expectedObject, object actualObject ); #endregion #region Fail methods /// <summary> /// Fails a test with no message /// </summary> void Fail(); /// <summary> /// Fails a test with the specified message /// </summary> void Fail( string message ); #endregion #region Assert methods /// <summary> /// Asserts that a given condition is true. If the condition is not true, the assertion fails /// with the given message. /// </summary> void Assert( string message, bool assertion ); /// <summary> /// Asserts that a given condition is true. If the condition is not true, the assertion fails. /// </summary> void Assert( bool assertion ); #endregion #region AssertNull methods /// <summary> /// Asserts that an object is null. If the object is not null, the assertion fails with the given /// message. /// </summary> void AssertNull( string message, object assertion ); /// <summary> /// Asserts that an object is null. If the object is not null, the assertion fails. /// </summary> void AssertNull( object assertion ); #endregion #region AssertNotNull methods /// <summary> /// Asserts that an object is not null. If the object is null, the assertion fails with the given /// message. /// </summary> void AssertNotNull( string message, object assertion ); /// <summary> /// Asserts that an object is not null. If the object is null, the assertion fails. /// </summary> void AssertNotNull( object assertion ); #endregion } } |
From: Griffin C. <gc...@us...> - 2005-02-05 21:46:37
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8391/DotNetMock Modified Files: Assertion.cs DotNetMock.csproj Log Message: - Moved ITestFramework.cs to DotNetMock assembly - removed DotNetMock.Core assembly - Updated build file Index: Assertion.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/Assertion.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Assertion.cs 29 Jan 2005 09:13:32 -0000 1.6 --- Assertion.cs 5 Feb 2005 21:46:27 -0000 1.7 *************** *** 4,9 **** #region Imports using System; - using DotNetMock.Core; #endregion --- 4,9 ---- #region Imports using System; using DotNetMock.Core; + #endregion Index: DotNetMock.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/DotNetMock.csproj,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** DotNetMock.csproj 5 Feb 2005 21:12:50 -0000 1.32 --- DotNetMock.csproj 5 Feb 2005 21:46:27 -0000 1.33 *************** *** 80,88 **** HintPath = "C:\WINNT\Microsoft.NET\Framework\v1.0.3705\System.XML.dll" /> - <Reference - Name = "DotNetMock.Core" - Project = "{5666DF57-5109-4C5F-967D-EEDC554B8E55}" - Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" - /> </References> </Build> --- 80,83 ---- *************** *** 200,203 **** --- 195,203 ---- /> <File + RelPath = "Core\ITestFramework.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Dynamic\AbstractArgumentMutator.cs" SubType = "Code" |
From: Griffin C. <gc...@us...> - 2005-02-05 21:44:40
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8091/Core Log Message: Directory /cvsroot/dotnetmock/dotnetmock/DotNetMock/Core added to the repository |
From: Griffin C. <gc...@us...> - 2005-02-05 21:14:34
|
Update of /cvsroot/dotnetmock/dotnetmock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2502 Modified Files: StrongCommonAssemblyInfo.cs Log Message: - Fixed strong key reference Index: StrongCommonAssemblyInfo.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/StrongCommonAssemblyInfo.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** StrongCommonAssemblyInfo.cs 5 Feb 2005 21:12:50 -0000 1.1 --- StrongCommonAssemblyInfo.cs 5 Feb 2005 21:14:25 -0000 1.2 *************** *** 13,17 **** // Delay signs assemblies ! [assembly:AssemblyKeyFileAttribute("dotnetmock.ket")] --- 13,17 ---- // Delay signs assemblies ! [assembly:AssemblyKeyFileAttribute("dotnetmock.key")] |
From: Griffin C. <gc...@us...> - 2005-02-05 21:13:35
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2065/DotNetMock.Core Modified Files: DotNetMock.Core.csproj Removed Files: AssemblyInfo.cs Log Message: - Re-added nunit.framework for direct unit tests - Removed individual AssemblyInfo files - Added CommonAssemblyInfo files. - Moved strong naming into release & debug builds Index: DotNetMock.Core.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Core/DotNetMock.Core.csproj,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DotNetMock.Core.csproj 1 Jan 2005 01:44:38 -0000 1.4 --- DotNetMock.Core.csproj 5 Feb 2005 21:12:48 -0000 1.5 *************** *** 85,93 **** <Include> <File - RelPath = "AssemblyInfo.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "ITestFramework.cs" SubType = "Code" --- 85,88 ---- --- AssemblyInfo.cs DELETED --- |
From: Griffin C. <gc...@us...> - 2005-02-05 21:13:04
|
Update of /cvsroot/dotnetmock/dotnetmock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2065 Modified Files: DotNetMock.build Added Files: CommonAssemblyInfo.cs StrongCommonAssemblyInfo.cs Log Message: - Re-added nunit.framework for direct unit tests - Removed individual AssemblyInfo files - Added CommonAssemblyInfo files. - Moved strong naming into release & debug builds --- NEW FILE: StrongCommonAssemblyInfo.cs --- using System; using System.Reflection; using System.Runtime.InteropServices; // Marks CLS Compliance [assembly:CLSCompliant(true)] // Marks COM Visibility to false. We don't want COM clients to use this assembly [assembly:ComVisible(false)] // Sets assembly version [assembly: AssemblyVersion("0.7.4.0")] // Delay signs assemblies [assembly:AssemblyKeyFileAttribute("dotnetmock.ket")] Index: DotNetMock.build =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.build,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** DotNetMock.build 1 Feb 2005 23:24:17 -0000 1.16 --- DotNetMock.build 5 Feb 2005 21:12:49 -0000 1.17 *************** *** 1,9 **** ! <project name=".NET Mock Objects master build file"> <description>Master build file for .NET Mock Objects project</description> ! <property name="debug" value="false"/> <property name="VisualStudioTemplates" value="VisualStudioTemplates"/> <property name="VisualStudioTemplates2003" value="VisualStudioTemplates2003"/> <property name="project.name" value="DotNetMock"/> ! <property name="version" value="0.7.3"/> <property name="build.dir" value="build/"/> <property name="dist.dir" value="dist"/> --- 1,10 ---- ! <project name=".NET Mock Objects master build file" default="test"> <description>Master build file for .NET Mock Objects project</description> ! <property name="project.config" value="debug"/> ! <property name="debug.build" value="true"/> <property name="VisualStudioTemplates" value="VisualStudioTemplates"/> <property name="VisualStudioTemplates2003" value="VisualStudioTemplates2003"/> <property name="project.name" value="DotNetMock"/> ! <property name="version" value="0.7.4"/> <property name="build.dir" value="build/"/> <property name="dist.dir" value="dist"/> *************** *** 13,20 **** <property name="doc.dir" value="${package.dir}/doc/" /> <property name="lib.dir" value="lib/"/> ! <tstamp/> <target name="init" description="Setup environment"> <mkdir dir="${build.dir}" failonerror="false"/> </target> <target name="clean" description="Cleans project to pre-build state"> --- 14,31 ---- <property name="doc.dir" value="${package.dir}/doc/" /> <property name="lib.dir" value="lib/"/> ! <tstamp/> + + <target name="debug" description="Perform a 'debug' build"> + <property name="build.assemblyInfo" value="CommonAssemblyInfo.cs"/> + </target> + + <target name="release" description="Perform a 'release' build"> + <property name="build.assemblyInfo" value="StrongCommonAssemblyInfo.cs"/> + </target> + <target name="init" description="Setup environment"> <mkdir dir="${build.dir}" failonerror="false"/> + <call target="${project.config}" /> </target> <target name="clean" description="Cleans project to pre-build state"> *************** *** 40,50 **** </target> <target name="build" description="Builds .NET Mock Object modules" depends="init"> ! <csc target="library" output="${build.dir}/DotNetMock.Core.dll" debug="${debug}" doc="${build.dir}\DotNetMock.Core.xml"> <sources basedir="."> <includes name="DotNetMock.Core/**/*.cs"/> </sources> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.dll" debug="${debug}" doc="${build.dir}\DotNetMock.xml"> <sources basedir="."> <includes name="DotNetMock/**/*.cs"/> </sources> --- 51,63 ---- </target> <target name="build" description="Builds .NET Mock Object modules" depends="init"> ! <csc target="library" output="${build.dir}/DotNetMock.Core.dll" debug="${debug.build}" doc="${build.dir}\DotNetMock.Core.xml"> <sources basedir="."> + <includes name="${build.assemblyInfo}"/> <includes name="DotNetMock.Core/**/*.cs"/> </sources> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.dll" debug="${debug.build}" doc="${build.dir}\DotNetMock.xml"> <sources basedir="."> + <includes name="${build.assemblyInfo}"/> <includes name="DotNetMock/**/*.cs"/> </sources> *************** *** 53,57 **** </references> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.Tests.dll" debug="${debug}"> <sources basedir="."> <includes name="DotNetMock.Tests/**/*.cs"/> --- 66,70 ---- </references> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.Tests.dll" debug="${debug.build}"> <sources basedir="."> <includes name="DotNetMock.Tests/**/*.cs"/> *************** *** 62,67 **** </references> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.Framework.dll" debug="${debug}" doc="${build.dir}\DotNetMock.Framework.xml"> <sources basedir="."> <includes name="DotNetMock.Framework/**/*.cs"/> </sources> --- 75,81 ---- </references> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.Framework.dll" debug="${debug.build}" doc="${build.dir}\DotNetMock.Framework.xml"> <sources basedir="."> + <includes name="${build.assemblyInfo}"/> <includes name="DotNetMock.Framework/**/*.cs"/> </sources> *************** *** 70,74 **** </references> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.Framework.Tests.dll" debug="${debug}"> <sources basedir="."> <includes name="DotNetMock.Framework.Tests/**/*.cs"/> --- 84,88 ---- </references> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.Framework.Tests.dll" debug="${debug.build}"> <sources basedir="."> <includes name="DotNetMock.Framework.Tests/**/*.cs"/> *************** *** 80,84 **** </references> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.Examples.dll" debug="${debug}"> <sources basedir="."> <includes name="DotNetMock.Examples/**/*.cs"/> --- 94,98 ---- </references> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.Examples.dll" debug="${debug.build}"> <sources basedir="."> <includes name="DotNetMock.Examples/**/*.cs"/> *************** *** 90,94 **** </references> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.TestFramework.Tests.dll" debug="${debug}"> <sources basedir="."> <includes name="DotNetMock.TestFramework.Tests/**/*.cs"/> --- 104,108 ---- </references> </csc> ! <csc target="library" output="${build.dir}/DotNetMock.TestFramework.Tests.dll" debug="${debug.build}"> <sources basedir="."> <includes name="DotNetMock.TestFramework.Tests/**/*.cs"/> *************** *** 107,125 **** </copy> </target> - <target name="skip-verification" - description="Register DotNetMock assemblies for verification skipping"> - <exec program="sn" commandline="-Vr ${build.dir}/DotNetMock.Core.dll"/> - <exec program="sn" commandline="-Vr ${build.dir}/DotNetMock.dll"/> - <exec program="sn" commandline="-Vr ${build.dir}/DotNetMock.Framework.dll"/> - </target> - <target name="sign-assemblies" depends="build" failonerror="true"> - <delay-sign keyfile="dotnetmock.key" verbose="true"> - <targets> - <include name="${build.dir}/DotNetMock.Core.dll"/> - <include name="${build.dir}/DotNetMock.dll"/> - <include name="${build.dir}/DotNetMock.Framework.dll"/> - </targets> - </delay-sign> - </target> <target name="package" description="Collects and packs up the distribution" depends="buildMSDN"> <mkdir dir="${dist.dir}" failonerror="false"/> --- 121,124 ---- --- NEW FILE: CommonAssemblyInfo.cs --- using System; using System.Reflection; using System.Runtime.InteropServices; // Marks CLS Compliance [assembly:CLSCompliant(true)] // Marks COM Visibility to false. We don't want COM clients to use this assembly [assembly:ComVisible(false)] // Sets assembly version [assembly: AssemblyVersion("0.7.4.0")] |
From: Griffin C. <gc...@us...> - 2005-02-05 21:13:04
|
Update of /cvsroot/dotnetmock/dotnetmock/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2065/lib Added Files: nunit.framework.dll Log Message: - Re-added nunit.framework for direct unit tests - Removed individual AssemblyInfo files - Added CommonAssemblyInfo files. - Moved strong naming into release & debug builds --- NEW FILE: nunit.framework.dll --- (This appears to be a binary file; contents omitted.) |
From: Griffin C. <gc...@us...> - 2005-02-05 21:13:04
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2065/DotNetMock Modified Files: DotNetMock.csproj Removed Files: AssemblyInfo.cs Log Message: - Re-added nunit.framework for direct unit tests - Removed individual AssemblyInfo files - Added CommonAssemblyInfo files. - Moved strong naming into release & debug builds Index: DotNetMock.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/DotNetMock.csproj,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** DotNetMock.csproj 29 Jan 2005 09:13:32 -0000 1.31 --- DotNetMock.csproj 5 Feb 2005 21:12:50 -0000 1.32 *************** *** 105,113 **** /> <File - RelPath = "AssemblyInfo.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "Assertion.cs" SubType = "Code" --- 105,108 ---- --- AssemblyInfo.cs DELETED --- |
From: Griffin C. <gc...@us...> - 2005-02-05 21:13:03
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2065/DotNetMock.Examples Modified Files: DotNetMock.Examples.csproj Log Message: - Re-added nunit.framework for direct unit tests - Removed individual AssemblyInfo files - Added CommonAssemblyInfo files. - Moved strong naming into release & debug builds Index: DotNetMock.Examples.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples/DotNetMock.Examples.csproj,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** DotNetMock.Examples.csproj 1 Jan 2005 01:49:06 -0000 1.7 --- DotNetMock.Examples.csproj 5 Feb 2005 21:12:49 -0000 1.8 *************** *** 100,108 **** <Include> <File - RelPath = "AssemblyInfo.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "CustomExpectation\ExpectationPerson.cs" SubType = "Code" --- 100,103 ---- |
From: Griffin C. <gc...@us...> - 2005-02-05 21:13:03
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2065/DotNetMock.Framework Modified Files: DotNetMock.Framework.csproj Removed Files: AssemblyInfo.cs Log Message: - Re-added nunit.framework for direct unit tests - Removed individual AssemblyInfo files - Added CommonAssemblyInfo files. - Moved strong naming into release & debug builds Index: DotNetMock.Framework.csproj =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Framework/DotNetMock.Framework.csproj,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** DotNetMock.Framework.csproj 1 Jan 2005 01:49:07 -0000 1.16 --- DotNetMock.Framework.csproj 5 Feb 2005 21:12:49 -0000 1.17 *************** *** 90,98 **** <Include> <File - RelPath = "AssemblyInfo.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "ComponentModel\MockMarshalByValueComponent.cs" SubType = "Code" --- 90,93 ---- --- AssemblyInfo.cs DELETED --- |
From: Griffin C. <gc...@us...> - 2005-02-05 20:44:21
|
Update of /cvsroot/dotnetmock/dotnetmock/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28649/lib Removed Files: MbUnit.Core.dll NGraphviz.Layout.dll QuickGraph.Algorithms.dll QuickGraph.Collections.dll QuickGraph.Concepts.dll QuickGraph.Exceptions.dll QuickGraph.Predicates.dll QuickGraph.Representations.dll QuickGraph.Serialization.dll QuickGraph.dll csUnit.dll nunit.framework.dll Log Message: - Removed obsolete libraries - Updated Changelog --- QuickGraph.Collections.dll DELETED --- --- QuickGraph.dll DELETED --- --- NGraphviz.Layout.dll DELETED --- --- QuickGraph.Exceptions.dll DELETED --- --- MbUnit.Core.dll DELETED --- --- QuickGraph.Representations.dll DELETED --- --- QuickGraph.Concepts.dll DELETED --- --- QuickGraph.Serialization.dll DELETED --- --- nunit.framework.dll DELETED --- --- csUnit.dll DELETED --- --- QuickGraph.Predicates.dll DELETED --- --- QuickGraph.Algorithms.dll DELETED --- |
From: Griffin C. <gc...@us...> - 2005-02-05 20:44:19
|
Update of /cvsroot/dotnetmock/dotnetmock/docs/ChangeLogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28649/docs/ChangeLogs Modified Files: Changes-0.7.4.txt Log Message: - Removed obsolete libraries - Updated Changelog Index: Changes-0.7.4.txt =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/docs/ChangeLogs/Changes-0.7.4.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Changes-0.7.4.txt 27 Jan 2005 20:17:22 -0000 1.1 --- Changes-0.7.4.txt 5 Feb 2005 20:44:08 -0000 1.2 *************** *** 1 **** --- 1,2 ---- - Signing Assemblies + - Dynamic loading of test assemblies \ No newline at end of file |