I am compiling a solution using Visual Studio 2019. This solution has two projects, we can call them Common and Program. Program depends on Common and Common depends on the NuGet packages LibVLCSharp
, LibVLCSharp.WPF
and VideoLAN.LibVLC.Windows
.
If I clean and then build Program, everything is fine: the dlls are correctly copied in bin/Debug
or bin/Release
. But if I make any change to Program and compile it without cleaning it, the dlls relative to VLC disappear.
What can be the reason for the dlls to disappear? In the visual studio UI I do not see the commands it is running when I compile the project. How can I debug it?