File: examples.build

package info (click to toggle)
nant 0.85-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 12,704 kB
  • ctags: 6,757
  • sloc: cs: 50,420; makefile: 129; cpp: 70; xml: 40; sh: 1
file content (16 lines) | stat: -rw-r--r-- 564 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0"?>
<project name="NAnt Examples" default="build">
    <target name="*">
        <nant target="${target::get-current-target()}">
            <buildfiles>
                <include name="**/*.build" />

                <!-- 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>