<buildfiles>不支持嵌套构建元素“references”</buildfiles>

时间:2012-06-06 06:09:30

标签: .net nant

我收到以下nant脚本的以下错误可以有人帮忙:(

错误是: 不支持嵌套构建元素&#34;引用&#34;。

请找到以下代码:

<?xml version="1.0"?>
<project name="NAnt Examples" default="build">
    <target name="*">
        <nant target="${target::get-current-target()}">
            <buildfiles>
                <include name="**/*.build" />
                <references>
                <include name="C:/Program Files/NAnt/examples/Microsoft.Practices.EnterpriseLibrary.Common.dll" />
                </references>
                <!-- avoid recursive execution of current build file -->
                <exclude name="${project::get-buildfile-path()}" />

                <exclude name="ScriptTask/script-sample.build" />
                <exclude name="Solution/**/*.build"/>
            </buildfiles>
        </nant>
    </target>
</project>

1 个答案:

答案 0 :(得分:0)

您收到此错误,因为<buildfiles>元素(通常为<fileset>)不支持将<references>作为其子元素。有关详细信息,请参阅<nant>任务的说明。