inside
inside

Reputation: 3177

Get rid of all the unnecessary files that NuGet package has in it

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

Answers (1)

mason
mason

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

Related Questions