A couple question on the latest version of NAnt.

1.  For building a solution file, I get an 'Unknown task <solution>' error.
I was under the impression you can build off a solution file using code
similar to the following:

<?xml version="1.0"?>
<project name="nant" default="x" xmlnds="http://tempuri.org/nant-vs.xsd";>
        <target name="x" description="Perform a 'debug' build">
                <!-- Build the solution "main.sln", release configuration
-->
                <solution solutionfile="main.sln" configuration="release">
                </solution>
                <!-- Build all of the projects under the projects/
directory, 
                >>automatically resolving dependencies, use the release
configuration for 
                >>each -->
                <solution configuration="release">
                        <projects>
                                <includes name="projects\**\*.csproj"/>
                        </projects>
                </solution>
        </target>
</project>

2.  If my solution includes an MSI project...can NAnt build these files as
of this version?

Thanks...


-------------------------------------------------------
This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger 
for complex code. Debugging C/C++ programs can leave you feeling lost and 
disoriented. TotalView can help you find your way. Available on major UNIX 
and Linux platforms. Try it free. www.etnus.com
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to