Visual Studio no es compatible con el proyecto de control de código fuente
Frecuentes
Visto 4,126 veces
4
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 Respuestas
7
C:\Users\YourName\AppData\Local\Microsoft\Team Foundation\4.0\Cache\VersionControl.config
was corrupted. Deleted it all works now.
contestado el 16 de mayo de 13 a las 10:05
Worked for me too. I'd already tried uninstalling / re-installing VS. Thank you! - andy panadero
2
Esto significa que:
- The project is under Source Control
- If you make any changes, VS will not propogate them to the Source Control
- If you need to commit changes to the Source Control, you need to do it in your own way.
Pero, 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.
Respondido 24 ago 12, 09:08
2
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... error "el tipo de proyecto no es compatible con esta instalación"
asp.net mvc 1.0 "project type is not supported" on Visual Studio 2008
contestado el 23 de mayo de 17 a las 13:05
0
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: Control de versiones de código fuente para Visual Studio Express
contestado el 23 de mayo de 17 a las 12:05
0
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: Conecte Visual Studio 2010 Professional a TFS
contestado el 23 de mayo de 17 a las 11:05
0
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.
Respondido 24 ago 12, 09:08
No es la respuesta que estás buscando? Examinar otras preguntas etiquetadas visual-studio-2010 version-control or haz tu propia pregunta.
Thanks for all.. Guys here is what i did , I copied Microsoft.Version.Number.Targets file to " C:\Program Files (x86)\MSBuild\Microsoft\AssemblyInfoTask " this folder and it started working. I dont no what happen but it's working. - Vinod
What's happening is you are only changinga copy of the code. If you want to push the changes back into whatever source control it's in you have 'erm issues. - Tony Hopkinson