I have a WCF service that returns some custom objects to a desktop client application. Both projects have the same ObjectLibrary.dll object, however, when the WCF server returns these objects, it returns
ClientApplication.ServerReference.ObjectType
instead
ObjectLibrary.ObjectType
Is there a way to force the WCF server to return an ObjectLibrary class class?
source
share