But nant think it should... Nant is trying to run /usr/bin/al.exe but
there's no such file.

I was trying to detect the availability of the al task with the stock trick:

  <if test="${not property::exists('nant.tasks.al')}">
  <echo>al task is not available. Satellite assemblies won't be
built.</echo>
  <property name="skip.satellites" value="True" />
 </if>

But had to resort instead to:

 <if test="${'mono-1.0' == nant.settings.currentframework}">
  <echo>al task is not available. Satellite assemblies won't be
built.</echo>
  <property name="skip.satellites" value="True" />
 </if>

Shouldn't al be disabled under mono?

Best regards,
Rodrigo



-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
_______________________________________________
nant-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-developers

Reply via email to