RE: [Nant-users] Using NAnt to Run Visual Studio.NET Custom Tools

2004-11-09 Thread Gert Driesen
Title: Message Leo,   There's no support for this right now, but can you submit a bug report for this and a sample that just relies on the crystal reports that ships with VS.NET (as I don't have a license for the full Crystal Reports application). I'll see if we can add support for this someh

RE: [Nant-users] What is project default dir?

2004-11-09 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of red forks > Sent: dinsdag 9 november 2004 15:34 > To: [EMAIL PROTECTED] > Subject: [Nant-users] What is project default dir? > > In nant's help I found: "basedir The base directory from which all >

[Nant-users] Re: What is project default dir?

2004-11-09 Thread red forks
No one answer me? --- This SF.Net email is sponsored by: Sybase ASE Linux Express Edition - download now for FREE LinuxWorld Reader's Choice Award Winner for best database on Linux. http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click ___

RE: [Nant-users] NAnt copies more files than VS.NET

2004-11-09 Thread Gert Driesen
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > On Behalf Of Eric Deslauriers > Sent: woensdag 10 november 2004 1:25 > To: [EMAIL PROTECTED] > Subject: [Nant-users] NAnt copies more files than VS.NET > > I have a DLL project that includes references to SHDocVW (COM tab, Microsoft Intern

[Nant-users] NAnt copies more files than VS.NET

2004-11-09 Thread Eric Deslauriers
I have a DLL project that includes references to SHDocVW (COM tab, Microsoft Internet Controls) and Microsoft.MSHTML (COM tab, Microsoft HTML Object Library)   Using the following target in my default.build,                  

[Nant-users] Solution task for vcproj - Default import lib issue

2004-11-09 Thread Will Wilson
Hi All, First off, thanks for great work done on Nant. I used the original Ant a few years ago on both C++ & Java projects now have a need to compile a fairly complex C++ solution (ie. multiple projects with thousands of files). So far, with a little gentle persuasion, I've managed to get

RE: [Nant-users] Multiple sources for a task

2004-11-09 Thread Gert Driesen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Blossom, Eric > Sent: dinsdag 9 november 2004 22:21 > To: Hamza Zeen-Aldin; Nant users list > Subject: RE: [Nant-users] Multiple sources for a task > > Can't you use multiple s? Nope, not right

RE: [Nant-users] Question regarding the nunit2 task

2004-11-09 Thread Gert Driesen
The "haltonerror" attribute on controls whether a failure in that specific test assembly will result in a build failure (if "failonerror" on is set to "true", which it is by default), or just continue with the next element (assembly). By setting the "failonerror" attribute on task to "false" b

RE: [Nant-users] Multiple sources for a task

2004-11-09 Thread Blossom, Eric
Can't you use multiple s? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Hamza Zeen-Aldin Sent: Tuesday, November 09, 2004 1:11 PM To: Nant users list Subject: [Nant-users] Multiple sources for a task Hi, I am trying to use the zip task to compress fil

RE: [Nant-users] Multiple sources for a task

2004-11-09 Thread Felice Vittoria
Hamza, I don't think you are not able to do this w/ Nant 0.84 and Nant 0.85. I think there's going to be support for multiple filesets in a future release. For now, (and this is what I do), I have multiple copy tasks. For zip task, I do something like:

[Nant-users] Multiple sources for a task

2004-11-09 Thread Hamza Zeen-Aldin
Hi, I am trying to use the zip task to compress files that are located in different folders. The fileset only allows one base folder how can I do that? (copying the files to a temp folder and then use that folder as source folder is ineficient because of the big file sizes) I am also having the

RE: [Nant-users] Error Building Solution

2004-11-09 Thread Gert Driesen
Pedro, You probably have an older version of NDoc in your NAnt bin directory. Gert > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Pedro Honório Silva > Sent: dinsdag 9 november 2004 18:01 > To: 'Gert Driesen'; [EMAIL PROTECTED] > Subject: RE:

RE: [Nant-users] Error Building Solution

2004-11-09 Thread Pedro Honório Silva
Hi Gert. It worked, thanks! Now I have another problem, and this one seems to be a problem of manifests. But check out the Nant output: document: BUILD FAILED INTERNAL ERROR System.IO.FileLoadException: The located assembly's manifest definition with name 'NDoc.Core' does not match the assemb

RE: FW: [Nant-users] resource file problem...

2004-11-09 Thread John Cole
Matt, That seemed to be the problem, thanks! John -Original Message- From: Matt Ward [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 09, 2004 8:42 AM To: John Cole; [EMAIL PROTECTED] Subject: Re: FW: [Nant-users] resource file problem... Hi John, Try removing the prefix attribute

Re: [Nant-users] Error Building Solution

2004-11-09 Thread Gert Driesen
Pedro, is a child element of , so you should have this : http://localhost/Netliga/Web.csproj"; path="${build.dir}\Web.csproj" /> NAnt should actually have reported that mistake. Let me have a look at this later ... Hope this helps, Gert - Origina

Re: [Nant-users] Building with task versus devenv

2004-11-09 Thread Gert Driesen
John, Can you send me a small repro for this issue ? Thanks, Gert - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 09, 2004 3:33 PM Subject: [Nant-users] Building with task versus devenv > > > > > I am using NANT for the first time with t

RE: [Nant-users] Building with task versus devenv

2004-11-09 Thread Michael Joseph
Hi John, I had the exact same issue, here's the thread: http://www.mail-archive.com/nant-users@lists.sourceforge.net/msg04871.ht ml My post mentions how I solved it for the task, but the way I hacked it for the task was to remove all the entries in csc.rsp. Hope that helps michael > -Orig

[Nant-users] Using NAnt to Run Visual Studio.NET Custom Tools

2004-11-09 Thread Hart, Leo
Title: Message Hello,   I have a Windows Forms project that contains: Build file (Loan.Build) in root Forms (.resx, .vb) in folder Dataset Crystal Reports (.rpt, .vb) in folder Form DataSets (.vb, .xsd, .xsx) in folder Report My .vb files are being compiled as expected an

RE: [Nant-users] Named Fileset

2004-11-09 Thread Felice Vittoria
Hamza, I think I know what you are trying to do. Here's what I'm doing to use the same fileset but in multiple places. There's probably another way. Here's an example: What I came across was that I couldn't do something like: T

RE: [Nant-users] Error Building Solution

2004-11-09 Thread Pedro Honório Silva
Hi again Gert! Now I get the following error: compile: [solution] Starting solution build. BUILD FAILED Cannot build web project 'http://localhost/Netliga/Web.csproj'. Please use to map the given URL to a project-relative path, or specify enablewebdav="true" on the task element to use Web

Re: FW: [Nant-users] resource file problem...

2004-11-09 Thread Matt Ward
Hi John, Try removing the prefix attribute in the build file as follows: If you specify a prefix in, say "Foo", your resource will be embedded in your exe with a name of "Foo.HelloWorld.MainForm.resources" which the MainForm cannot find since it is looking for "H

[Nant-users] Building with task versus devenv

2004-11-09 Thread John_E_Wilson
I am using NANT for the first time with the task. I am receiving a compile error when using the build target versus using the devenv command line. The error during the build indicates that " [solution] d:\Apps\MBPA\UI\Claims.Shared.BDO\Entities\Person.cs(198,9): error CS0234: The type or nam

[Nant-users] What is project default dir?

2004-11-09 Thread red forks
In nant's help I found: "basedir The base directory from which all path calculations are done. The current directory is used by default. " (http://nant.sourceforge.net/nightly/help/fundamentals/projects.html). Following nant project file shows the default dir:

Re: [Nant-users] Named Fileset

2004-11-09 Thread Thibaut Barrère
Hi Hamza, > I want to use name filesets and there are no examples on how to do so. > What I am trying to do is create one Fileset and reference it again > later in multiple places. you can use the id attribute when declaring a fileset : then reference it where you need using the refi

[Nant-users] Question regarding the nunit2 task

2004-11-09 Thread murty dronamraju
Hi Guys: I had a question about the nunit2 task.I want my build script to continue running through all the unit tests even though a particular unit test fails. Here is what i have in my build script

[Nant-users] Named Fileset

2004-11-09 Thread Hamza Zeen-Aldin
Hi everyone, I want to use name filesets and there are no examples on how to do so. What I am trying to do is create one Fileset and reference it again later in multiple places. Also, when I try to use multiple filesets in the copy task I get an error that says multiple filesets are not supported.

Re: [Nant-users] Error Building Solution

2004-11-09 Thread Gert Driesen
Pedro, If I recall correctly, I fixed this issue after the 0.84 release. Can you try using a recent nightly build (http://nant.sourceforge.net/nightly/builds) ? Gert - Original Message - From: "Pedro Honório Silva" <[EMAIL PROTECTED]> To: "'Gert Driesen'" <[EMAIL PROTECTED]>; <[EMAIL PRO

FW: [Nant-users] resource file problem...

2004-11-09 Thread John Cole
I think I sent this to only Gert, so I'm reposting it back to the list. John -Original Message- From: John Cole Sent: Monday, November 08, 2004 8:42 AM To: 'Gert Driesen' Subject: RE: [Nant-users] resource file problem... Gert, I had tried to with the original post. Apparently, it was

RE: [Nant-users] Error Building Solution

2004-11-09 Thread Pedro Honório Silva
Nant 0.84 Pedro Honório Silva -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: terça-feira, 9 de Novembro de 2004 13:13 To: Pedro Honório Silva; 'Pieter Jansen van Vuuren'; [EMAIL PROTECTED] Subject: Re: [Nant-users] Error Building Solution Pedro, What version of

Re: [Nant-users] Error Building Solution

2004-11-09 Thread Gert Driesen
Pedro, What version of NAnt are you using ? Gert - Original Message - From: "Pedro Honório Silva" <[EMAIL PROTECTED]> To: "'Pieter Jansen van Vuuren'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, November 09, 2004 2:05 PM Subject: RE: [Nant-users] Error Building Solution Tha

RE: [Nant-users] Error Building Solution

2004-11-09 Thread Pedro Honório Silva
Thank you for your answer. Well, it didn't work. I placed the following tag:         http://localhost/Netliga/Web.csproj" path="${build.dir}\Web.csproj" />   inside the compile section, and it didn't work. I've placed it outside the compile tag and still didn't work.

[Nant-users] Error Building Solution

2004-11-09 Thread Pedro Honório Silva
Hi there.   I'm getting the following error when building my project with NAnt:   compile:    [solution] Starting solution build.   BUILD FAILED   Error checking whether 'http://localhost/Netliga/Web.csproj' is an enterprise template project. The remote server returned an error: (403) For

[Nant-users] [HELP][CVS-Check Out Problem]

2004-11-09 Thread Sanjoy
Dear All, I am new to NANT. I want some help to solve my problem. I am using NAnt 0.85 (Build 0.85.1583.0; net-1.0.win32; nightly; 02/05/2004) Copyright (C) 2001-2004 Gerry Shaw I want to use NANT to build my VB.Net Code. So I want to start from the CVS check out of the code. However I am not

[Nant-users] Fw: [nant-dev] bug report

2004-11-09 Thread Gert Driesen
Marco, Properties in the basedir attribute of are not expanded, so you should either remove the basedir attribute from project or specify the (relative) path without references to properties. We should probably output a warning in that case. I'll look into that later. Gert - Original Messa