[Draconet-users] Problem using VSS and Visual Studio 2003

2004-07-16 Thread Steve Wright








I’m new to Draco.NET and after reviewing some of the
posts on the mailing list, I cannot find the answer to my problem.

I am using the latest build (1657) and the
detection of changes within VSS seems to work just as I expected.

However, I have noticed that the get command to VSS does
indeed download the changes from the repository, 

but places them in a temporary folder (from reading the
mailing list, this appears to be by design).

 

Since I am using Visual Studio and not Nant, do I have to
provide a script to move the files to the target build directory specified
within Source Safe?

Or I am missing something?  The build using Visual
Studio does get triggered afterwards but always builds the same thing!

 

Thanks for any help,

Steve Wright








RE: [Draconet-users] Vault and Draconet?

2004-07-16 Thread Bryan D. Andrews
By the way a search on Draconet and webmap comes up with only one hit.
:(


-Original Message-
From: Bryan D. Andrews 
Sent: Friday, July 16, 2004 4:01 PM
To: [EMAIL PROTECTED]
Subject: RE: [Draconet-users] Vault and Draconet?

I got this fixed. Can you tell me how I should configure this Nant
solution task with Draco?

I fudged it to make it work (created a local copy of the webmap). Is
there a way to specify where the files are being pulled down to?

Nick I saw a post from you about a year or 2 ago on this topic.

Thanks for any ideas.

Here is my simple build file:




   

http://localhost/myProject/myProject.vbproj";
path="C:\proj\myProject.vbproj" />  
   
 










-Original Message-
From: Nick Robinson [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 16, 2004 12:35 PM
To: [EMAIL PROTECTED]
Subject: RE: [Draconet-users] Vault and Draconet?

You would need to modify the sourcecode to disable the deletion of the
files.  However, this is a simple step.  Take a look at
BuildRunner.BuildModule.  Towards the end, there is a piece of code that
looks like this:

try {
// Clean up our mess.
if (Directory.Exists(sourceDir)) {
Directory.Delete(sourceDir, true);
}
} catch {
// Do nothing.
}

Comment the two Directory referencing lines, and you should find your
temp
dirs remain intact after build completion.

I am curious, does your build have relative files or absolutes?  What is
the
error you get from Draco?

nick.robinson
site  : www.fromconcept.co.uk
blog  : www.fromconcept.co.uk/weblog.aspx
draco : www.sourceforge.net/projects/draconet

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Bryan
D.
> Andrews
> Sent: 16 July 2004 14:31
> To: [EMAIL PROTECTED]
> Subject: RE: [Draconet-users] Vault and Draconet?
>
>
> So I got this working as per James Guerts blog entry, but I am having
> problems with the build.
>
> I know that I have problems with the build with VS if I do not Get
> Latest and mark all Writable. And it actually looks like I am
> downloading with the files set to writable, but still have failures
with
> the build.
>
> If I run the nant file manually after pulling down the files through
the
> vault, it works great.
>
> Basically I am asking has anyone else had trouble when building with a
> NANT script that normally builds fine?
>
> Is there a way to keep the temp files from deleting so I can try to
run
> the nant script manually from that location?
>
> Thanks!
>
> -Original Message-
> From: Bryan D. Andrews
> Sent: Tuesday, July 13, 2004 7:23 AM
> To: [EMAIL PROTECTED]
> Subject: RE: [Draconet-users] Vault and Draconet?
>
> Yes we run Draco and Subversion successfully. Works great and out of
the
> box. Wish Vault and Draco did:
>
> I am working from James Guerts blog entry now:
>
> http://blogs.biasecurities.com/jim/archive/2004/05/10/501.aspx
>
> Hopefully this will work...
>
>
>
> -Original Message-
> From: David Reed [mailto:[EMAIL PROTECTED]
> Sent: Monday, July 12, 2004 11:32 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [Draconet-users] Vault and Draconet?
>
>
> > -Original Message-
> > From: Bryan D. Andrews
> > Sent: Monday, July 12, 2004 9:38 PM
> > To: [EMAIL PROTECTED]
> > Subject: [Draconet-users] Vault and Draconet?
> >
> > Anyone got this going? Any advice or suggestions?
>
> Yeah, Subversion and Draco.
>
> Actually, it'd be nice if you'd be the guinea pig, since we're going
to
> switch in the next couple weeks...  :)  At least until they hold the
> PVCS gun to my head and pull the trigger.
>
> Anybody out there using Subversion with Draco?  Successfully?  ;)
>
> [I installed the Vault thang a couple times, and it ate VS.NET 2k3,
more
> or less.  I like the special "feature" with Vault which won't let you
> run it side-by-side with VSS, not even to switch back and forth.  All
or
> nothing is great way to railroad prospective customers...]
>
>
> ---
> This SF.Net email sponsored by Black Hat Briefings & Training.
> Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital
> self defense, top technical experts, no vendor pitches, unmatched
> networking opportunities. Visit www.blackhat.com
> ___
> Draconet-users mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/draconet-users
>
>
>
>
> ---
> This SF.Net email sponsored by Black Hat Briefings & Training.
> Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
> digital self defense, top technical experts, no vendor pitc

RE: [Draconet-users] Vault and Draconet?

2004-07-16 Thread Bryan D. Andrews
I got this fixed. Can you tell me how I should configure this Nant
solution task with Draco?

I fudged it to make it work (created a local copy of the webmap). Is
there a way to specify where the files are being pulled down to?

Nick I saw a post from you about a year or 2 ago on this topic.

Thanks for any ideas.

Here is my simple build file:




   

http://localhost/myProject/myProject.vbproj";
path="C:\proj\myProject.vbproj" />  
   
 










-Original Message-
From: Nick Robinson [mailto:[EMAIL PROTECTED] 
Sent: Friday, July 16, 2004 12:35 PM
To: [EMAIL PROTECTED]
Subject: RE: [Draconet-users] Vault and Draconet?

You would need to modify the sourcecode to disable the deletion of the
files.  However, this is a simple step.  Take a look at
BuildRunner.BuildModule.  Towards the end, there is a piece of code that
looks like this:

try {
// Clean up our mess.
if (Directory.Exists(sourceDir)) {
Directory.Delete(sourceDir, true);
}
} catch {
// Do nothing.
}

Comment the two Directory referencing lines, and you should find your
temp
dirs remain intact after build completion.

I am curious, does your build have relative files or absolutes?  What is
the
error you get from Draco?

nick.robinson
site  : www.fromconcept.co.uk
blog  : www.fromconcept.co.uk/weblog.aspx
draco : www.sourceforge.net/projects/draconet

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Bryan
D.
> Andrews
> Sent: 16 July 2004 14:31
> To: [EMAIL PROTECTED]
> Subject: RE: [Draconet-users] Vault and Draconet?
>
>
> So I got this working as per James Guerts blog entry, but I am having
> problems with the build.
>
> I know that I have problems with the build with VS if I do not Get
> Latest and mark all Writable. And it actually looks like I am
> downloading with the files set to writable, but still have failures
with
> the build.
>
> If I run the nant file manually after pulling down the files through
the
> vault, it works great.
>
> Basically I am asking has anyone else had trouble when building with a
> NANT script that normally builds fine?
>
> Is there a way to keep the temp files from deleting so I can try to
run
> the nant script manually from that location?
>
> Thanks!
>
> -Original Message-
> From: Bryan D. Andrews
> Sent: Tuesday, July 13, 2004 7:23 AM
> To: [EMAIL PROTECTED]
> Subject: RE: [Draconet-users] Vault and Draconet?
>
> Yes we run Draco and Subversion successfully. Works great and out of
the
> box. Wish Vault and Draco did:
>
> I am working from James Guerts blog entry now:
>
> http://blogs.biasecurities.com/jim/archive/2004/05/10/501.aspx
>
> Hopefully this will work...
>
>
>
> -Original Message-
> From: David Reed [mailto:[EMAIL PROTECTED]
> Sent: Monday, July 12, 2004 11:32 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [Draconet-users] Vault and Draconet?
>
>
> > -Original Message-
> > From: Bryan D. Andrews
> > Sent: Monday, July 12, 2004 9:38 PM
> > To: [EMAIL PROTECTED]
> > Subject: [Draconet-users] Vault and Draconet?
> >
> > Anyone got this going? Any advice or suggestions?
>
> Yeah, Subversion and Draco.
>
> Actually, it'd be nice if you'd be the guinea pig, since we're going
to
> switch in the next couple weeks...  :)  At least until they hold the
> PVCS gun to my head and pull the trigger.
>
> Anybody out there using Subversion with Draco?  Successfully?  ;)
>
> [I installed the Vault thang a couple times, and it ate VS.NET 2k3,
more
> or less.  I like the special "feature" with Vault which won't let you
> run it side-by-side with VSS, not even to switch back and forth.  All
or
> nothing is great way to railroad prospective customers...]
>
>
> ---
> This SF.Net email sponsored by Black Hat Briefings & Training.
> Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital
> self defense, top technical experts, no vendor pitches, unmatched
> networking opportunities. Visit www.blackhat.com
> ___
> Draconet-users mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/draconet-users
>
>
>
>
> ---
> This SF.Net email sponsored by Black Hat Briefings & Training.
> Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
> digital self defense, top technical experts, no vendor pitches,
> unmatched networking opportunities. Visit www.blackhat.com
> ___
> Draconet-users mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/draconet-users
>
>
>
>

RE: [Draconet-users] Vault and Draconet?

2004-07-16 Thread Nick Robinson
You would need to modify the sourcecode to disable the deletion of the
files.  However, this is a simple step.  Take a look at
BuildRunner.BuildModule.  Towards the end, there is a piece of code that
looks like this:

try {
// Clean up our mess.
if (Directory.Exists(sourceDir)) {
Directory.Delete(sourceDir, true);
}
} catch {
// Do nothing.
}

Comment the two Directory referencing lines, and you should find your temp
dirs remain intact after build completion.

I am curious, does your build have relative files or absolutes?  What is the
error you get from Draco?

nick.robinson
site  : www.fromconcept.co.uk
blog  : www.fromconcept.co.uk/weblog.aspx
draco : www.sourceforge.net/projects/draconet

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Bryan D.
> Andrews
> Sent: 16 July 2004 14:31
> To: [EMAIL PROTECTED]
> Subject: RE: [Draconet-users] Vault and Draconet?
>
>
> So I got this working as per James Guerts blog entry, but I am having
> problems with the build.
>
> I know that I have problems with the build with VS if I do not Get
> Latest and mark all Writable. And it actually looks like I am
> downloading with the files set to writable, but still have failures with
> the build.
>
> If I run the nant file manually after pulling down the files through the
> vault, it works great.
>
> Basically I am asking has anyone else had trouble when building with a
> NANT script that normally builds fine?
>
> Is there a way to keep the temp files from deleting so I can try to run
> the nant script manually from that location?
>
> Thanks!
>
> -Original Message-
> From: Bryan D. Andrews
> Sent: Tuesday, July 13, 2004 7:23 AM
> To: [EMAIL PROTECTED]
> Subject: RE: [Draconet-users] Vault and Draconet?
>
> Yes we run Draco and Subversion successfully. Works great and out of the
> box. Wish Vault and Draco did:
>
> I am working from James Guerts blog entry now:
>
> http://blogs.biasecurities.com/jim/archive/2004/05/10/501.aspx
>
> Hopefully this will work...
>
>
>
> -Original Message-
> From: David Reed [mailto:[EMAIL PROTECTED]
> Sent: Monday, July 12, 2004 11:32 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [Draconet-users] Vault and Draconet?
>
>
> > -Original Message-
> > From: Bryan D. Andrews
> > Sent: Monday, July 12, 2004 9:38 PM
> > To: [EMAIL PROTECTED]
> > Subject: [Draconet-users] Vault and Draconet?
> >
> > Anyone got this going? Any advice or suggestions?
>
> Yeah, Subversion and Draco.
>
> Actually, it'd be nice if you'd be the guinea pig, since we're going to
> switch in the next couple weeks...  :)  At least until they hold the
> PVCS gun to my head and pull the trigger.
>
> Anybody out there using Subversion with Draco?  Successfully?  ;)
>
> [I installed the Vault thang a couple times, and it ate VS.NET 2k3, more
> or less.  I like the special "feature" with Vault which won't let you
> run it side-by-side with VSS, not even to switch back and forth.  All or
> nothing is great way to railroad prospective customers...]
>
>
> ---
> This SF.Net email sponsored by Black Hat Briefings & Training.
> Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital
> self defense, top technical experts, no vendor pitches, unmatched
> networking opportunities. Visit www.blackhat.com
> ___
> Draconet-users mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/draconet-users
>
>
>
>
> ---
> This SF.Net email sponsored by Black Hat Briefings & Training.
> Attend Black Hat Briefings & Training, Las Vegas July 24-29 -
> digital self defense, top technical experts, no vendor pitches,
> unmatched networking opportunities. Visit www.blackhat.com
> ___
> Draconet-users mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/draconet-users
>
>
>
>
> ---
> This SF.Net email is sponsored by BEA Weblogic Workshop
> FREE Java Enterprise J2EE developer tools!
> Get your free copy of BEA WebLogic Workshop 8.1 today.
> http://ads.osdn.com/?ad_idG21&alloc_id040&op=ick
> ___
> Draconet-users mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/draconet-users
>





---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
___
Draconet-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/list

RE: [Draconet-users] Vault and Draconet?

2004-07-16 Thread Bryan D. Andrews
So I got this working as per James Guerts blog entry, but I am having
problems with the build. 

I know that I have problems with the build with VS if I do not Get
Latest and mark all Writable. And it actually looks like I am
downloading with the files set to writable, but still have failures with
the build. 

If I run the nant file manually after pulling down the files through the
vault, it works great.

Basically I am asking has anyone else had trouble when building with a
NANT script that normally builds fine?

Is there a way to keep the temp files from deleting so I can try to run
the nant script manually from that location?

Thanks!

-Original Message-
From: Bryan D. Andrews 
Sent: Tuesday, July 13, 2004 7:23 AM
To: [EMAIL PROTECTED]
Subject: RE: [Draconet-users] Vault and Draconet?

Yes we run Draco and Subversion successfully. Works great and out of the
box. Wish Vault and Draco did:

I am working from James Guerts blog entry now:

http://blogs.biasecurities.com/jim/archive/2004/05/10/501.aspx

Hopefully this will work...



-Original Message-
From: David Reed [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 12, 2004 11:32 PM
To: [EMAIL PROTECTED]
Subject: RE: [Draconet-users] Vault and Draconet?


> -Original Message-
> From: Bryan D. Andrews
> Sent: Monday, July 12, 2004 9:38 PM
> To: [EMAIL PROTECTED]
> Subject: [Draconet-users] Vault and Draconet?
> 
> Anyone got this going? Any advice or suggestions?

Yeah, Subversion and Draco.

Actually, it'd be nice if you'd be the guinea pig, since we're going to
switch in the next couple weeks...  :)  At least until they hold the
PVCS gun to my head and pull the trigger.

Anybody out there using Subversion with Draco?  Successfully?  ;)

[I installed the Vault thang a couple times, and it ate VS.NET 2k3, more
or less.  I like the special "feature" with Vault which won't let you
run it side-by-side with VSS, not even to switch back and forth.  All or
nothing is great way to railroad prospective customers...]


---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital
self defense, top technical experts, no vendor pitches, unmatched
networking opportunities. Visit www.blackhat.com
___
Draconet-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/draconet-users




---
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
Draconet-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/draconet-users




---
This SF.Net email is sponsored by BEA Weblogic Workshop
FREE Java Enterprise J2EE developer tools!
Get your free copy of BEA WebLogic Workshop 8.1 today.
http://ads.osdn.com/?ad_idG21&alloc_id040&op=click
___
Draconet-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/draconet-users