rather than comment out that reference try building with :
nant -D:nant.dir=C:\cvs\nant\build\nant-0.8.3-debug

if you've just built a new NAnt from source then C:\cvs\nant\build\nant-0.8.3-debug\bin\ will contain NAnt.Core.Tests.dll, satisfying the reference.

Ian

Ian MacLean writes:


they are building now but not yet passing for me. Missing dependency issues. I'll look into it.



Attached is a patch that partially fixes the build issue. Note that /NAntContrib/Tests/Tasks/TlbImpTaskTest.cs still does not compile
due to an actual dependency on Tests.Nant.Core (derives from the test base
class).


John C Barstow
------------------------------
Index: Tests/Alltests.cs
===================================================================
RCS file: /cvsroot/nantcontrib/NAntContrib/Tests/Alltests.cs,v
retrieving revision 1.4
diff -u -r1.4 Alltests.cs
--- Tests/Alltests.cs   2 Jul 2003 01:06:02 -0000       1.4
+++ Tests/Alltests.cs   3 Jul 2003 02:02:55 -0000
@@ -27,7 +27,7 @@
using NUnit.Framework;
using NAnt.Core.Attributes;
using NAnt.Core;
-using Tests.NAnt.Core;
+//using Tests.NAnt.Core;

namespace NAnt.Contrib.Tests {

Index: Tests/Tasks/TlbImpTaskTest.cs
===================================================================
RCS file: /cvsroot/nantcontrib/NAntContrib/Tests/Tasks/TlbImpTaskTest.cs,v
retrieving revision 1.4
diff -u -r1.4 TlbImpTaskTest.cs
--- Tests/Tasks/TlbImpTaskTest.cs       2 Jul 2003 01:06:02 -0000       1.4
+++ Tests/Tasks/TlbImpTaskTest.cs       3 Jul 2003 02:02:56 -0000
@@ -24,7 +24,7 @@
using System.Xml;

using NUnit.Framework;
-using Tests.NAnt.Core;
+//using Tests.NAnt.Core;

namespace NAnt.Contrib.Tests {

Index: Tests/Util/SqlStatementListTests.cs
===================================================================
RCS file:
/cvsroot/nantcontrib/NAntContrib/Tests/Util/SqlStatementListTests.cs,v
retrieving revision 1.8
diff -u -r1.8 SqlStatementListTests.cs
--- Tests/Util/SqlStatementListTests.cs 2 Jul 2003 01:06:02 -0000       1.8
+++ Tests/Util/SqlStatementListTests.cs 3 Jul 2003 02:02:56 -0000
@@ -29,7 +29,7 @@
using NAnt.Core;

using NAnt.Contrib.Util;
-using Tests.NAnt.Core;
+//using Tests.NAnt.Core;

namespace NAnt.Contrib.Tests.Util {
   /// <summary>


-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01
_______________________________________________
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers






-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01
_______________________________________________
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to