[Nant-users] vssget failed "access denied"
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 need to select the explicit version cited in the changeset.txt file before doing a CM build. <> Thanks, Dave user="drisler" password="" localpath="C:\0_drisler_test" removedeleted="true" replace="true" writable="true" dbpath="\\icivss\DevSourceControl\srcsafe.ini" path="${filename}" version="${version}" /> vssget_perltext.build Description: vssget_perltext.build
RE: [Nant-users] vssget failed "access denied"
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.Task assembly .. you don't need to add the other two. HTH, Felice -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Risler, DaveSent: Monday, January 31, 2005 2:14 PMTo: nant-users@lists.sourceforge.netSubject: [Nant-users] 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 need to select the explicit version cited in the changeset.txt file before doing a CM build. <> Thanks, Dave user="drisler" password="" localpath="C:\0_drisler_test" removedeleted="true" replace="true" writable="true" dbpath="\\icivss\DevSourceControl\srcsafe.ini" path="${filename}" version="${version}" />
RE: [Nant-users] vssget failed "access denied"
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 tried to execute nant scripts by windows services (like CruiseControl.NET) because the account the service was executing as did not have access to the share on the remote machine. On the other hand, judging from your attached build file, I’d say it looks like you’re trying to do something very similar to what CruiseControl.NET does already. I’d suggest you look at it if you haven’t already. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Risler, Dave Sent: Monday, January 31, 2005 12:14 PM To: nant-users@lists.sourceforge.net Subject: [Nant-users] 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 need to select the explicit version cited in the changeset.txt file before doing a CM build. <> Thanks, Dave user="drisler" password="" localpath="C:\0_drisler_test" removedeleted="true" replace="true" writable="true" dbpath="\\icivss\DevSourceControl\srcsafe.ini" path="${filename}" version="${version}" />
[Nant-users] is there an add-in to run nant from within vs.net?
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?
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/ 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) > > --- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl ___ Nant-users mailing list Nant-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users
[Nant-users] Recursive copy task
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, Any help would be appreciated, Thanks-Manish --- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl ___ Nant-users mailing list Nant-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users
[Nant-users] Help with XMLPoke
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 select nodes with XPath _expression_ '//*[namespace::*][Command]/@xsi:noNamespaceSchemaLocation'. Prefix 'xsi' is not defined. Total time: 21.7 seconds. -- Sample input .xml xml version="1.0" encoding="utf-8" ?> -..
RE: [Nant-users] Recursive copy task
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 well. >-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED] On Behalf Of >Jain, Manish (GE Consumer Finance, Contractor) >Sent: Monday, January 31, 2005 7:19 PM >To: nant-users@lists.sourceforge.net >Subject: [Nant-users] Recursive copy task > >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, > >failonerror="true"> > > > > > > >Any help would be appreciated, Thanks-Manish > > > >--- >This SF.Net email is sponsored by: IntelliVIEW -- Interactive >Reporting Tool for open source databases. Create drag-&-drop >reports. Save time by over 75%! Publish reports on the web. >Export to DOC, XLS, RTF, etc. >Download a FREE copy at http://www.intelliview.com/go/osdn_nl >___ >Nant-users mailing list >Nant-users@lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nant-users > --- This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting Tool for open source databases. Create drag-&-drop reports. Save time by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc. Download a FREE copy at http://www.intelliview.com/go/osdn_nl ___ Nant-users mailing list Nant-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nant-users