Questions tagged [visual-sourcesafe]

Old source code control solution from Microsoft. Superseded by Microsoft Team Foundation Server.

Microsoft Visual Source Safe was the Microsoft solution to source control, up to 2005. Its main asset is a good integration with Visual Studio. As of 2011, you should not consider this as your source control solution, except for supporting a legacy setup.

Largely superseded by Microsoft Team Foundation Server.


Some references about Sourcesafe:

MSDN Reference : http://msdn.microsoft.com/en-us/library/ms181038%28v=vs.80%29.aspx Microsoft Extended Support ends on 7/11/2017 : http://support.microsoft.com/lifecycle/search/default.aspx?alpha=Visual+SourceSafe

Caveat :

723 questions
0
votes
2 answers

visual studio: what is sourcesafe?

what is sourcesafe? i am trying to download it to see if it will work well with c# because someone told me to download it for a job, but i don't even understand what it is? is it built into the visual studio ide or what?
Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062
0
votes
1 answer

SourceSafe add files into specific project directories via command line

I have a list of files I want to add Take for example one is: project_dir/nextdir/moredir/test.txt I then want to add this into VSS, originally I tried ss Add "project_dir/nextdir/moredir/test.txt" The problem with this is this adds the…
0
votes
1 answer

Is git rebase wrong / right in this case (syncing git master with a SourceSafe Repository)

I am working on some git-VSS interop and the way I have approached syncing my git master with SS is git checkout vss_branch ss get . -W -R -Q -Y$SSNAME git checkout master git rebase vss_branch master And I am not sure about the last part, the way…
chrispepper1989
  • 2,100
  • 2
  • 23
  • 48
0
votes
1 answer

Adding pdb files to VSS

Every time I try to compile my web app, I am prompted if i want to add pdb extensioned files to VSS. I thought pdb files do not belong in VSS see a previous post. Is there any way to prevent them from being added. I cannot even logically delete them…
Chad
  • 23,658
  • 51
  • 191
  • 321
0
votes
1 answer

How to use project which is already in VSS?

I am trying to add my project under source control. I am using "Microsoft VSS 6.0" for it. My problem is, there is one project in VSS which I had copied on my system using 'Get Latest Version' to C:\latest_version directory. Then I copied that…
Shekhar
  • 11,438
  • 36
  • 130
  • 186
0
votes
1 answer

Visual studio source control (VSS) not allowing all functionality

I have a Visual Studio 2008 solution that is source controlled in Visual Source Safe 2008. On my laptop, if I right click on ony of the VS classes, I get 5 source control-related options (Check out for Edit, Get latest Version, Compare, Get, View…
Ryan Ward
  • 1,523
  • 4
  • 15
  • 23
0
votes
1 answer

Visual Sourcesafe can deploy files, not folders

We recently got new computers, and can no longer deploy project folders, only individual files. If we attempt to deploy a project folder, it displays a general error message, for example: Could not deploy $/.../index.html to ftp://... Anyone know…
scader
  • 405
  • 3
  • 8
  • 19
0
votes
0 answers

How to get projects from Visual SourceSafe using SourceSafe Interop?

My company is still using SourceSafe as source control. I'd like to create a C# app for tracking versions of projects on SourceSafe (plus some additional info). I've been searching the internet for tutorials on SourceSafe Interop, but couldn't find…
0
votes
2 answers

Both TFS and VSS on a Single Project

We are a small development team working mostly on Visual Studio. Until recently, I was working from Office and we were using VSS for version control. Now, as I had to move to my native place, I am hundreds of miles apart from my team and I am using…
0
votes
1 answer

SVN branching - how can I only keep branched files?

In our enterprise project we used to use VSS. Our project for 6 customers were single source, so we only needed to keep a "fullVersion" and "branched" directories for our version managements. In order to get the sources of customer1, we first get…
animgr
  • 71
  • 1
  • 6
0
votes
1 answer

Marshalling C# com items when using recursion

I am using the SourceSafe COM object (SourceSafeTypeLib) from C# to automate a SourceSafe recursive get (part of a larger build process). The recursive function is shown below. How do I ensure that all the COM objects created in the foreach loop…
Kevin
  • 3
  • 1
0
votes
1 answer

Get Latest Files from Visual Source Safe

I am new to source control. How can we get all the latest files of a solution. We are team of four and we change lot of files on a daily basis and push them into source control. Sometimes we have to work on the same file and when we get the latest…
decoder
  • 15
  • 5
0
votes
1 answer

Moving Project folder within solution in VSS

I have a solution in VSS with this structure (simplified): Solution1 |-Project1 |-Project2 |--Project2 |-Project3 You see the second Project2 folder? Somehow it got inside that wrapping project2 folder. How can I move painlessly all content of…
monstro
  • 6,254
  • 10
  • 65
  • 111
0
votes
1 answer

What are filesystem dot attributes or filesystem.attributes files?

I got a Java project from another developer and I found several files with these two names strewn around the source folder: vssver.scc filesystem.attributes I know the first one is from Visual SourceSafe but what about the second? Are these files…
ADTC
  • 8,999
  • 5
  • 68
  • 93
0
votes
1 answer

Visual SourceSafe 6: Resetting all working folders

I've got a few old sourcesafe repositories which I want to delete. Before deleting them, I want to get the latest version of all code out recursively and then archive this code. Various projects within the repositories have "working code" folders…
GHC
  • 2,658
  • 5
  • 30
  • 35