Hi all. My first hour in Nant. Not sure why I get zero files compiling. I grabbed the build file from a using nant tutorial.
any help would be appreciated.
dave
NAnt 0.84 (Build 0.84.1455.0; net-1.0.win32; release; 12/26/2003)
Copyright (C) 2001-2003 Gerry Shaw
Buildfile: file:///C:/Documents and Settings/dave/My Documents/my C#/HelloWorld/default.build
Target(s) specified: build
build:
[csc] Compiling 0 files to C:\Documents and Settings\dave\My Documents\HelloWorld.exe.
fatal error CS2008: No inputs specified
BUILD FAILED
External Program Failed: C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\csc.exe (return code was 1)
Total time: 0.2 seconds.
here is the build file
<?xml version="1.0"?>
<project name="HelloWorld" default="build">
<target name="build">
<csc target="exe" output="HelloWorld.exe">
<sources>
<includes name="*.cs" />
</sources>
</csc>
</target>
</project>