Hi all,
I've checked out the latest version of NAnt from
cvs, and I've noted some differences...
For example,
<ifnot test="${nant::property-exists('configured')}">
...
</ifnot>
is not longer valid; instead, one has to specify something
like this:
<ifnot test="${property::exists('configured')}">
...
</ifnot>
Ok, that's easy... but what's about the following target?
<target
name="build-resources"
description="Builds resource binaries">
<foreach
item="String"
in="de-DE,en-US,es-ES,fr-FR,it-IT"
delim=","
property="culture">
<mkdir
dir="${build.dir}/${package.name}/lib/${culture}"
failonerror="false"/>
<resgen
input="${module}.${culture}.resx"
output="${module}.${culture}.resources"
todir="${build.dir}/${package.name}/lib/${culture}"/>
</foreach>
</target>
The target above worked fine before the updated. Now, it just
creates the directories (e.g. /build/gekkota/lib/de-DE), period!
Any idea?
I'm working on Fedora Core 1 with mono 0.29.99.20031226.
Thanks,
Gius_.
--
----------------------------------------
Giuseppe Greco
::agamura::
phone: +41 (0)91 604 67 65
mobile: +41 (0)76 390 60 32
email: [EMAIL PROTECTED]
web: www.agamura.com
----------------------------------------
-------------------------------------------------------
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
_______________________________________________
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers