So it seems like I have a couple of major options when getting WCF service proxy code into a project in Visual Studio:
Use Visual Studio's built-in tooling for Service References
Use a simple svcutil command, something like
svcutil http://[my endpoint] /namespace:[my namespace] /noconfig
(since I use some fairly standard bindings across projects), and drag the resulting file into my project (or upgrade in place).
To be clear, option 2 feels like the best one, albiet with no built-in tooling for updating. But the Service Reference dialog generates like a zillion files. Is there any obscure benefit to VS Service References that I'm missing?
Add Service Reference
dialog .... – Blue