We works, two developer on a wcf service project together. But we want to work different methods, seperately at the same time on a svc file and interface ?
How can we do it? Are partial classes help to us?
We works, two developer on a wcf service project together. But we want to work different methods, seperately at the same time on a svc file and interface ?
How can we do it? Are partial classes help to us?
You have lot of solution.
1.You can create development branch
, but for the end your must merge (Isolation risk is made for big parallel update
)
link : http://msdn.microsoft.com/en-us/library/ms181423(v=vs.110).aspx
Search before about best practise : Trunc X.Y.Z / Service Pack / Fix / Release
You can also set partial
modifier on your proxy class
generated by svcutil
(Reference.cs)
with this solution, interface must contain all methods
You can also work without theses solution, just create your full layer (With interface and empty methods), check in on tfs and get lastest on another machine, after that begin specific devs for everyone