Click here to Skip to main content
15,890,438 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Respected professionals

Is it possible in vsts that multiple users can work on a single page (aspx or .cs file). As i remember it is not possible in vsts that after checking out by one user another user cannot work on that page until the user check in.


Regards
Posted

Yes you can Have multiple users working on same file.
You can Merge changes by opting for modification incase any user has checked in.
Incase the page is locked,another user cannot edit the same file.
 
Share this answer
 
Comments
TanzeelurRehman 10-Jan-13 4:40am    
Mammoth thanks for your quick reply.
Yes that is possible and as mentioned by Shona22, you have to merge the changes.
 
Share this answer
 
Hi User/Guest,

In Visual Studio with tfs you & your team can work on same file by splitting file by adding 'Partial' Keyword in the class and make multiple file for the one cs file and multiple team member work on multiple method at a time in different.so you can use partial class in Dot Net Feature and Utilize your Team Resource.

Example of Partial Class in C# :-

public partial class Employee
{
public void DoWork()
{
}
}

//this bit in another file
public partial class Employee
{
public void GoToLunch()
{
}
}

In that like you can Divide your Method in multiple file with multiple FileName and Work on the Each file by Separate Team Member.

---------------------------------------------
Regards,
Rahul Kumar,
Rahulinbscit@yahoo.co.in
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900