Hi all,
I have a collection of WCF web services that share a common DTO model.
The problem is that when I add service references in Visual Studio 2010, the proxy generated for each of the web services has its own namespace (internal to the solution), meaning that I essentially have duplicate DTO's on each of the service references.
Is there a clean way to get over this and to share the dto, short of creating a facade over the whole group of services?
Cheers.