Reputation: 707
EDIT:
I have an existig solution in visual studio (which is on TFS source control). In this solution, I have several projects too (under source control).
Now, I would like to add a project (for test purpose) to my solution, but I would like this project only on my local computer and not commit it on the source control, because all other team members doesn't need it!
I can obviously, remove the project of source control, but while it is in the solution, all others team members will be able to see the project even if they'll not be able to load it !
Anyway to avoid .sln to add the local project ? Is it possible to do this ?
Thanks.
Upvotes: 1
Views: 569
Reputation: 21337
You can't add the test project to the solution without adding it to the source control. The simple reason is that the project has to be declared in the SLN file which is on source control.
So you'll have to create another solution and add existing projects and the new one.
Upvotes: 1
Reputation: 10090
Yes ofcourse. Easiest way would be to create your own local solution file with the test project and the other projects that you need.
Upvotes: 1