Re: [Nant-users] Unknown Task or Datatype help with v0.8.3

2003-11-12 Thread Scott Hernandez
Can you post the class def part of your custom tasks? This sounds like there is a missing [TaskName] decl. for your task. Also, if you can provide your custom task, to me, or in as a link, I'm sure somebody can take a look. :) - Original Message - From: "Michael Dang" <[EMAIL PROTECTED]>

[Nant-users] Unknown Task or Datatype help with v0.8.3

2003-11-12 Thread Michael Dang
Hi, I was trying to do a few things with Nant. Recompile the v0.8.3 Stable release with a new Log4net version8beta. Here are the steps I took to recompile nant: 1) Copied the version8beta of log4net.dll (v1.2.0.30714) into C:\temp\nant-0.8.3.50105\bin 2) changed the following property in Nant

[Nant-users] solution taks not working with web projects

2003-11-12 Thread COTTER Eric F
Title: Message Hello dork question here.   I have my task runing and well it barfs on the web project with the following error:   System.Net.WebException: The remote server returned an error: (403) Forbidden.   at System.Net.HttpWebRequest.CheckFinalStatus()   at System.Net.HttpWebRequest

Re: [Nant-users] Zip task recursively

2003-11-12 Thread Duncan Godwin
Title: Zip task recursively Hi,   The trick is in the fileset patterns:                 ** Matches directories, and *.* matches files.   Cheers,   Duncan - Original Message - From: Mahajan, Umesh To: '[EMAIL PROTECTED]' Sent: Wednesday, November 12

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

RE: [Nant-users] Zip task recursively

2003-11-12 Thread Arild Fines
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 enumerate all the directories. Is > there any way

[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] Zip task recursively

2003-11-12 Thread Mahajan, Umesh
Title: Zip task recursively 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 enumerate all the directories. Is there any wa

[Nant-users] XSD File

2003-11-12 Thread Shaun Farrugia
I have a strongly typed dataset in an STSet.XSD File. In another class I create objects of this type. I am getting an error when i use vbc to compile this project. Do i need to do anything special with the XSD file so that the compiler can know he has a reference to it? When i build from vs