[Nant-users] Re: BUILD FAILED in .csprog with '=' in a WebReferenceUrl

2005-08-26 Thread Matthew Mastracci
Actually, it looks like the token that breaks your project is the unquoted ampersand. :) VS.NET has a strange problem where it dumps unquoted ampersands into otherwise valid XML. There isn't an easy fix available, since we can't even load the XML! Nielsen.Allan Rene Dystrup AND wrote: I h

[Nant-users] Re: Suboptimal fileset include

2005-06-21 Thread Matthew Mastracci
Gary Feldman wrote: Internally, we have a flag "isRecursive" that we set on patterns that reflects whether the pattern potentially matches more than a single directory: Without studying the code to figure out the intent of the recursive flag, my gut intuition is that only the ** implies recu

[Nant-users] Re: Suboptimal fileset include

2005-06-21 Thread Matthew Mastracci
Gary Feldman wrote: I'm trying to create a fileset that goes one level deep, to pick out subdirectories. In other words, I have a tree that looks like: root/ project1/ testresults/ project2/ testresults/ I've tried both and Both of these wind up

Re: [Nant-users] Re: Running NAnt inside Visual Studio

2005-06-10 Thread Matthew Mastracci
Jim Geurts wrote: I don't know if this would interest anyone, but we use a vs.net addin, at work, that we can release to the community. When we do a solution build, it'll search for a solution level build file. The addin runs all nant tasks before it hits the task. Then it

[Nant-users] Re: Running NAnt inside Visual Studio

2005-06-09 Thread Matthew Mastracci
We solved it in-house by creating a new solution configuration based on the Release configuration and called it "NAnt". The NAnt configuration disables all the projects and uses Makefiles to call NAnt to build the debug configuration. This sounds very interesting. Please can you describe this

[Nant-users] Re: Running NAnt inside Visual Studio

2005-06-09 Thread Matthew Mastracci
Klaus Lüdenscheidt wrote: i'm working with a solution which can't be compiled in Visual Studio (i always get an error CS0013: could not write to ...pdb. Not enough memory). To work around this problem i want to compile the solution via NAnt's task. Outside Visual Studio it works fine. But whe

[Nant-users] Re: rebuild in NAnt

2004-12-16 Thread Matthew Mastracci
The latest nightlies for 0.85 should allow you to delete the wildcard patterns below. Bugs in earlier versions were preventing this from working correctly. > > > > > > Matt. Angus Grant wrote: I have written all my bu

[Nant-users] Re: FileSet Behavior

2004-12-01 Thread Matthew Mastracci
e info for you inline ... Gert -----Original Message- From: Matthew Mastracci [mailto:[EMAIL PROTECTED] Sent: woensdag 1 december 2004 0:38 To: Castro, Edwin Gabriel (Firing Systems Engr.) Cc: Gert Driesen; [EMAIL PROTECTED] Subject: Re: [Nant-users] Re: FileSet Behavior Strange - the **\bin\** patt

Re: [Nant-users] Re: FileSet Behavior

2004-11-30 Thread Matthew Mastracci
age- From: Gert Driesen [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 30, 2004 12:18 AM To: 'Matthew Mastracci'; Castro, Edwin Gabriel (Firing Systems Engr.); [EMAIL PROTECTED] Subject: RE: [Nant-users] Re: FileSet Behavior -Original Message- From: [EMAIL PROTECTED] [

[Nant-users] Re: FileSet Behavior

2004-11-29 Thread Matthew Mastracci
Try the latest nightlies - the original bug should be fixed. Castro, Edwin Gabriel (Firing Systems Engr.) wrote: A little update: I thought I would be smart by trying to exclude the files with bin and obj extensions. Like this: I found out this doesn't work as I hoped. T

[Nant-users] Re: Force documentation generation in Solution task

2004-04-23 Thread Matthew Mastracci
There are a couple of easier alternatives: 1. Generate documentation only in release mode, build debug mode on development machines 2. Use one of the XML tasks with a foreach to "poke" the documentation setting into the project files before the task runs. I think we would all prefer to keep

[Nant-users] Re: Remove support for WebDAV from task ?

2004-03-08 Thread Matthew Mastracci
stuff? Anyways, I'll say 0 instead of -1 for removal of WebDAV. I'm not personally convinced either way, but I do agree it's a huge pain in the butt to get it configured (besides being a security hole). Matt. Matthew Mastracci wrote: The latest stuff has the EnableWebDAV stuff to p

[Nant-users] Re: Remove support for WebDAV from task ?

2004-03-08 Thread Matthew Mastracci
The latest stuff has the EnableWebDAV stuff to prevent it being used by default. It's been in there for a month or so and tells the user to either provide a webmap or set EnableWebDAV = true to make it work. -1 for removing it - if people want it, they can be pointed at documentation to set up

[Nant-users] Re: internal error report - solution task

2004-01-23 Thread Matthew Mastracci
Visual C++ projects are notoriously buggy right now. I have yet to get them to work for myself. Your best bet for now is build your C# projects using NAnt and shell out to devenv.exe for your C++ project. See my build file here for an example: http://cvs.sourceforge.net/viewcvs.py/nprof/nprof

[Nant-users] RE: solution stuff

2003-11-26 Thread Matthew Mastracci
t; > as this dll is an old legacy VB6 COM component - can this be a problem ? > > > -Original Message- > From: Matthew Mastracci [mailto:[EMAIL PROTECTED] > Sent: Montag, 17. November 2003 17:05 > To: Gerold Kathan; [EMAIL PROTECTED] > Subject: Re: solution s

[Nant-users] Re: solution stuff

2003-11-17 Thread Matthew Mastracci
Make sure the COM object is registered on your server. It's generally easier, however, to run TLBEXP on the DLLs you need by hand and reference the Interop.*.dll file that it generates. You won't need to have any COM objects registered on your server in that case. Gerold Kathan wrote: hi - w

[Nant-users] Re: Zip task recursively

2003-11-12 Thread Matthew Mastracci
Try: ** is the recursive version of the wildcard. Mahajan, Umesh wrote: I want to recursively zip the entire source tree (all subdirectories and underneath) from NANT build script. I couldn't find any option for that. I tried the following, but It zips only top level files. I don't want to en

[Nant-users] Re: Any good NANT build file generators for a .NET project or .NET So lution out there?

2003-11-10 Thread Matthew Mastracci
We're using the task here for building a total of 81 projects: webforms, winforms, class library, windows services and web services. We don't build off the solutions, but rather from a list of projects in a text file. NAnt still builds each of the projects in the correct order. For continuou

[Nant-users] Editing .build files w/syntax hilighting in VS.NET

2003-11-06 Thread Matthew Mastracci
I'm not sure if this was posted to these lists before, but this registry modification with allow you to edit .build file with nice XML syntax hiliting in VS.NET 2003. Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\7.1\Editors\{8281C572-2171-45AA-A64

[Nant-users] FIXED: Major temp directory leak in task

2003-07-23 Thread Matthew Mastracci
lease candidate. Matthew Mastracci wrote: I've just realized that the temp directory leak in the task is likely slowing my build process down by an order of magnitude! Those who run checkin/nightly builds with this task may wish to consider an automated process to clear the temp directory

[Nant-users] Solution task fixes checked in

2003-07-18 Thread Matthew Mastracci
For those interested, some recent bugfixes checked in: - Generate the correct filename for .resx files without dependent files (ie: x\foo.resx in project "some.namespace" -> some.namespace.x.foo.resources) - Convert the requested configuration to lowercase to match the rest of the solution buil

[Nant-users] VB projects now supported

2003-07-18 Thread Matthew Mastracci
I've also checked in support for reading resources of VB projects and generating the appropriate dependent resource name. This was supposed to go in RC1, but I managed to check it into the wrong CVS branch. Look for it in the final 0.8.3 release. Matt. -

Re: [Nant-users] RE: WebDAV and permissions for solution task

2003-07-09 Thread Matthew Mastracci
Original Message----- From: Matthew Mastracci [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 5:06 PM To: [EMAIL PROTECTED]; Williams, Kevin Subject: [Nant-users] RE: WebDAV and permissions for solution task [EMAIL PROTECTED] wrote: Matt, Thank you for your reply. Unfortunately, I'm e

[Nant-users] RE: WebDAV and permissions for solution task

2003-07-09 Thread Matthew Mastracci
[EMAIL PROTECTED] wrote: Matt, Thank you for your reply. Unfortunately, I'm even more confused now. The .sln file points to http://localhost/blah/blah.csproj yet VS.NET is able to resolve all this and compile just fine, without any extra steps to enable WebDAV write access and source access. Ther

[Nant-users] WebDAV and permissions for solution task

2003-07-08 Thread Matthew Mastracci
Kevin- Ensure that you've set "Script Source Access" and "Read" on your root virtual directory and "Write" access on your "bin" directory. Without this, ASP.NET will deny access to the raw .cs files and won't let you upload the compiled web project outputs. You can also point it directly at t

[Nant-users] NAnt 0.8.2-rc2 available

2003-04-12 Thread Matthew Mastracci
nning. * Resgen file generation correctness fixes. * Added support multiple delimiters and string trimming to LoopTask's file line mode. * More support for CSC/VBC command-line options. Thanks! Matthew Mastracci --- This SF.net email is sp

Re: [nant-dev] [Nant-users] How to use nunit2 task (resend)

2003-04-02 Thread Matthew Mastracci
I added fileset support to the NUnit2 task earlier - but this shouldn't affect the assemblyname attribute. Scott Hernandez wrote: That assemblyname attribute is really a nunit assemblyname(FilePath). It really needs to be a full filepath to the file. I have updated the NUnit2Test to resolve the

Re: [nant-dev] [Nant-users] How to use nunit2 task (resend)

2003-03-28 Thread Matthew Mastracci
Make sure that you're using the same version of NUnit for linking your test assemblies that NAnt uses. You'll get this error if there is a mismatch. I'm not sure what we can do to fix the issue of linking against the wrong NUnit, but I'm guessing that this is what the problem is. Anthony Fran