[Nant-users] vssget failed "access denied"

2005-01-31 Thread Risler, Dave
Title: vssget failed "access denied" Hi, I am getting a “access to file denied” error message from our build file.  Has anybody seen this before? I’ve attached our full build file and the failing snippet below.  If I just do a latest, no problems writing to the VSS working dir, but we nee

RE: [Nant-users] vssget failed "access denied"

2005-01-31 Thread Felice Vittoria
Title: vssget failed "access denied" Dave,   You have path="${filename}".     Does the filename also consist of somethink like the $/Project/FileName.txt syntax?  That's the only thing I can think of.     Also, I took a look at your build file.   You only need to load the Nant.Contrib.Tas

RE: [Nant-users] vssget failed "access denied"

2005-01-31 Thread Castro, Edwin Gabriel (Firing Systems Engr.)
Title: vssget failed "access denied" Access denied errors are usually related to a lack of permissions to access the share… But if everything works correctly when you do not include the version attribute then I’m not sure what could be causing the problem… I’ve seen similar problems when I

[Nant-users] is there an add-in to run nant from within vs.net?

2005-01-31 Thread Paul Jackson
Hi there,   I’ve come from a java/  eclipse / ant background and I was wondering if there is a way of running targets from within vs.net. This would include selecting a particular target within a build file and running it?   Paul Jackson  Meridian Informatics (www.meridianinfo.com)  

Re: [Nant-users] is there an add-in to run nant from within vs.net?

2005-01-31 Thread Chris Taylor
There is a vs.net addin called nantrunner that accomplishes this I believe. It's a little tricky to set up, but supposed to run your scripts from inside vs.net HTH On Tue, 1 Feb 2005 10:27:46 +1100, Paul Jackson <[EMAIL PROTECTED]> wrote: > > > Hi there, > > > > I've come from a java/ e

[Nant-users] Recursive copy task

2005-01-31 Thread Jain, Manish (GE Consumer Finance, Contractor)
I would like to create a recursive copy task which would exclude *.cs and *.vbs file types, It should also copy all subfolders I'm trying something like following which doesn't work,

[Nant-users] Help with XMLPoke

2005-01-31 Thread Kevin Kirkpatrick
I’m trying to poke this Xpath query and I’m getting an error saying: prefix ‘xsi’ not defined. Has anyone had trouble with this?   //*[namespace::*]/@xsi:noNamespaceSchemaLocation   - BUILD FAILED   D:\PolicyServices\BuildFiles\PolicyServices.build(412,4): Failed to

RE: [Nant-users] Recursive copy task

2005-01-31 Thread Morris, Jason
I think you want I did not test this but just typed it on the fly. The "**" notation is the recursive notation you are looking for. Experiment with ** or **\* or **\*.* to see which one copies all the empty subfolders as wel