Re: [Nant-users] A Question

2003-10-10 Thread Ian MacLean
[nant] tests/NAnt.VisualCpp/NAnt.VisualCpp.build test Buildfile: file:///C:/Documents and Settings/saqib.khalil/Desktop/NAnt/nant-20031010/tests/NAnt.VisualCpp/NAnt.VisualCpp.build Targe

[Nant-users] output-build.txt with NAnt

2003-10-10 Thread Bill Stout
Title: output-build.txt with NAnt How can output-build be specified with NAnt? With a manual build process, I save output-build.txt as \-output-build.txt The process so far is; 1.  set sourcesafe environmental values 2.  get latest from sourcesafe to working directory 3.  For

Re: [Nant-users] Build Log Files

2003-10-10 Thread Gert Driesen
Nick, This has been changed in cvs now. Thanks for the report, Gert - Original Message - From: "Nick Varacalli" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 10, 2003 11:10 PM Subject: [Nant-users] Build Log Files > When a build is running it locks the log file fo

Re: [Nant-users] Apply solution task to empty sln led to error

2003-10-10 Thread Gert Driesen
This one's now fixed in cvs. Thanks for the report, Gert - Original Message - From: "Dmitriy Bezugliy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 10, 2003 11:21 PM Subject: [Nant-users] Apply solution task to empty sln led to error > Apply solution task to empty

[Nant-users] Build Log Files

2003-10-10 Thread Nick Varacalli
When a build is running it locks the log file for reading. Is it possible to lock it only for writing? Sometimes, it would be nice to check the build on a remote machine that you have filesystem, but not display access to. Nick Varacalli --- T

Re: [Nant-users] ResGenTask problem

2003-10-10 Thread Gert Driesen
October 10, 2003 10:50 PM Subject: [Nant-users] ResGenTask problem > Seems to bug introdused in last night build 20031010 with 20031007 all work > fine > [solution] - C:\Core\res\strings.ru-RU.resx > [solution] ResGenTask Input: > C:\Core\res\string

[Nant-users] Apply solution task to empty sln led to error

2003-10-10 Thread Dmitriy Bezugliy
Apply solution task to empty sln led to error: Complete build sequence is build build:  [solution] Starting solution build. [solution] Loading projects... [solution] Gathering additional dependencies... BUILD FAILED INTERNAL ERROR System.IO.DirectoryNotFoundException: Could not find a pa

[Nant-users] ResGenTask problem

2003-10-10 Thread Dmitriy Bezugliy
Seems to bug introdused in last night build 20031010 with 20031007 all work fine [solution]  - C:\Core\res\strings.ru-RU.resx [solution] ResGenTask Input: C:\Core\res\strings.ru-RU.resx Output: C:\DOCUME~1\amid\LOCALS~1\Temp\hi771plq\Core.res.strings.ru

RE: [Nant-users] documentation for project/solution files

2003-10-10 Thread Derek Pierson
Alexander, I found this sample XSLT file a short while ago. The author is listed in the file. I hope this helps. I gave up using the solution task and slingshot since the structure of my web application was not that complicated. Derek -Original Message- From: [EMAIL PROTECTED] [mailto:

[Nant-users] Solution task problem

2003-10-10 Thread Dmitriy Bezugliy
Title: [Nant-users] Solution task problem Hi all Enybody know what's mean this error (it's was a reason my previous problem  wis solution task                 BUILD FAILED         INTERNAL ERROR        

Re: [Nant-users] documentation for project/solution files

2003-10-10 Thread Ian MacLean
alex, I assume you are talking about visual studio project files. There is an xslt script to convert c#/VB project files to nant build files ( http://radio.weblogs.com/0106046/stories/2002/08/10/supportingVsnetAndNant.html). You might it useful; Ian hi, i wonder if, there is a documentation f

[Nant-users] documentation for project/solution files

2003-10-10 Thread Eckert, Alexander
hi, i wonder if, there is a documentation for project/solution files? i'm interested in transforming project files with xslt. more specific, i want to adapt the file paths acccording to some special schema. i need to know how file references in project files are resolved to pathnames. does anyo

AW: AW: [Nant-users] slingshot task - problem

2003-10-10 Thread Eckert, Alexander
sorry, i meant the hole nant contrib package. the slingshot tool works really fine. greetz alex -Ursprüngliche Nachricht- Von: Ian MacLean [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 10. Oktober 2003 09:36 An: Eckert, Alexander Cc: Bill Stout; [EMAIL PROTECTED] Sourceforge. Net (E-Mai

Re: AW: [Nant-users] slingshot task - problem

2003-10-10 Thread Ian MacLean
Not quite true. There have been very few checkins in that area recently. You can subscribe to the commits list http://sourceforge.net/mail/?group_id=54790 to see whats changing. The last commit to slingshot was on the 1st of this month. Ian the only problem is, that with every nightly build some

AW: [Nant-users] slingshot task - problem

2003-10-10 Thread Eckert, Alexander
hi bill, slingshot is a tool that comes with the nantContrib stuff. it's nice for converting solution files into nant build files. i'm implementing a build/integration system for the company i work for. the first tests are running fine with this tool. you can download the nant contrib stuff here

Re: [Nant-users] NUnit2 and the latest nant (cvs and nightlies)

2003-10-10 Thread Daniel Granath
Ok, I have these tests: using System; using NUnit.Framework; namespace test { [TestFixture] class NantTest1 { [Test] public void t11() { System.Console.WriteLine("foo"); } } [TestFixture] cl