For those who encounter read access issues like me, please use the attachment in this post for the dependencies.
However, there is some changes to the VS 2019 solution required.
Change for all the configuration (Release - Win32, Debug - Win32, Release - x64, Debug - x64)
1. Linker -> General -> Additional Library Directories
Change $(ProjectDir)..\deps\lib\$(Platform) to $(ProjectDir)..\deps\lib\$(Platform)\$(Configuration)
2. Build Events -> Post-Build Event -> Command Line
Change copy /y "$(ProjectDir)..\deps\lib\$(Platform)\*.dll" "$(ProjectDir)..\bin\$(Platform)\"
to copy /y "$(ProjectDir)..\deps\lib\$(Platform)\$(Configuration)\*.dll" "$(ProjectDir)..\bin\$(Platform)\$(Configuration)\"