Re: [NAnt-users] NAnt and Microsoft Exchange Server

2010-10-01 Thread Phil Sayers
There may be an extra layer here if a build server is running the build with a special Compiler account, then that account will need permission tweaks. 99% of this is getting the Exchange server configured correctly. If the user account (under which nant is running) already has a mailbox on

Re: [NAnt-users] Nant VS CC.NEt

2010-02-04 Thread Phil Sayers
Think of ccnet as the trigger that fires your nant scripts. Ccnet will continuously watch something. That something could be the current time, one or more source control repositories, the filesystem, or you can write your own code to monitor whatever you want. When something changes (a

Re: [NAnt-users] Custom Action for service install

2009-12-15 Thread Phil Sayers
You may want to evaluate WiX for this. http://wix.sourceforge.net/ http://wix.sourceforge.net/ xml based files that are used by various parses/processors/compilers to spit out MSI/MSP's as the end product. Includes a visual studio extension (Votive) that gives you some new project types to

Re: [NAnt-users] howto: read file last modified date/time.

2009-08-24 Thread Phil Sayers
/script Anyway...thanks for the help, problem solved. -Original Message- From: Bob Archer [mailto:bob.arc...@amsi.com] Sent: Monday, August 17, 2009 11:54 AM To: Phil Sayers; nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] howto: read file last modified date/time. YEs

[NAnt-users] howto: read file last modified date/time.

2009-08-11 Thread Phil Sayers
Hi I don't see an out-of-the-box nant file function to read the last modified date/time of a file into a property. The opposite of the 'touch' task. I checked nantcontrib and I didn't see anything there (unless I missed it) Is anyone away of an existing library or code snippet I can copy/paste

Re: [NAnt-users] Unexpected attribute commandline on element echo.

2009-03-04 Thread Phil Sayers
Copying list (replied directly by mistake). echo message=${sqlCmd.exe} commandline='-s ${sqlCmd.server.name} -d ${sqlCmd.database.name} -U ${sqlCmd.user.name} -P ${sqlCmd.password} -i ${sqlCmd.scripts.dir}${sqlCmd.script.file}' / Has a closing double quote immediately

Re: [NAnt-users] nant , vs 2008 on 2.0 framework

2009-02-13 Thread Phil Sayers
This solved it for me. http://devscape.blogspot.com/2008/03/nant-and-net-framework-35.html From: Zachary B. Wheeler [mailto:zwhee...@sddmtech.com] Sent: Friday, February 13, 2009 2:28 PM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] nant , vs 2008 on 2.0 framework I am

Re: [NAnt-users] Subversion Copy command throws an error

2009-01-15 Thread Phil Sayers
An as always I manage to reply directly instead of to the list.bah From: Phil Sayers [mailto:p...@cds-am.net] Sent: Thursday, January 15, 2009 8:37 AM To: 'Nayan Gowda' Subject: RE: [NAnt-users] Subversion Copy command throws an error A quick initial thought.. Do you have a property

Re: [NAnt-users] Mirror web data between remote servers

2008-12-11 Thread Phil Sayers
Accidentally replied earlier offlist. posting here for archives...et Have you looked at a free product called Robocopy? that may get you moving in the right direction. -Original Message- From: Lionel Morrison [mailto:lmorri...@lifeware.com] Sent: Thursday, December 11, 2008 11:58 AM

Re: [NAnt-users] Cannot delete file '...\Temp\tmp12F.tmp\ResGen.exe'

2008-07-22 Thread Phil Sayers
both machines have the same virus scanner? both have the virus scanner set to ignore the temp folders used during the builds? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Collins, Kevin (GE Healthcare) Sent: Tuesday, July 22, 2008 11:53 AM To:

Re: [NAnt-users] vssget task

2008-03-18 Thread Phil Sayers
I'd agree with bob here. If the developer doesn't commit their work and it doesn't show up in the build it's their own fault. Plus consider that the developer hasn't finished making changse to the checked out file. forcing them to perform a checkin may cause a failed build, and break anyone else

Re: [NAnt-users] nant error

2007-06-04 Thread Phil Sayers
looks like vb6.exe is not installed, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ashish Mittal Sent: Monday, June 04, 2007 8:27 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] nant error Hello friends,

Re: [NAnt-users] How to compile vdproj or how create setup files withnant

2007-05-07 Thread Phil Sayers
i'm pretty sure there is a nAntContrib task for this -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Rosy Malhotra Sent: Monday, May 07, 2007 6:10 AM To: nant-users@lists.sourceforge.net Subject: [NAnt-users] How to compile vdproj or how create

Re: [NAnt-users] How to put asp.net1.1 assembly in GAC using NANT

2007-04-30 Thread Phil Sayers
it would appear that the error message tells you exactly what the problem is here -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Rosy Malhotra Sent: Monday, April 30, 2007 8:01 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED];

[NAnt-users] passing string delimiters

2007-04-10 Thread Phil Sayers
ok, I'm using the msbuild task from nantContrib, but i'm sure the same principles apply to nant, it's just a syntax issue. so my msbuild task looks like this msbuild project='${core.source}\Solution 1.sln' arg line=OutputDir=${core.output}\ / arg line=Configuration=Debug / arg

Re: [NAnt-users] passing string delimiters

2007-04-10 Thread Phil Sayers
To: Phil Sayers; nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] passing string delimiters Phil Sayers [EMAIL PROTECTED] wrote: ok, I'm using the msbuild task from nantContrib, but i'm sure the same principles apply to nant, it's just a syntax issue. so my msbuild task looks like

Re: [NAnt-users] passing string delimiters

2007-04-10 Thread Phil Sayers
dangit whadda ya knowi coulda sworn i removed them single quotesoh well. thanks anywany -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Gert Driesen Sent: Tuesday, April 10, 2007 9:25 AM To: Brass Tilde; Phil Sayers; nant-users

Re: [NAnt-users] passing string delimiters

2007-04-10 Thread Phil Sayers
(blush) operator error. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Brass Tilde Sent: Tuesday, April 10, 2007 10:11 AM To: nant-users@lists.sourceforge.net Subject: Re: [NAnt-users] passing string delimiters Phil Sayers [EMAIL PROTECTED] wrote

Re: [NAnt-users] [ANN] compiling solution file is very veryslowinnant

2007-03-27 Thread Phil Sayers
we use nant to build our application. it is 4 separate vs.net (2003) solutions. we just fire them one after the other in a nant script. after playing with our configuration i've noticed the following. a decent amount of time is spent copying assemblies between bin folders up the reference tree.

Re: [NAnt-users] Run regsvr32 on remote machine

2007-02-27 Thread Phil Sayers
maybe poke around and look at the sysinternals command line tools. im sure one of them is a remote execute, you'd just need an exec wrapper around it -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Bob Archer Sent: Tuesday, February 27, 2007 12:28 PM

Re: [NAnt-users] FW: Licensing Issues with third party Win controls

2007-02-20 Thread Phil Sayers
FW: Licensing Issues with third party Win controlsi had a similar issue when using FinalBuilder it seems the lc.exe does not put the license file in the correct folder...you'll have to poke around to see where it actually drops it...then copy to the bin folder i think -Original

Re: [NAnt-users] Visual Build Pro Question

2007-02-09 Thread Phil Sayers
i'd bet there's something in Nantcontrib that'll do the service start/restart. i'm about to start using nantContrib to mainpulate our webserver to deploy builds to our IIS box as a remoting server. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Vee