Visual Studio does not support source control proj

2020-03-04 06:51发布

I am trying to open a project in VS 2010, but i am getting an error while opening it. Can any one tell what this error means?

The Project is under Source Control. This Version of Visual studio .net does not support source controled project .Any Changes make to this project will not propagate to source code

6条回答
Rolldiameter
2楼-- · 2020-03-04 07:22

This means that the solution you opened is under version control, like Team Foundation Server (TFS). To work with the versioning features you need a special version of visual studio.

As it seems (assumption based on the error message) you can use the source from the project, you can build and start the programm, but you cannot commit any changes you made to the versioning repository.

The wikipedia page about TFS explains pretty well what TFS is about: http://en.wikipedia.org/wiki/Team_Foundation_Server

If you working with the code for yourself, it shouldn't be a problem. If you work on a team project, using TFS as versioning system, you would have to upgrade to another VS version.

Maybe this stack overflow thread can help you a bit: Connect Visual Studio 2010 Professional to TFS

查看更多
家丑人穷心不美
3楼-- · 2020-03-04 07:28

You are using Visual Studio Express, which does not support add-ins, and therefore does not support source control add-ins.

There's a similar question over here: Source Versioning for Visual Studio Express

查看更多
干净又极端
4楼-- · 2020-03-04 07:34

C:\Users\YourName\AppData\Local\Microsoft\Team Foundation\4.0\Cache\VersionControl.config

was corrupted. Deleted it all works now.

查看更多
我只想做你的唯一
5楼-- · 2020-03-04 07:37

The solution to this problem is to locate your Visual Studio 2008 development environment executable at the Command Prompt (it’s at C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe by default) and type:

devenv /resetskippkgs

Possibly, this will help u, check this out... "the project type is not supported by this installation" error

asp.net mvc 1.0 "project type is not supported" on Visual Studio 2008

查看更多
beautiful°
6楼-- · 2020-03-04 07:44

I'm assuming it means you are using the express version, and in that you don't get integrated source control.

Need more info like confirming the above and knowing what sort of source control the project is in.

查看更多
beautiful°
7楼-- · 2020-03-04 07:45

This means that:

  1. The project is under Source Control
  2. If you make any changes, VS will not propogate them to the Source Control
  3. If you need to commit changes to the Source Control, you need to do it in your own way.

But, if you want just run the project, or just see the code, or jsut do not want to collaborate with it, you should ignore this message.

查看更多
登录 后发表回答