RE: [Nant-users] How To Use Variable in delete if construct

2005-03-21 Thread Eric Bowen
Sorry for the belated response, but I just figured out an alternate syntax to do what you are trying to do, and thought other people might find it helpfull:         The point is that you can't nest ${...} properties but you CAN still concatonate strings in expressions, so '.\${src.dir}' becom

RE: [Nant-users] Copy task problem: Coping two instances of the same file to one new location

2005-03-14 Thread Eric Bowen
Work around:   1. Make sure none of the files or directories involved are Read-Only. 2. In my case the source files are all being retrieved from Visual Source Safe (VSS) at the start of the Nant script using code like the following:    username="${vss.user}"     password="${vss.

[Nant-users] Copy task problem: Coping two instances of the same file to one new location

2005-03-14 Thread Eric Bowen
I'm having a problem with the copy task failing (System.UnauthorizedAccessException) when it tries to copy two seperate instances of the same file to one destination.  I've got a simple copy task that is supposed to consolidate the bin directories from multiple projects into one common bin d