Tagged Questions

3
votes
1answer
166 views

How to make nant complain when a file is missing from a fileset

I have a fileset element in a build file that is defined as: <fileset id="fileset" basedir="."> <include name="test.txt"/> <include name="missing.txt"/> </fileset> ...
2
votes
2answers
838 views

nAnt Deleting files older than 7 days old

I would like to create a target that cleans log files older than 7 days old in a specific folder. I get an error when I try to put in a "date" element inside a fileset. How can I go about this? ...
1
vote
1answer
32 views

How to detect whether fileset is defined?

My custom NAnt task relies on a certain fileset. It is considered to be defined by the time the task executes. I'd like to make sure fileset was defined before using it. I'm thinking of something ...
1
vote
2answers
349 views

Fileset/patternset's refid attribute isn't expanded. How would you write a target that operates on an arbitrary set of files?

I have a set of targets that each do essentially the same thing except each contains a specific patternset on which to perform its tasks. I want to collapse these targets into a single "reusable" ...
0
votes
1answer
125 views

Nant Build script undifined Issue

I have the following code in a nant build script: <project name="fgs"> <property name="build.dir" value="build"/> <property name="build.bin.dir" value="${build.dir}/bin"/> ...