Rod Ayers wrote:

The other situation is where I don't have a complete environment available, or 
I'm trying to assess task flow.  Both of these conditions are presently true 
right now as I'm starting up a BizTalk Build/Deploy autoamtion project.  Yes, I 
have found lots of sample code.  Now I want to get an idea of how it all fits 
together, so I can begin to sort out what

If I'm understanding you correctly, you're trying to reverse engineer the samples so you can figure out how to use them. Correct? I guess that's one usage scenario that didn't occur to me.

I can "adapt" (use/configure/change), and what I might have to add. I'm waiting and 
waiting for the support guys to get my VMWare Build/Deploy "development" environmetns up, 
and trying to do something profitable in the mean time.
For what it's worth, the basic VMWare Server is free. It's currently in beta, but they've said publicly it will continue to be free. It doesn't seem to need any particular privileges to run. This wouldn't help you if your organization is so tightly locked down that you wouldn't be allowed to install a version of Windows yourself (though VMWare would let you isolate it on a virtual network), but otherwise, given that, a Windows OS CD or ISO image, and a key, you wouldn't have to wait for them. (I guess the reason I like small companies is never having to wait for IT.)

  <if test="${build.traceonly}" >
     <echo message="Kilroy was here:  ${target::get-current-target()}"/>
  <if/>

  <if test="not ${build.traceonly}" >
<call target="MyTask.DoIt" /> <if/>
I generally prefer the style:
   <echo message="Kilroy was here..." if="${build.traceonly}"     />
   <call target="MyTask.DoIt"         unless="${build.traceonly}" />

but to each his own.
Gary





-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to