When using Fody/Costura in my solution, the resulting executable is much larger than the combined size of the assemblies that have Copy Local
option set to True
.
When I inspect the debug
and release
directories I see a bunch of XML files files that correspond to those assemblies that have their 'Generate XML documentation' option in the Build property set to true
. Some of those are pretty big. So my guess is that Fody/Costura somehow extracts and packages those as well, resulting in the larger file size. Is that assessment correct?
If so, is there a safe way to exclude those?