views:

240

answers:

3

I am using SourceSafe Explorer v8.0. I imported an existing project from SourceSafe into VS 2008, worked on the project and checked it in a few times.

Now I need to import the same project into a different folder but the version of before I started working on it. I see a Get Latest" option. Where's the option to get a certain older version?

+2  A: 

Don't do it from Visual Studio. Login into VSS with the VSS tool. Select the project in VSS - right ckick on the project and pick "Show History" - in the dialoge that pops up select the version you want and then click "Get".

Jim Evans
A: 

Right-click on the folder; show history. Pick a point in time and "Get"

Marc Gravell
+1  A: 

Using the gui like already suggested is indeed the easiest way, but just for completeness (and in case you would need to autmate it):

You can also use the commandline to do this using the -V option:

> set SSDIR=\\[source safe database path]  
> set SSUSER=[source safe user]  
> set SSPWD=[source safe user password]  
> ss GET $/[path project] -R -Vd[date]
fretje