[Nant-users] RE: [nant-dev] Remove support for WebDAV from task ?

2004-03-08 Thread Erick Thompson
I haven't used WebDAV, but if I could use it to distribute a website to a final server, it would be very very useful to me. At the moment, I have a manual FTP step is required to move a web project to the production server. Erick > -Original Message- > From: [EMAIL PROTECTED] > [mailto:

[Nant-users] Copying project config file

2003-12-22 Thread Erick Thompson
I put together a little target that will copy the app.Config file used by visual studio to the build directory, renaming the file. The only external property needed is the build.dir property. However, I couldn't find where VS.NET stores the startup project, so I had to assume that folder where t

RE: [Nant-users] app.config --> project.exe.config

2003-12-19 Thread Erick Thompson
Eric, Did you ever get this problem worked out? I'm looking at a similar situation, and would love to have something I could reuse, as opposed to hardcoding app.config -> [ProjectName].exe.config. I'm using the solution task, without the project files specified. If I specify the project files,

RE: [Nant-users] Zip task recursively

2003-11-12 Thread Erick Thompson
With the fileset, if you want all files and all directories, try Erick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Mahajan, Umesh Sent: Wednesday, November 12, 2003 2:06 PM To: '[EMAIL PROTECTED]' Subject: [Nant-users] Zip task recursively I want to

[Nant-users] VS.NET 2003 - web project location problem

2003-10-15 Thread Erick Thompson
I'm putting together a system to use NANT and VSS to build and test a web application. All the development is done on my system using VS.NET 2003, and all testing is done on a staging server. The staging server gets the latest pages/code from VSS (using solution task). However, the solution file

RE: [Nant-users] Running NAnt from ASP.NET

2003-09-03 Thread Erick Thompson
27;m guessing that that will fix the > problem, as it certainly looks like an i/o error to me. > > Regards, > Brett > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Erick > Thompson > Sent: Thursday, 4 September 2003 7:4

RE: [Nant-users] Running NAnt from ASP.NET

2003-09-03 Thread Erick Thompson
nks, Erick > -Original Message- > From: Clayton Harbour [mailto:[EMAIL PROTECTED] > Sent: Wednesday, September 03, 2003 3:06 PM > To: Erick Thompson; [EMAIL PROTECTED] > Subject: RE: [Nant-users] Running NAnt from ASP.NET > > > Okay, this is a wild guess but the fi

[Nant-users] Running NAnt from ASP.NET

2003-09-03 Thread Erick Thompson
I'm attempting to get NAnt to run from an ASP.NET application. I have a build file that works correctly from the command line, but when I execute it, I get an error in the VSSGET task (visual source safe). I've turned impersonation on, and have tried running ASP.NET as the local admin. Neither one

RE: [Nant-users] SCP server

2003-09-02 Thread Erick Thompson
Server. There are some great clients out there, but I want to sync up a local project with a remote server as part of the build process. Thanks, Erick > -Original Message- > From: Ian MacLean [mailto:[EMAIL PROTECTED] > Sent: Friday, August 29, 2003 9:01 PM > To: Erick T

[Nant-users] SCP server

2003-08-29 Thread Erick Thompson
What are people using for a Windows SCP server? I am thinking the cygwin would be the most obvious was to go, but I would like to avoid it if possible (installs too many other things at the same time). Does anyone know of a native Windows SCP server? Thanks, Erick --

RE: [Nant-users] Return values?

2003-08-29 Thread Erick Thompson
get > the list of built files. > also, what didn't you think that having a project that "pulls" all the > others in your solution is a workable approach. t'works for me on a > large, convoluted projects. > /jean > > > > -Original Message- >

[Nant-users] Return values?

2003-08-29 Thread Erick Thompson
This question might belong on the dev-list, of which I am not a member, but I'll ask it here anyway. Does the NAnt architecture support "returning" data from elements? For example, it would be really handy to get a list of the files built in a solution, perhaps with something like

RE: Soltuion task (was RE: [Nant-users] slingshot task)

2003-08-28 Thread Erick Thompson
Original Message- From: Eric Fetzer [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 11:50 AM To: Erick Thompson; Nant Users Subject: Re: Soltuion task (was RE: [Nant-users] slingshot task) Add write access to your bin directory in IIS. Not sure if it's in rc2, bu

RE: Soltuion task (was RE: [Nant-users] slingshot task)

2003-08-28 Thread Erick Thompson
Once it's finished running, I'd like to be able to copy the built files. I can hardcode the project paths, but I don't like that idea. NAnt needs to parse out the file locations to build, so if I could get this info out, it would be very helpful. Thanks, Erick > -Original Mes

Soltuion task (was RE: [Nant-users] slingshot task)

2003-08-28 Thread Erick Thompson
Jeeze, I didn't even see the solution task. That's going to make my life a lot easier. :-P I'm playing around with it; what exactly does it do with a web project? When I execute NAnt with a very basic config (just the solution task), I get an error with HTTP 403 (forbidden). Shouldn't it just gen

RE: [Nant-users] slingshot task

2003-08-28 Thread Erick Thompson
yntax" to get around the problem? The "-- option=..." output from > eric's email hints that this could work. yes/no? > > jean > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behal

RE: [Nant-users] slingshot task

2003-08-27 Thread Erick Thompson
Jean, I found the same area, and I figure the problem is in there. However, the version that I am looking at has the OptionElement code commented out. I have a feeling that this is where the problem is, as the suggested format looks like an OptionElement to me. Unfortunately, the nantcontrib list

RE: [Nant-users] slingshot task

2003-08-27 Thread Erick Thompson
Any luck with this? I'm running into the same problem. I've tried a number of variations, with no success. Erick -Original Message- From: Eric Fetzer [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 2:09 PM To: Nant Users Subject: [Nant-users] slingshot task I'm experiencing

RE: [Nant-users] ASP.NET and VSS

2003-08-27 Thread Erick Thompson
Well, after fully reading the docs, I think I've answered both my questions (but any examples would still be great). However, I can't seem to find docs for an FTP task, which I thought existed. Is the FTP task finished/working? Thanks, Erick > -Original Message- > From

[Nant-users] ASP.NET and VSS

2003-08-27 Thread Erick Thompson
Hello everyone, I just downloaded NAnt, and I'm planning on using it for a number of projects. The WinForms projects seem fairly straight forward, but I'm planning on using it for ASP.NET projects as well. Does anyone have any example build files that they can send my way for ASP.NET projects? My