[Nant-users] Warning from the unwary

2004-07-01 Thread Troy Laurin
I started getting errors trying to run my build file today... I thought it might have something to do with re-installing VS.Net 2003, but other build files have worked since the re-install... When I ran the build file directly and it worked fine, I looked at my bootstrap batch file. Turns out I

RE: [Nant-users] Assembly references in NDoc

2004-07-01 Thread Bill.Martin
Great, thanks Gert. The Documenters don't appear to be documented in the help for NAnt, it only lists assemblies and summaries. Should I be looking at NDoc documentation for this? Cheers, Bill -Original Message- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: 30 June 2004

RE: [Nant-users] Assembly references in NDoc

2004-07-01 Thread Bill.Martin
Sorry Gert, my mistake. I was only half awake and misread your reply as meaning a ReferencesPath attribute on the documenters element, rather than a property definition within the element. I can definitely look at the NDoc site to get details of the properties here. Cheers, Bill

RE: [Nant-users] Newbie question: VBC vs. Solution task

2004-07-01 Thread Shawn Knowles
Thanks Ian. I have resolved the problem. I downloaded the latest nightly build so that I could automatically use the 1.1 framework and everything works. (My machine doesn't have 1.0 installed) Now that they are building however, the VBC produces an 80kb binary while the SOLUTION and IDE both

Re: [Nant-users] Newbie question: VBC vs. Solution task

2004-07-01 Thread Ian MacLean
Shawn Knowles wrote: Thanks Ian. I have resolved the problem. I downloaded the latest nightly build so that I could automatically use the 1.1 framework and everything works. (My machine doesn't have 1.0 installed) Now that they are building however, the VBC produces an 80kb binary while the

[Nant-users] Most Stable Nightly Build

2004-07-01 Thread Dan Pupek
Does any one recommend a nightly build that is most stable? Thanks, Dan Pupek Software Engineer Advanced Systems Technology, Inc [EMAIL PROTECTED] (850) 475-4038 BEGIN:VCARD VERSION:2.1 N:Pupek;Daniel FN:Daniel Pupek NICKNAME:Dan ORG:Advanced Systems Technology, Inc.;TDD TITLE:Software

[Nant-users] NAnt Build System.Security.Permissions error

2004-07-01 Thread N K
Hi, I've been trying to build nant, and I continuously receive the errors: [csc] Compiling 105 files to C:\NANT/build/net-1.1.win32/nant- 0.84-debug/bin/NAnt.Core.dll. c:\nant\src\NAnt.Core\Tasks\LoadTasks.cs(117,9): error C S0647: Error emitting

[Nant-users] Setting environment variables in the exec task

2004-07-01 Thread joejurkiewicz
BDY.RTF Description: RTF file

RE: [Nant-users] Setting environment variables in the exec task

2004-07-01 Thread Castro, Edwin Gabriel (Firing Systems Engr.)
Here is an example of what you want to do: exec program=${devenv.exe} arg arg value=${devenv.sln} / arg value=/${devenv.action} / arg value=${devenv.cfg / /arg environment option name=PATH value=${devenv.path}

[Nant-users] Difficulty excluding files of specific naming convention

2004-07-01 Thread Sean Walker
within the target, Sources tag, I am trying to exclude files using name filtering. I wish to include all files with a name starting with _ ending in .cs, but include all other .cs files. I am using the following: sources excludes name=${sc.source}\${library.name}\_*.cs/

RE: [Nant-users] Difficulty excluding files of specific naming convention

2004-07-01 Thread Troy Laurin
Sean, The problem is in how you are using your wildcards... Try sources includes name=${sc.source}\${library.name}\**\*.cs / excludes name=${sc.source}\${library.name}\**\_*.cs / excludes name=${sc.source}\${library.name}\UnitTests\**\*.cs unless=${include.tests} / /sources It's usually