File: default.build

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