Re: [NAnt-users] Sandcastle task update

2007-08-02 Thread si
al content, and it's a simple call via to the console program to fire off a compile of a shfb project. Please don't see this as criticism, as I spent a week or so writing my own scripts, but I was very impressed with how well SHFB works, and it feels like a better

Re: [NAnt-users] how to open a file using NAnt and read/parse it

2007-03-06 Thread si
> Can any one please let me know how to open a file using NAnt and read/parse > it? Depends on the file...if its delimited in some way (csv, line, etc) then foreach task using loopitem of File may help. If it's xml then xmlpeek task may help. If you want to load the whole file into a property and

Re: [NAnt-users] Visual Studio projects

2007-02-08 Thread si
isual Studio 2005 Copy NAnt\schema\nant.xsd to "C:\Program Files\Microsoft Visual Studio 8\Xml\Schemas" Reference schema in project xmlns attribute, e.g: http://nant.sf.net/release/0.85/nant.xsd"; ...> ... And you should be good to go. peace si p.s. Set the "Open Wit

Re: [NAnt-users] and

2007-01-23 Thread si
aks in a commit after the build has started but before it is completed. peace si - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinion

Re: [NAnt-users] Need help - Urgent Please - CAB files creation using NAnt **

2007-01-07 Thread si
, and I've only just started on WiX, but it seems to work well. More info on WiX at http://wix.sourceforge.net/ peace si - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and

Re: [NAnt-users] How to deploy nant compiled files to remote server.

2006-12-10 Thread si
sk might help: http://www.spinthemoose.com/~ftptask/help/tasks/ftp.html peace si - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opi

Re: [NAnt-users] Automate Build

2006-11-30 Thread si
g Nant or there is some other > way to deploy it. You could also try aspnet_compiler if it's asp.net 2.0 http://msdn2.microsoft.com/en-us/library/ms229863(VS.80).aspx Works fine through the task. peace si -

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

2006-07-22 Thread si
and Linux: ... ... ... ... Hope that helps. peace si - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and

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

2006-06-21 Thread si
s implemented in the task, only the MailLogger. peace si ___ NAnt-users mailing list NAnt-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users

Re: [NAnt-users] Abbreviation for /buildfile: parameter ?

2006-06-02 Thread si
> Is there a single-letter abbreviation for the /buildfile: > parameter when calling nant.exe? Sure, C:\>nant -help -buildfile: Use given buildfile (Short format: /f) ___ NAnt-users mailing list NAnt-users@lists.sourceforge.net https://

Re: [NAnt-users] MailLogger credentials

2006-04-27 Thread si
Hi, We've just run into the same problem as Jason had...any chance his code can be implemented please? Happy to test a nightly :) cheers si > Ok, I just wrote it myself. Could someone please add this to the > official code? I verified that it compiles with .NET 1.1 AND works.

Re: [NAnt-users] NAnt Arrays

2006-04-24 Thread si
and it works fine...although the code above hasn't been tested :) peace si --- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Down

Re: [NAnt-users] replacement

2006-03-08 Thread si
Hi Chekan, > Any advises? What about trying... peace si --- 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 pr

Re: [NAnt-users] Delete task not executing

2006-02-16 Thread si
Hi Ramya, > You're searching for the literal string ${source} including $ and {}, try: test="${directory::exists(source)}" peace si --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files f

Re: [NAnt-users] Question about accessing the command line arguments passed to nant

2006-02-01 Thread si
ng[Project.BuildTargets.Count]; Project.BuildTargets.CopyTo(targets, 0); return String.Join(", ", targets); } peace si --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search eng

Re: [NAnt-users] using custom function from one script task in another one

2006-01-29 Thread si
> how can custom functions from one script task be > used by custom functions from another script task? Have a look in NAnt/examples/UserTask. I use something similar and it works well, the only difference to the example is I don't compile every time, rather only if the DLL is missing

Re: [NAnt-users] Nant Support For NUnit For 2.2.5

2006-01-26 Thread si
k if it can work with NUnit 2.2.6 and it would allow you to define a custom xml output file. (makes it easier to perform file merging with CruiseControl.NET) peace si --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for

Re: [Nant-users] Mono 1.1.9.1_1 breaks NAnt on Windows

2005-12-14 Thread si
.1.10 on Windows, thanks! Interesting...latest NAnt nightly dropped ~900KB in size from the start of month. cheers si --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX

[Nant-users] Copy of log4net.dll

2005-12-01 Thread si
To whom it may concern, Just found a "Copy of log4net.dll" in the /bin/lib directory of 2005-12-01 nightly :) peace si --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Downlo

Re: [Nant-users] Usage question

2005-11-30 Thread si
I do the same with Ant by now? Is it an > alternative for Nant? Especially if I don't use it for .NET software? If you want to try Ant, do it in Eclipse, a sublime development environment! I find both NAnt and Ant to be excellent (if a little different) hope that helps peace si ---

[Nant-users] Re: [nant-dev] [ nant-Bugs-1344473 ] nightlies fail on mono 1.1.9 on windows

2005-11-15 Thread si
Hi, Whilst issue 134473 is resolved, there appears to be another gremlin. Try running attached modification of UserTask example on mono on windows. see output.txt - nant-mono is just a batch file calling: mono "C:\Program Files\NAnt\bin\NAnt.exe" %* fwiw, I got irked having C# code inside

Re: [Nant-users] Doing math on property values

2005-10-21 Thread si
Hi Rebecca, > I am trying to add on a property and I am not sure what I am doing > wrong. or you can use double::parse() or long::parse() if required peace si --- This SF.Net email is sponsored by: Power Architecture Resource Center

Re: [Nant-users] redirection in a NAnt task ??

2005-10-20 Thread si
evel. Here's how subnant.bat is created: @echo off nant -emacs -indent:-8 -quiet -nologo -buildfile:"\path\to\subnant.build" %* So to get documentation on dump: subnant help dump peace si --- This SF.Net email is sponsored by:

Re: [Nant-users] deleting directory nasty problem

2005-10-20 Thread si
StreamWriter w = File.AppendText(filename); w.Close(); } catch { return false; } return true; } There is no doubt a more elegant way, but this works. peace si

Re: [Nant-users] Specifying a logfile with task ?

2005-10-20 Thread si
Hi Allan, > Is there by any means a clean way to specify a logfile for a task http://nantcontrib.sourceforge.net/nightly/latest/help/tasks/record.html Works a treat! peace si --- This SF.Net email is sponsored by: Power Architect

[Nant-users] Mono 1.1.9.1_1 breaks NAnt on Windows

2005-10-02 Thread si
I report this to the mono folks? peace si --- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl

Re: [Nant-users] Developing NAnt tasks resource

2005-09-29 Thread si
> I've added links to Marcs book as well as the relevancellc.com link and > another document I found to the "ThirdPartyContributions" [1] wiki page. U > fortunately the original contents of this page were lost when the > spammers hijacked the wiki so I started it again from scratch. Anyone > know o

[Nant-users] Scripting deletes of old builds

2005-09-28 Thread si
Also, it would be nice if folks could post in plain text instead of html, aside from the bandwidth bloat, if you subscribe to this list in digest form, it makes it unnecessary tiresome to read through great swaths of markup. peace si > --=_NextPart_000_00BD