0

When I open a project in Visual Studio I get the following dialog box message:

The Open from Source Control operation is still in progress but you can start working now. The rest of the projects will be retrieved asynchinously.

Then it gets the latest from soruce safe, overwriting what ever I had. How do I stop VS2010 / source safe from doing this

Nick
  • 3,217
  • 5
  • 30
  • 42

3 Answers3

1

It's probably that you enabled "Get everything when a solution or project is opened" at Visual Studio Tools->Options->Source Control->Evironment. If so, uncheck it and then try again.

Rachel
  • 1,372
  • 1
  • 8
  • 11
  • I have noticed this answer else were on the web but it didn't fix this issue. Thanks though – Nick Aug 29 '13 at 14:14
0

I stoped visual from doing this by deleting *.vssscc and mssccprj.scc

Nick
  • 3,217
  • 5
  • 30
  • 42
0

I faced the same issue today and when nothing else worked I simply removed source control related lines from solution file of my project. In my case it was a section in .sln file starting with line

GlobalSection(SourceCodeControl) = preSolution

Note: once you do this you have to manually connect with your relevant versioning system.

TechnicalSmile
  • 1,387
  • 5
  • 16
  • 30