--- "Haltunen, Mathew" <[EMAIL PROTECTED]> wrote: > Hello all, > > I've used ant in the past, but now I am using nant to build .NET > applications. I am running into a problem handling dependencies. > Here's the break down. > > The dependencies that are handled with the "pre.build" target are built > and placed in the directory where this nant script is executed (the > .\bin directory). The problem occurs when the "build" target includes > the dlls that are created by the "pre.build" target. The name spaces in > the "pre.build" dlls are not recognized in the <include> task in the > "build" target. Has anyone seen this before? Any help is much > appreciated.
Are the pre.build dlls there when you're done? This is most likely a path problem because the fact the pre.build task runs first means that the dlls should be there. As a test you could just verify the dlls are there and run the main build separately. ------------------------------------------------------- This SF.NET email is sponsored by: eBay Great deals on office technology -- on eBay now! Click here: http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5 _______________________________________________ Nant-developers mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/nant-developers
