[NAnt-users] Problem with xmlpeek & poke & WIX files (Capitalization of xml tags?)

2007-02-14 Thread nick hemsley
Hey all, I have a WIX (http://wix.sf.net) file which looks like this: http://schemas.microsoft.com/wix/2003/01/wi";> ... I am trying to xmlpoke the Name, Version & Manufatcurer etc. v

[NAnt-users] to a file other than utf8?

2007-02-14 Thread Mark Modrall
Hi... I was just wondering if there was any way to get to use some other encoding than utf8 when writing to a file? doesn't have an encoding attribute... Thanks -Mark This e-mail message, and any attachments, is intended only for the use of the individual or entity identified in the

[NAnt-users] VS2005 Support

2007-02-14 Thread Richard Gavel
I understand from a previous email that VS2005/MSBUILD file support has been added to the task within the nightly builds. However, I am trying to target the 1.1 framework and from the code, it seems like that is supported. But what it missing is the .targets files to be placed in the 1.1 framework

Re: [NAnt-users] bug in path::get-directory-name()?

2007-02-14 Thread Rod Ayers
Have you tried: path::get-directory-name("c:\my-folder\") or path::get-directory-name("c:\my-folder\*.*") -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Daniel Blendea Sent: Wednesday, February 14, 2007 8:11 AM To: Bob Archer Cc: nant-users@lists.sourcefo

Re: [NAnt-users] bug in path::get-directory-name()?

2007-02-14 Thread Rod Ayers
Don't forget that both files and subdirectories are objects in the parent folder. We assign special meaning to "directory/folder", but the function returns information about the parent of the object. Rod -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of

Re: [NAnt-users] bug in path::get-directory-name()?

2007-02-14 Thread Daniel Blendea
Indeed... [Function("get-directory-name")] public static string GetDirectoryName(string path) { string dirName = Path.GetDirectoryName(path); return StringUtils.ConvertNullToEmpty(dirName); } the function is a wrapper around the equivalent .NET meth

Re: [NAnt-users] bug in path::get-directory-name()?

2007-02-14 Thread Bob Archer
You may want to get the code and look at the tests for this function. But, I assume it returns everything in a string prior to the final back(forward)slash. Since it returns a string the information is apparently just the path name. BOb -Original Message- From: [EMAIL PROTECTED] [mailto:[

[NAnt-users] bug in path::get-directory-name()?

2007-02-14 Thread Daniel Blendea
Hi all, I'm trying to use path::get-directory-name() and if is a directory the function returns the parent directory. Is this the correct behaviour? because i think it isn't. The description of the function is rather vague: "Returns the directory information for the specified path string. " Wh