Source Control VS2005
-
I am using VS2005 for VC++ application, and my solution contains many projects. I added project to source control using VS2005 "Add projects to source control" menu. It added all *.h & cpp files. But some other files having named "*.vcproj.vspscc" also got added to source control. Why? what is use of this file? Also what all files from VS2005 project & solution to be added to VSS? I mean which files excluded from Adding to VSS, for a smooth working of group of people in a solution/project Thanks Anil
-
I am using VS2005 for VC++ application, and my solution contains many projects. I added project to source control using VS2005 "Add projects to source control" menu. It added all *.h & cpp files. But some other files having named "*.vcproj.vspscc" also got added to source control. Why? what is use of this file? Also what all files from VS2005 project & solution to be added to VSS? I mean which files excluded from Adding to VSS, for a smooth working of group of people in a solution/project Thanks Anil
For Visual Studio 2005, you need to add these files to the source control (and of course, all your .cpp and .h files): - .sln file: contains the information about the different projects that are in the solution. So, if someone adds or remove a project from the solution, it should be 'saved' for others also. - .vcproj files: contains all the settings for each projects (you will have one vcproj file for each project). This contain for example the files that are in your project (so if someone adds a new file, it should be reflected), contains also the project properties (all the option that you can configure by clicking 'Project' -> 'Properties'). All the other files are not needed and will be automatically recreated.
Cédric Moonen Software developer
Charting control [v1.2] -
For Visual Studio 2005, you need to add these files to the source control (and of course, all your .cpp and .h files): - .sln file: contains the information about the different projects that are in the solution. So, if someone adds or remove a project from the solution, it should be 'saved' for others also. - .vcproj files: contains all the settings for each projects (you will have one vcproj file for each project). This contain for example the files that are in your project (so if someone adds a new file, it should be reflected), contains also the project properties (all the option that you can configure by clicking 'Project' -> 'Properties'). All the other files are not needed and will be automatically recreated.
Cédric Moonen Software developer
Charting control [v1.2]Thanks very much:)