Re: [Nant-users] Handling "content" in a web project

2005-05-16 Thread Troy Parsons
Hm... good idea, Ray, Currently, rather than copying files I want, I don't copy files I know I don't want - ie my NAnt task uses file pattern to ignore things like .cs However, given that the .csproj file is just XML, it should be pretty easy to loop over and copy the given files... I think

RE: [Nant-users] Handling "content" in a web project

2005-05-16 Thread Ryan Davis
I solved this problem by making an xslt to convert the .csproj file into a file list, then use the task to copy the files. The XLST is attached, and here's a simplified version of my nant task (not tested): So the

RE: [Nant-users] Handling "content" in a web project

2005-05-16 Thread Ryan Davis
I solved this problem by making an xslt to convert the .csproj file into a file list, then use the task to copy the files. The XLST is attached, and here's a simplified version of my nant task (not tested): So the

RE: [Nant-users] Handling "content" in a web project

2005-05-13 Thread Selke, Anthony
is menu command actually does and how it does it, that may be able to be replicated. Tony -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ray Johnson Sent: Friday, May 13, 2005 5:35 PM To: nant-users@lists.sourceforge.net Subject: [Nant-users] Handling

[Nant-users] Handling "content" in a web project

2005-05-13 Thread Ray Johnson
Is there a facility to look at a web project and "copy" the files marked as "Content" to a given location? This is kind of a deployment of a web project - but we need to deploy to an intermediate directory rather than an IIS install. We could, of course, copy file patterns. However, one thing w