RE: [Nant-users] csc Task Strategies

2005-07-12 Thread Bill Martin
Title: csc Task Strategies There are ways to simplify your problem, depending on your circumstances.  I am assuming that your assemblies are strong named, so you need to reference the specific version?  Does the whole system always reference a single version of a particular assembly or could

RE: [Nant-users] FxCop failing build

2005-07-12 Thread Sandeep
Hi James,   If you want to merge FxCop xml file in CCNET even after Nant build fails, use the merge task under node (Move it from to node. Please check CCNet documentation:   publishers A set of Tasks that are run after the build is complete. These tasks are us

RE: [Nant-users] nant.project.basedir replacement

2005-07-12 Thread Melissa Kacher
See this page in the docs: http://nant.sourceforge.net/release/latest/help/functions/nant.get-base- directory.html From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steve Baker Sent: Tuesday, July 12, 2005 8:32 AM To: nant-users@lists.sourceforge.ne

[Nant-users] nant.project.basedir replacement

2005-07-12 Thread Steve Baker
I see that nant.project.basedir is deprecated.   What is the best way to get at this information?   I need to pass a comma separated list of fully qualified paths to assemblies to Vil…   Thanks,   steve   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jim

Re: [Nant-users] csc Task Strategies

2005-07-12 Thread Gary Feldman
Ken Witmyer wrote: The developers are understandably not too keen on the idea of manually maintaining these references in the build scripts. They have proposed hooking into VS.NET's build process to mine the .csproj files and rebuild the csc tasks in the build scripts. I'm a bit hesitant be

Re: [Nant-users] FxCop failing build

2005-07-12 Thread Jim Geurts
James, I'm not sure if you're using the fxcop task (part of NAntContrib) or just calling fxcopcmd.exe.  If you are using the task, I would think you could just set the "directOutputToConsole" attribute to true.  That way the output would be added to the NAnt report.  Otherwise there is a related

RE: [Nant-users] FxCop failing build

2005-07-12 Thread Foster, Richard - PAL
James, You may find that the latest version of FX-Cop (1.32, released July 1st) does return error codes... or at least it seems to for me, because my build started to fall over when I switched to the new version! I also assume that if you were running a pre 0.9.1 release you moved the "merge" tas

[Nant-users] FxCop failing build

2005-07-12 Thread James Jackson
Hi there, I'm trying to integrate FxCop as part of our build process. We have a shared build script that developers run locally, and that our continuous integration server runs. As FxCop does not return failure error codes, I've implemented the method recommended by MS, in that if after analysis t