Hello I have a (silverlight) class library containing plain DTO classes.
For this example "Person".
I have a ASP.NET Webservice (.asmx) that returns a List of Person.
Now on the consuming side (silverlight) I want to generate a client stub for the webservice.
This works ok, however, it generates a NEW Person class for me..
I want to reuse my existing DTO person class.
I tried to use Advanced->reuse types in referenced assemblies but until now to no avail....
Can anybody help me with this ?