[NAnt-users] Powershell hangs when called from NAnt?

2012-04-04 Thread LLCard

We are calling powershell from Nant to execute a deploy script.  The script
executes properly but it never returns after completion.  

I am calling this nant script from Bamboo but I have tried directly from the
command line and it hangs as well.  Any ideas?   Thanks in advance.



target name=deployazurepackage depends=azurepackage 
echo message=Deploy Azure app with powershell calling
deployOLHazure.ps1 /
exec failonerror=true
program=C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe
workingdir=${build.dir}\build verbose=true  
arg value=-noprofile /
arg value=-nologo /
arg value=-noninteractive /
arg value=-command /
arg value=${build.dir}\build\deployOLHazure.ps1 /
arg value=${Azure.package.dir} / 
arg value=${Azure.packageName} / 
arg value=${Azure.serviceConfig} / 
arg value=${Azure.serviceName} / 
arg value=${Azure.storageName} /
arg value=;exit $LASTEXITCODE / 
/exec
/target

-- 
View this message in context: 
http://old.nabble.com/Powershell-hangs-when-called-from-NAnt--tp33559030p33559030.html
Sent from the NAnt - Users mailing list archive at Nabble.com.


--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


[NAnt-users] readregistry issue

2012-04-04 Thread Demian Brecht
I'm sure that there's something silly that I'm missing here..

I'm trying to query the registry (Windows 7 64bit) to get my Python install 
path. For some reason, I'm getting:

Registry Path Not Found! - 
key=3D'SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive=3D'LocalMachine'

However, if I replace my key with the sample in the documentation, all works 
fine. I've rebooted since installing Python (not sure whether or not that makes 
a difference). What am I missing here?

Thanks in advance,
Demian


--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


[NAnt-users] FW: readregistry issue

2012-04-04 Thread Demian Brecht
Sorry, should have also mentioned that the task call is:

readregistry verbose=true key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ 
property=installPath /

-Original Message-
From: Demian Brecht 
Sent: April-04-12 11:17 AM
To: 'nant-users@lists.sourceforge.net'
Subject: [NAnt-users] readregistry issue

I'm sure that there's something silly that I'm missing here..

I'm trying to query the registry (Windows 7 64bit) to get my Python install 
path. For some reason, I'm getting:

Registry Path Not Found! - 
key=3D'SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive=3D'LocalMachine'

However, if I replace my key with the sample in the documentation, all works 
fine. I've rebooted since installing Python (not sure whether or not that makes 
a difference). What am I missing here?

Thanks in advance,
Demian


--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


Re: [NAnt-users] FW: readregistry issue

2012-04-04 Thread Ryan Boggs
I'm not sure where the 3D prefixes came from in your original
posting but this is working for me (just tested):
readregistry property=Python.Dir
key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ hive=LocalMachine
/

I am hoping that the above line isn't mangled in the email.  Don't
forget to include the hive in readregistry

Thanks,
Ryan

On Wed, Apr 4, 2012 at 11:22 AM, Demian Brecht dbre...@popcap.com wrote:
 Sorry, should have also mentioned that the task call is:

 readregistry verbose=true 
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ property=installPath /

 -Original Message-
 From: Demian Brecht
 Sent: April-04-12 11:17 AM
 To: 'nant-users@lists.sourceforge.net'
 Subject: [NAnt-users] readregistry issue

 I'm sure that there's something silly that I'm missing here..

 I'm trying to query the registry (Windows 7 64bit) to get my Python install 
 path. For some reason, I'm getting:

 Registry Path Not Found! - 
 key=3D'SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive=3D'LocalMachine'

 However, if I replace my key with the sample in the documentation, all works 
 fine. I've rebooted since installing Python (not sure whether or not that 
 makes a difference). What am I missing here?

 Thanks in advance,
 Demian


 --
 Better than sec? Nothing is better than sec when it comes to
 monitoring Big Data applications. Try Boundary one-second
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 NAnt-users mailing list
 NAnt-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nant-users

--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


Re: [NAnt-users] FW: readregistry issue

2012-04-04 Thread Ryan Boggs
I should note that I tested on a Win32 machine.  I am not sure if the
reg path is different on a Win64 system for Python.

Thanks,
Ryan

On Wed, Apr 4, 2012 at 11:29 AM, Ryan Boggs rmbo...@gmail.com wrote:
 I'm not sure where the 3D prefixes came from in your original
 posting but this is working for me (just tested):
 readregistry property=Python.Dir
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ hive=LocalMachine
 /

 I am hoping that the above line isn't mangled in the email.  Don't
 forget to include the hive in readregistry

 Thanks,
 Ryan

 On Wed, Apr 4, 2012 at 11:22 AM, Demian Brecht dbre...@popcap.com wrote:
 Sorry, should have also mentioned that the task call is:

 readregistry verbose=true 
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ property=installPath /

 -Original Message-
 From: Demian Brecht
 Sent: April-04-12 11:17 AM
 To: 'nant-users@lists.sourceforge.net'
 Subject: [NAnt-users] readregistry issue

 I'm sure that there's something silly that I'm missing here..

 I'm trying to query the registry (Windows 7 64bit) to get my Python install 
 path. For some reason, I'm getting:

 Registry Path Not Found! - 
 key=3D'SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive=3D'LocalMachine'

 However, if I replace my key with the sample in the documentation, all works 
 fine. I've rebooted since installing Python (not sure whether or not that 
 makes a difference). What am I missing here?

 Thanks in advance,
 Demian


 --
 Better than sec? Nothing is better than sec when it comes to
 monitoring Big Data applications. Try Boundary one-second
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 NAnt-users mailing list
 NAnt-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nant-users

--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


Re: [NAnt-users] FW: readregistry issue

2012-04-04 Thread Demian Brecht
Thanks for the follow up.

I had included the hive in one of my many variations in trying to get it to 
work (it defaults to LocalMachine according to the docs, so I assumed that I 
wouldn't need to set it explicitly).

According to regedit, the path is correct: 
HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\InstallPath. 

I've now tested this on two 64bit machines and both fail with the same error. I 
also tried it with a nightly build and the error message was a little different:

Registry Path Not Found! - 
key='SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive='Microsoft.Win32.RegistryHive[]';

This message concerns me a bit.. Do I somehow explicitly have to set the hive 
to be 64bit?

Thanks again,
Demian

-Original Message-
From: Ryan Boggs [mailto:rmbo...@gmail.com] 
Sent: April-04-12 11:31 AM
To: Demian Brecht
Cc: nant-users@lists.sourceforge.net
Subject: Re: [NAnt-users] FW: readregistry issue

I should note that I tested on a Win32 machine.  I am not sure if the reg path 
is different on a Win64 system for Python.

Thanks,
Ryan

On Wed, Apr 4, 2012 at 11:29 AM, Ryan Boggs rmbo...@gmail.com wrote:
 I'm not sure where the 3D prefixes came from in your original 
 posting but this is working for me (just tested):
 readregistry property=Python.Dir
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ hive=LocalMachine
 /

 I am hoping that the above line isn't mangled in the email.  Don't 
 forget to include the hive in readregistry

 Thanks,
 Ryan

 On Wed, Apr 4, 2012 at 11:22 AM, Demian Brecht dbre...@popcap.com wrote:
 Sorry, should have also mentioned that the task call is:

 readregistry verbose=true 
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ 
 property=installPath /

 -Original Message-
 From: Demian Brecht
 Sent: April-04-12 11:17 AM
 To: 'nant-users@lists.sourceforge.net'
 Subject: [NAnt-users] readregistry issue

 I'm sure that there's something silly that I'm missing here..

 I'm trying to query the registry (Windows 7 64bit) to get my Python install 
 path. For some reason, I'm getting:

 Registry Path Not Found! - 
 key=3D'SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive=3D'LocalMachine'

 However, if I replace my key with the sample in the documentation, all works 
 fine. I've rebooted since installing Python (not sure whether or not that 
 makes a difference). What am I missing here?

 Thanks in advance,
 Demian


 -
 - Better than sec? Nothing is better than sec when it comes 
 to monitoring Big Data applications. Try Boundary one-second 
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 NAnt-users mailing list
 NAnt-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nant-users


--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


Re: [NAnt-users] FW: readregistry issue

2012-04-04 Thread Demian Brecht
Now I'm wondering.. I'm running from downloaded binaries (which seem to be 
32bit). Could there be some MS magic going on where using 32 bit binary (and 
hive) results in resolving to Wow6432Node?

-Original Message-
From: Demian Brecht 
Sent: April-04-12 11:55 AM
To: 'Ryan Boggs'
Cc: nant-users@lists.sourceforge.net
Subject: RE: [NAnt-users] FW: readregistry issue

Thanks for the follow up.

I had included the hive in one of my many variations in trying to get it to 
work (it defaults to LocalMachine according to the docs, so I assumed that I 
wouldn't need to set it explicitly).

According to regedit, the path is correct: 
HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\InstallPath. 

I've now tested this on two 64bit machines and both fail with the same error. I 
also tried it with a nightly build and the error message was a little different:

Registry Path Not Found! - 
key='SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive='Microsoft.Win32.RegistryHive[]';

This message concerns me a bit.. Do I somehow explicitly have to set the hive 
to be 64bit?

Thanks again,
Demian

-Original Message-
From: Ryan Boggs [mailto:rmbo...@gmail.com]
Sent: April-04-12 11:31 AM
To: Demian Brecht
Cc: nant-users@lists.sourceforge.net
Subject: Re: [NAnt-users] FW: readregistry issue

I should note that I tested on a Win32 machine.  I am not sure if the reg path 
is different on a Win64 system for Python.

Thanks,
Ryan

On Wed, Apr 4, 2012 at 11:29 AM, Ryan Boggs rmbo...@gmail.com wrote:
 I'm not sure where the 3D prefixes came from in your original 
 posting but this is working for me (just tested):
 readregistry property=Python.Dir
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ hive=LocalMachine
 /

 I am hoping that the above line isn't mangled in the email.  Don't 
 forget to include the hive in readregistry

 Thanks,
 Ryan

 On Wed, Apr 4, 2012 at 11:22 AM, Demian Brecht dbre...@popcap.com wrote:
 Sorry, should have also mentioned that the task call is:

 readregistry verbose=true 
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ 
 property=installPath /

 -Original Message-
 From: Demian Brecht
 Sent: April-04-12 11:17 AM
 To: 'nant-users@lists.sourceforge.net'
 Subject: [NAnt-users] readregistry issue

 I'm sure that there's something silly that I'm missing here..

 I'm trying to query the registry (Windows 7 64bit) to get my Python install 
 path. For some reason, I'm getting:

 Registry Path Not Found! - 
 key=3D'SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive=3D'LocalMachine'

 However, if I replace my key with the sample in the documentation, all works 
 fine. I've rebooted since installing Python (not sure whether or not that 
 makes a difference). What am I missing here?

 Thanks in advance,
 Demian


 -
 - Better than sec? Nothing is better than sec when it comes 
 to monitoring Big Data applications. Try Boundary one-second 
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 NAnt-users mailing list
 NAnt-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nant-users


--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


Re: [NAnt-users] FW: readregistry issue

2012-04-04 Thread Chad Petersen
32-bit binaries don't generally know anything about 64-bit Windows (registry, 
folders, ODBC, etc) and will resolve to (be redirected to) Wow6432Node for 
registry reads and writes. That is the 32-bit registry locations. On 64-bit 
Windows the System32 folder is the 64-bit location and SysWOW64 is the 32-bit 
location, as unintuitive as it sounds.

-Original Message-
From: Demian Brecht [mailto:dbre...@popcap.com] 
Sent: Wednesday, April 04, 2012 12:33 PM
To: Ryan Boggs
Cc: nant-users@lists.sourceforge.net
Subject: Re: [NAnt-users] FW: readregistry issue

Now I'm wondering.. I'm running from downloaded binaries (which seem to be 
32bit). Could there be some MS magic going on where using 32 bit binary (and 
hive) results in resolving to Wow6432Node?

-Original Message-
From: Demian Brecht 
Sent: April-04-12 11:55 AM
To: 'Ryan Boggs'
Cc: nant-users@lists.sourceforge.net
Subject: RE: [NAnt-users] FW: readregistry issue

Thanks for the follow up.

I had included the hive in one of my many variations in trying to get it to 
work (it defaults to LocalMachine according to the docs, so I assumed that I 
wouldn't need to set it explicitly).

According to regedit, the path is correct: 
HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\InstallPath. 

I've now tested this on two 64bit machines and both fail with the same error. I 
also tried it with a nightly build and the error message was a little different:

Registry Path Not Found! - 
key='SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive='Microsoft.Win32.RegistryHive[]';

This message concerns me a bit.. Do I somehow explicitly have to set the hive 
to be 64bit?

Thanks again,
Demian

-Original Message-
From: Ryan Boggs [mailto:rmbo...@gmail.com]
Sent: April-04-12 11:31 AM
To: Demian Brecht
Cc: nant-users@lists.sourceforge.net
Subject: Re: [NAnt-users] FW: readregistry issue

I should note that I tested on a Win32 machine.  I am not sure if the reg path 
is different on a Win64 system for Python.

Thanks,
Ryan

On Wed, Apr 4, 2012 at 11:29 AM, Ryan Boggs rmbo...@gmail.com wrote:
 I'm not sure where the 3D prefixes came from in your original 
 posting but this is working for me (just tested):
 readregistry property=Python.Dir
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ hive=LocalMachine
 /

 I am hoping that the above line isn't mangled in the email.  Don't 
 forget to include the hive in readregistry

 Thanks,
 Ryan

 On Wed, Apr 4, 2012 at 11:22 AM, Demian Brecht dbre...@popcap.com wrote:
 Sorry, should have also mentioned that the task call is:

 readregistry verbose=true 
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ 
 property=installPath /

 -Original Message-
 From: Demian Brecht
 Sent: April-04-12 11:17 AM
 To: 'nant-users@lists.sourceforge.net'
 Subject: [NAnt-users] readregistry issue

 I'm sure that there's something silly that I'm missing here..

 I'm trying to query the registry (Windows 7 64bit) to get my Python install 
 path. For some reason, I'm getting:

 Registry Path Not Found! - 
 key=3D'SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive=3D'LocalMachine'

 However, if I replace my key with the sample in the documentation, all works 
 fine. I've rebooted since installing Python (not sure whether or not that 
 makes a difference). What am I missing here?

 Thanks in advance,
 Demian


 -
 - Better than sec? Nothing is better than sec when it comes 
 to monitoring Big Data applications. Try Boundary one-second 
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 NAnt-users mailing list
 NAnt-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nant-users


--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users



--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users


Re: [NAnt-users] FW: readregistry issue

2012-04-04 Thread Demian Brecht
Blech, not what I was hoping. Oh well, off to build a 64 bit binary to see if 
that solves my problem (perhaps both versions should be made available as 
downloadable binaries?).

Thanks all.

-Original Message-
From: Chad Petersen [mailto:chad.peter...@harlandfs.com] 
Sent: April-04-12 1:31 PM
To: Demian Brecht; Ryan Boggs
Cc: nant-users@lists.sourceforge.net
Subject: RE: [NAnt-users] FW: readregistry issue

32-bit binaries don't generally know anything about 64-bit Windows (registry, 
folders, ODBC, etc) and will resolve to (be redirected to) Wow6432Node for 
registry reads and writes. That is the 32-bit registry locations. On 64-bit 
Windows the System32 folder is the 64-bit location and SysWOW64 is the 32-bit 
location, as unintuitive as it sounds.

-Original Message-
From: Demian Brecht [mailto:dbre...@popcap.com]
Sent: Wednesday, April 04, 2012 12:33 PM
To: Ryan Boggs
Cc: nant-users@lists.sourceforge.net
Subject: Re: [NAnt-users] FW: readregistry issue

Now I'm wondering.. I'm running from downloaded binaries (which seem to be 
32bit). Could there be some MS magic going on where using 32 bit binary (and 
hive) results in resolving to Wow6432Node?

-Original Message-
From: Demian Brecht
Sent: April-04-12 11:55 AM
To: 'Ryan Boggs'
Cc: nant-users@lists.sourceforge.net
Subject: RE: [NAnt-users] FW: readregistry issue

Thanks for the follow up.

I had included the hive in one of my many variations in trying to get it to 
work (it defaults to LocalMachine according to the docs, so I assumed that I 
wouldn't need to set it explicitly).

According to regedit, the path is correct: 
HKEY_LOCAL_MACHINE\SOFTWARE\Python\PythonCore\2.7\InstallPath. 

I've now tested this on two 64bit machines and both fail with the same error. I 
also tried it with a nightly build and the error message was a little different:

Registry Path Not Found! - 
key='SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive='Microsoft.Win32.RegistryHive[]';

This message concerns me a bit.. Do I somehow explicitly have to set the hive 
to be 64bit?

Thanks again,
Demian

-Original Message-
From: Ryan Boggs [mailto:rmbo...@gmail.com]
Sent: April-04-12 11:31 AM
To: Demian Brecht
Cc: nant-users@lists.sourceforge.net
Subject: Re: [NAnt-users] FW: readregistry issue

I should note that I tested on a Win32 machine.  I am not sure if the reg path 
is different on a Win64 system for Python.

Thanks,
Ryan

On Wed, Apr 4, 2012 at 11:29 AM, Ryan Boggs rmbo...@gmail.com wrote:
 I'm not sure where the 3D prefixes came from in your original 
 posting but this is working for me (just tested):
 readregistry property=Python.Dir
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ hive=LocalMachine
 /

 I am hoping that the above line isn't mangled in the email.  Don't 
 forget to include the hive in readregistry

 Thanks,
 Ryan

 On Wed, Apr 4, 2012 at 11:22 AM, Demian Brecht dbre...@popcap.com wrote:
 Sorry, should have also mentioned that the task call is:

 readregistry verbose=true 
 key=SOFTWARE\Python\PythonCore\2.7\InstallPath\ 
 property=installPath /

 -Original Message-
 From: Demian Brecht
 Sent: April-04-12 11:17 AM
 To: 'nant-users@lists.sourceforge.net'
 Subject: [NAnt-users] readregistry issue

 I'm sure that there's something silly that I'm missing here..

 I'm trying to query the registry (Windows 7 64bit) to get my Python install 
 path. For some reason, I'm getting:

 Registry Path Not Found! - 
 key=3D'SOFTWARE\Python\PythonCore\2.7\InstallPath\';hive=3D'LocalMachine'

 However, if I replace my key with the sample in the documentation, all works 
 fine. I've rebooted since installing Python (not sure whether or not that 
 makes a difference). What am I missing here?

 Thanks in advance,
 Demian


 -
 - Better than sec? Nothing is better than sec when it comes 
 to monitoring Big Data applications. Try Boundary one-second 
 resolution app monitoring today. Free.
 http://p.sf.net/sfu/Boundary-dev2dev
 ___
 NAnt-users mailing list
 NAnt-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nant-users


--
Better than sec? Nothing is better than sec when it comes to monitoring Big 
Data applications. Try Boundary one-second resolution app monitoring today. 
Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing list
NAnt-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nant-users



--
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
___
NAnt-users mailing