My asp.net site is consuming its own XML documentation files to generate help pages. This is all working fine and I'm generating links between pages based on <see> and <seealso>, as well as the parameter types for methods. All the links work fine provided the linked to types also have XML files in my bin folder (that's the only location I'm searching).
For .NET framework types, there are XML files available, in %ProgramFiles(x86)%\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.5. But these are only present on developer/build machines - they won't (so far as I'm aware) be present on the web server where this project ends up being hosted.
It would be convenient if the XML documentation files (for the framework assemblies that I reference) could be copied into the bin directory as part of our build process. Is there any neat way to do this? I could do a bulk copy of all of the XML files, but there are a lot of framework assemblies that we don't reference, and I don't want to bulk up the deployment by too much.