Re: [Nant-users] slingshot task

2003-08-27 Thread Sven
At first sorry for my bad english. As i wanted to use slingshot to convert a Solution-file containing a VB-Projct to a build-file by comandline, I ran into problems. Slingshot seems to have problems with projects other than C#. I found out that there is only the Valid ProjectID given for

RE: [Nant-users] slingshot task

2003-08-27 Thread Erick Thompson
Jean, I found the same area, and I figure the problem is in there. However, the version that I am looking at has the OptionElement code commented out. I have a feeling that this is where the problem is, as the suggested format looks like an OptionElement to me. Unfortunately, the nantcontrib list

RE: [Nant-users] slingshot task

2003-08-27 Thread Erick Thompson
Any luck with this? I'm running into the same problem. I've tried a number of variations, with no success. Erick -Original Message- From: Eric Fetzer [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 2:09 PM To: Nant Users Subject: [Nant-users] slingshot task I'm experiencing

RE: [Nant-users] ASP.NET and VSS

2003-08-27 Thread Lawrence, Richard
If you don't find an ftp task you can always use the exec task to run ftp.exe. I'm copying across a LAN, so I don't need ftp, but I use exec to get at robocopy. -Richard > -Original Message- > From: Erick Thompson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 27, 2003 3:38 PM > To

RE: [Nant-users] ASP.NET and VSS

2003-08-27 Thread Erick Thompson
Well, after fully reading the docs, I think I've answered both my questions (but any examples would still be great). However, I can't seem to find docs for an FTP task, which I thought existed. Is the FTP task finished/working? Thanks, Erick > -Original Message- > From: Erick Thompson >

RE: [Nant-users] slingshot task

2003-08-27 Thread Jean Rajotte
Title: Message eric, it does look like the syntax is as advertized. i thought you had other slingshot tasks in your projects.  what's different here? as i look in the code for SlingshotTask, i see there's some confusion about how OptionSets are iterated.  pls. try something crazy like the f

[Nant-users] ASP.NET and VSS

2003-08-27 Thread Erick Thompson
Hello everyone, I just downloaded NAnt, and I'm planning on using it for a number of projects. The WinForms projects seem fairly straight forward, but I'm planning on using it for ASP.NET projects as well. Does anyone have any example build files that they can send my way for ASP.NET projects? My

[Nant-users] slingshot task

2003-08-27 Thread Eric Fetzer
I'm experiencing a problem with slingshot:   D:\projects\procard>nant -f:BuildWebBuild.buildNAnt version 0.8.3 Copyright (C) 2001-2003 Gerry Shawhttp://nant.sourceforge.net Buildfile: file:///D:/projects/procard/BuildWebBuild.build[slingshot] Converting ProCard.Centre.Web.sln to MySolution.build us

[Nant-users] nant Task with inheritall

2003-08-27 Thread Foley, Cash
I cannot reproduce the following expected behavior: In a Base NAnt build file set a property value (in my example 'basename') then invoke an NAnt task, using the 'inheritall' attribute set to 'true', modify the property and have the modification in my Base NAnt process. In my example it changes t

[Nant-users] NUnit2 task with NUnit 2.1 fails

2003-08-27 Thread Jonathan . Cogley
Has anyone tried using the nunit2 task with nunit 2.1 assemblies? Am I missing the obvious that this shouldn't work - is there a new version of the nunit2 task being worked on for 2.1? I haven't used the nunit2 task before so I don't know if that is the cause of my problem or not. I traced throug

RE: [Nant-users] CS0246

2003-08-27 Thread Yoram Halberstam
Thanks Daya & Gert, it is all working now. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Gert Driesen Sent: 27 August 2003 16:52 To: Yoram Halberstam Cc: [EMAIL PROTECTED] Subject: Re: [Nant-users] CS0246 files from multiple directories you mean ? use th

RE: [Nant-users] CS0246

2003-08-27 Thread Yoram Halberstam
This bug seems to be reported. http://sourceforge.net/tracker/index.php?func=detail&aid=796082&group_id=316 50&atid=402868 Btw I have another bug but I don't want to report it if it is because I am being an idiot. the nunit doc at http://nant.sourceforge.net/help/tasks/nunittask.html says " mai

Re: [Nant-users] CS0246

2003-08-27 Thread Gert Driesen
- Original Message - From: "Daya Sharma" <[EMAIL PROTECTED]> To: "'Yoram Halberstam'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, August 27, 2003 5:48 PM Subject: RE: [Nant-users] CS0246 > Hi Yoram > > I would recommend you try "asis" attribute of element. So your > inclu

Re: [Nant-users] CS0246

2003-08-27 Thread Gert Driesen
files from multiple directories you mean ? use this instead : Hope this helps, Gert - Original Message - From: "Yoram Halberstam" <[EMAIL PROTECTED]> To: "Gert Driesen" <[EMAIL PROTECTED]> Sent: Wednesday, August 27, 2003 5:41 PM Subject: RE: [Nant-users] CS0246 > C

RE: [Nant-users] CS0246

2003-08-27 Thread Daya Sharma
Hi Yoram I would recommend you try "asis" attribute of element. So your includes will look like asis=true disables checking for the existence of the dll, asis=false enables checking for the existence of dll. Also make sure you are using DOS 8.x naming convention for your dll file na

Re: [Nant-users] CS0246

2003-08-27 Thread Gert Driesen
NAnt supports only one references element, so it will only use the first one. Gert - Original Message - From: "Yoram Halberstam" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 27, 2003 5:33 PM Subject: RE: [Nant-users] CS0246 > Note: The only difference I see betwe

RE: [Nant-users] CS0246

2003-08-27 Thread Yoram Halberstam
Note: The only difference I see between my dll and nunit is that nunit is registered with the GAC. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Yoram Halberstam Sent: 27 August 2003 16:21 To: [EMAIL PROTECTED] Subject: [Nant-users] CS0246 Hi, I have an

[Nant-users] CS0246

2003-08-27 Thread Yoram Halberstam
Hi, I have an ant task that compiles 2 dll, the second needs the first. Here is the requires section I put in the "" task Now the NUNIT dll works as it is is needed by the first one and both the remaining dlls are in DIR_BUILD_BASE. DLL1 is the one that is missing

RE: [Nant-users] This is a mail that explains the various nAnt tasks and their progress

2003-08-27 Thread Arjen Poutsma
Great piece of work! Very helpful for Nant newbies, IMO. However, the description you gave for the gac task is not correct. The layout of the GacTask have changed somewhat, while the documentation has remained the same ;-). Instead of an boolean uninstall attribute, there is now a action attribute

[Nant-users] This is a mail that explains the various nAnt tasks and their progress

2003-08-27 Thread Soumitra Bajpai
Dear All,   I have been following nAnt over the last two months and I thought maybe by sending a digest of the various commonly needed tasks their development status and how to use them.   CSC task   This is the most commonly used task .To compile a typical library (DLL) see the sample g

RE: [Nant-users] Exception Line Numbers

2003-08-27 Thread Erv Walter
Your application has to be compiled in debug mode (see the csc "debug" attribute). From: Jordan Redner [mailto:[EMAIL PROTECTED] Sent: Monday, August 25, 2003 10:51 AMTo: [EMAIL PROTECTED]Subject: [Nant-users] Exception Line Numbers I am having a hard time enabling detailed line numbers

RE: [Nant-users] delete task - problem with exclude

2003-08-27 Thread Erv Walter
It's not intuitive, but we use something like this and it works ok. This erases all files except the config directory and except for *.config in the top level directory or in config\.

[Nant-users] delete task - problem with exclude

2003-08-27 Thread Lawrence, Richard
When publishing my ASP.NET project, I want to leave two directories and their contents in place, while deleting everything else. As I understand filesets, the following should work. But user and Uploads get deleted. What am I missing? Here's an excerpt of

[Nant-users] Exception Line Numbers

2003-08-27 Thread Jordan Redner
I am having a hard time enabling detailed line numbers in the exceptions that are generated from NANT compiled c# programs.   Does anyone know how to turn this on with NANT csc?   Thanks in advance.     Jordan     -- Jordan Redner Lycos Finance / Terra Lycos, Inc. http://financ

Re: [Nant-users] VSS support

2003-08-27 Thread Ian MacLean
pradeep, see the VSS tasks in NAntContrib. Ian Hi, does NAnt support Microsoft Visual Source Safe fully ?? If yes, how is it implemented in the build file ? (I'm referring to the task ?) cheers, pradeep --- This sf.net email is sponsored

[Nant-users] VSS support

2003-08-27 Thread Ballal, Pradeep(STP)
Hi,   does NAnt support Microsoft Visual Source Safe fully ?? If yes, how is it implemented in the build file ? (I'm referring to the task ?)   cheers, pradeep