Re: [NAnt-users] PSTools - help

2009-02-13 Thread Melissa
That is the return code of test.bat. You need to debug test.bat. -Original Message- From: Zachary B. Wheeler [mailto:zwhee...@sddmtech.com] Sent: Friday, February 13, 2009 2:44 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] PSTools - help My objective with this is to cop

Re: [NAnt-users] psexec and NAnt

2008-11-25 Thread Melissa
The environment that vcvars32.bat sets up goes away as soon as the exec call is completred. It isn't available in the next call. Run vcvars32.bat betore you call nant. -Original Message- From: Eric Fetzer [mailto:[EMAIL PROTECTED] Sent: Monday, November 24, 2008 2:27 PM To: Nant Users

Re: [NAnt-users] Problem to load my repository dump file...

2008-03-06 Thread Melissa Kacher
Correct me if I need new glasses, but I can't see where nant is being used here. I think you're on the wrong list. But to answer generically anyway, it looks like you are on Windows, so there is a great app called handle.exe (command line) or its sister app Process Explorer (GUI) from sysinte

Re: [NAnt-users] looking for registry write task

2008-01-24 Thread Melissa
using reg.exe or regini.exe -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Curtis Zarger Sent: Thursday, January 24, 2008 6:14 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] looking for registry write task I see a readregistry task in the

Re: [NAnt-users] nant error

2007-06-04 Thread Melissa Kacher
... or not in the user's path. Original Message Follows From: "Phil Sayers" <[EMAIL PROTECTED]> To: "Ashish Mittal" <[EMAIL PROTECTED]>, Subject: Re: [NAnt-users] nant error Date: Mon, 4 Jun 2007 08:34:00 -0400 MIME-Version: 1.0 Received: from lists-outbound.sourceforge.net ([66.35.250.22

Re: [NAnt-users] Why aren't Nant / NantContrib Assemblies signed

2007-04-09 Thread Melissa
Who would sign it? It's open source. And what if you want to make changes or fix bugs in your copy? You can't go back and have that same person sign your changes. Just food for thought. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jay Walker Sent: Monda

Re: [NAnt-users] how to merge NAnt and Windows DDK tools?

2006-11-27 Thread Melissa Kacher
users@lists.sourceforge.net Subject: Re: [NAnt-users] how to merge NAnt and Windows DDK tools? Melissa Kacher wrote: > 1) String these commands all together with & in one I don't think this will work. Isn't the & processed by cmd.exe, which NAnt bypasses with (unless you spec

Re: [NAnt-users] Help required for build numbering by NAnt script.

2006-11-24 Thread Melissa Kacher
1) Change your file format to xml. Load the values using , increment and then update the file using 2) Write some kind of external script to do the updating, probably using sed. Use the task in nant to run it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Beha

Re: [NAnt-users] how to merge NAnt and Windows DDK tools?

2006-11-24 Thread Melissa Kacher
1) String these commands all together with & in one 2) Put all of these commands in one script and call the script with an exec command. Make sure the last command returns a proper error code so that nant knows if it passed or failed. -Original Message- From: [EMAIL PROTECTED] [mailto:[

Re: [NAnt-users] Help! NANT zip task

2006-09-07 Thread Melissa Kacher
Everything in needs to actually be physically located under its . If it isn't, the flattening that you observed will happen. You are including things parallel to , not under it. Don't use "..". -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Alan Gueden

Re: [NAnt-users] Can't use pipe (|) within exec

2006-07-20 Thread Melissa Kacher
Your xml code has an illegal use of quotes. Try this: Thanks, Melissa -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Girardelli, Erin E Sent: Thursday, July 20, 2006 2:09 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] Can't use

Re: [NAnt-users] Mail task smtp authentication?

2006-06-20 Thread Melissa Kacher
erver.   Thanks, Melissa   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric LemesSent: Tuesday, June 20, 2006 3:28 PMTo: NAnt-users@lists.sourceforge.netSubject: Re: [NAnt-users] Mail task smtp authentication? Hello there,The supid .Net Framework 1.1 don't support this by de

RE: [NAnt-users] vssadd - adding project folders

2006-05-25 Thread Melissa Kacher
nd help. Thanks, Melissa   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Muchhala, RajSent: Thursday, May 25, 2006 1:10 PMTo: nant-users@lists.sourceforge.netSubject: [NAnt-users] vssadd - adding project folders Is there a way to have vssadd add project folders in addition to

RE: [NAnt-users] compiling OmniOrb idl files - options?

2006-05-19 Thread Melissa Kacher
Use the task to execute devenv.exe.   Thanks, Melissa   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Robert HansonSent: Friday, May 19, 2006 9:25 AMTo: nant-users@lists.sourceforge.netSubject: [NAnt-users] compiling OmniOrb idl files - options? I have a number of

RE: [NAnt-users] task - Fails on VC++ project (vcproj)

2006-05-15 Thread Melissa Kacher
systems, they can indeed vary in case. (Path vs. PATH, for example.) You have to cover all of your bases if you choose to go this route.   Thanks, Melissa   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dipak, AjitSent: Tuesday, May 09, 2006 7:34 AMTo: nant-users@lists.sour

RE: [NAnt-users] Environment variable issue.

2006-02-13 Thread Melissa Kacher
Please see the nant docs, docs on tasks, go to the exec task. The documentation that you want you want to read is on the resultproperty attribute.   Here is link directly to the documentation that you need:   http://nant.sourceforge.net/release/latest/help/tasks/exec.html   From: [EMAIL PR

RE: [Nant-users] [Nant-users]

2005-07-27 Thread Melissa Kacher
While logged on as that domain admin, can you manage the service without nant? Stop and start it with netsvc.exe. If that does not work, then the error message is correct, and you "require other privileges",  meaning that you don't actually have admin access on the the target box.   Also, wh

RE: [Nant-users] link error -- cannot open user32.lib

2005-07-22 Thread Melissa Kacher
The linker doesn't use PATH to find libraries. It's LIB. See vcvars32.bat. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jill Bryan Sent: Friday, July 22, 2005 1:54 PM To: nant-users@lists.sourceforge.net Subject: [Nant-users] link error -- cannot open

RE: [Nant-users] nant.project.basedir replacement

2005-07-12 Thread Melissa Kacher
See this page in the docs: http://nant.sourceforge.net/release/latest/help/functions/nant.get-base- directory.html From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steve Baker Sent: Tuesday, July 12, 2005 8:32 AM To: nant-users@lists.sourceforge.ne

RE: [Nant-users] Quotation marks in task properties

2005-06-22 Thread Melissa Kacher
Don't bother. Put the property in '', and then "" is available to use within the property. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 2:15 AM To: nant-users@lists.sourceforge.net Subject: [Nant-users] Q

RE: [Nant-users] returns multiple node values

2005-05-25 Thread Melissa Kacher
Use nodeindex and get them one at a time. Here is the documentation on xmlpeek:   http://nant.sourceforge.net/release/latest/help/tasks/xmlpeek.html From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Shelly MidhaSent: Wednesday, May 25, 2005 1:26 AMTo: nant-users@lists.sourcefo

RE: [Nant-users] Syncing code with VSS?

2005-05-12 Thread Melissa Kacher
http://nantcontrib.sourceforge.net/ I would ditch VSS if at all possible. Believe me, you will be making your life much easier. But if you can't, se the URL above. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Pierce Sent: Thursday, May 12, 2005 9:36 A

RE: [Nant-users] Post-build event problem with solution task

2005-04-07 Thread Melissa Kacher
I really doubt that this is a nant bug. Please try running the post build script under cruise control without nant to prove this. I bet it will still fail (silently).   Xcopy has some issues under certain circumstances, and from what you write below, cruise control would qualify. Try robocopy

RE: [Nant-users] Custom Build tool issue.

2005-03-11 Thread Melissa Kacher
What version of nant are you using?   Is your custom build tool a pre-build action?   I know pre-build actions do not work in 0.84. They just don't get called. Does anyone know if they work in 0.85?  I have upgraded, but I haven't tested them again.     From: [EMAIL PROTECTED] [mailto:[EM

RE: [Nant-users] Building C++ projects with the solution task

2005-01-20 Thread Melissa Kacher
The Visual Studio macro is called $(ProjectDir), not $(ProjDir). That should solve your problem.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sparrman, David (GE Healthcare, non-ge)Sent: Thursday, January 20, 2005 8:30 AMTo: nant-users@lists.sourceforge.netSubject: [Na

RE: [Nant-users] task & post build events

2004-11-22 Thread Melissa Kacher (Temporary)
You should reference the $(ProjectDir) macro (for your source location) and the $(OutDir) macro (for your destination location), in all VS projects. This will work in any project no matter what the current working directory is, or what the output directory is. -Original Message- From: [E

RE: [Nant-users] [Help][Nant User][Create Tag/Label after VSS Checkout][Connect VSS Server Machine using NANT script]

2004-11-18 Thread Melissa Kacher (Temporary)
2. a. Run your nant script under some credentials that have access to your VSS share. Find the "Run As" tab if your build runs as a scheduled task or service. Or b. use the task and "net use" your VSS share using your user name and password. For those of you unfamiliar with the fun that is VSS

RE: [Nant-users] [HELP][NANT Script][Build Setup Kit]

2004-11-16 Thread Melissa Kacher (Temporary)
You can do just about anything with the task. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sanjoy Sent: Tuesday, November 16, 2004 6:13 AM To: [EMAIL PROTECTED] Subject: [Nant-users] [HELP][NANT Script][Build Setup Kit] Dear All, I want to know how

RE: [Nant-users] Newbie User NAntContrib Question

2004-10-22 Thread Melissa Kacher \(Temporary\)
Title: Newbie User NAntContrib Question There is much discussion and several opinions on this in the archives.   The fastest way to make this work though is: Put all of the nant and nant.contrib assemblies and config files in the same directory. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTE

RE: [Nant-users] NAnt build failure

2004-10-07 Thread Melissa Kacher \(Temporary\)
You pasted the answer into your e-mail. 1) Tests.NAnt.Console.NAntTest.Test_ShowHelp : expected:<2004> but was:<2003> at Tests.NAnt.Console.NAntTest.Test_ShowHelp() in C:\Program File s\NAnt\tests\NAnt.Console\NAntTest.cs:line 211 You