Hi All,

As you can see I have two build files, I NAnt from the ProjectA\Software
directory then my solution builds, but if I run my TopLevel.build in the
C:\Development directory it complains that it can not find
C:\Development\ProjectA.sln, when it should be loading
C:\Development\ProjectA\Software\ProjectA.sln.  I would like to be able to
run NAnt on both of my build files.  I think I need to change the current
directory for each of my sub projects, but I can not find out how to do
this.

Thanks

Stephan

C:\Development\TopLevel.build
<?xml version="1.0"?>
<project name="TopLevel" default="build" >
        <nant buildfile="ProjectA/Software/ProjectA.build" target="build" />
</project>

C:\Development\ProjectA\Software\ProjectA.build
<?xml version="1.0"?>
<project name="ProjectA" default="build">
        <target name="build" >
                <solution solutionfile="ProjectA.sln"
configuration="release" />
        </target>
</project>



********************************************************************
This email and any attachments are confidential to the intended
recipient and may also be privileged. If you are not the intended
recipient please delete it from your system and notify the sender.
You should not copy it or use it for any purpose nor disclose or
distribute its contents to any other person.
********************************************************************


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to