Reputation: 3177
I am using NuGet AvalonDock package from https://www.nuget.org/packages/AvalonDock/ however, after the installation, my project's output directory contains about hundred of various documentation/localization files and dlls from AvalonDock that I don't require in my project, which really does make things a bit messy.
I only need two dlls.
I am wondering if there is a way to specify of what to include/exclude from the downloadable package, instead of manually deleting those files on each product release?
Thank you
Upvotes: 1
Views: 296
Reputation: 32694
I don't know of a way to do it built into the system. But make it part of your build script to remove the unneeded files. Then it won't be manual.
Upvotes: 1