If the classes that I want to reuse are in another assembly, I don't have a problem.

But if I want to add a service reference to an assembly that contains classes I would like the service reference to reuse, they don't get reused. I suspect it has something to do with how it works, as pointed out here:

The service reference code generator is unable to recognize the re-used types unless the referenced assembly that contains the re-used types is built and on the disk.

Obviously as the assembly I'm adding the reference to also contains the classes then it can't be compiled on the disk as-is for the code-generator. It's a sort of catch-22. But is there a simple way to achieve this without manually creating a service reference or using a satellite assembly for my models?

link|improve this question

69% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I solved it! Sometimes after a while of thinking, writing it out on here makes you think differently somehow... anyway, my solution at the moment is to generate the service reference in another assembly and just copy it across and update the namespace. Simple!

link|improve this answer
1  
Sometimes even a c2.com/cgi/wiki?CardboardProgrammer can help. :-) – Jeffrey Hantin Jan 7 '11 at 1:26
Definately!! I think I'm going to go into business making them. – joshcomley Jan 7 '11 at 1:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.