Is it possible to use svcutil to reuse/exclude referenced types, as with visual studio.
I have multiple projects, my types/datamodels are stored in separate assembli
If you run svcutil
without arguments, you'll see it has several functions. I think you could do what you want with two invocations:
svcutil /serviceName:
. This outputs .wsdl and .xsd files.svcutil /reference: *.wsdl *.xsd
.I've tried doing this in one step before, but when svcutil is in "code generation" mode, it expects metadata as input, not assemblies. So generate metadata first!