I have a solution with two projects, project A and project B. Project A is the startup project and references project B. Project B has a few NuGet packages including EMGU.CV and MaterialDesignThemes. EMGU.CV copies it's dll to project A's output directory, but MaterialDesignThemes does not. I either have to manually copy the dll over, or add the NuGet package to project A. Is there a way to make all NuGet packages copy themselves over to the startup project's output directory?
Not sure if this is relevant, but my NuGet package management is with PackageReference, not nuget.config. And I'm using VS 2019.