• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

ANT and SourceSafe

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am a beginer in ANT, and I was wondering if anyone would be able to tell me how I could use ANT to get the latest version of code out of Visual SourceSafe (verion 6) before deployment?
Thank u for your help.
 
Ranch Hand
Posts: 208
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Check built-in task "Microsoft Visual SourceSafe Tasks" under Ant docs. you can easily proceed
Hari
 
Zsuzsa Pocsai
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you!
 
Zsuzsa Pocsai
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Harri,
Could you please give a helping hand with this.
I need to be able to connect to a network database and not a db on my local machine. And I just do not seem to be able to re-direct it. Any idea why that could be? Thank you
 
Zsuzsa Pocsai
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have put the following code in but it is looking for a db on my local machine.
<target name="source-control"
depends="init"
description="source control">
<vssget localPath="C:\VSS\PCFG\PCFG System\Current Version"
ssdir="C:\Program Files\Microsoft Visual Studio\Common\VSS\win32"
serverPath="C:\program\zsuzsa"
recursive="true"
login="zsuzsa,password"
vsspath="/PCFG/PCFG System/Current Version"
writable="false"/>
</target>
I am not sure which parameter would have to hold the pass and how for the database on another machine on the network. Any help would be very much apprechiated. Thank you
 
reply
    Bookmark Topic Watch Topic
  • New Topic