Repro projects for issue with package reference and native deps/targets
ProxyDLL -> reference a nuget with native dependencies, create a package.
Consumer -> consumes the proxyDLL. Will build but fail at runtime, as transitive native dependencies will be missing.
Steps to reproduce :
- Build ProxyDLL in release mode to generate the nuget package.
- Build the consumer to retrieve the package.
- Try to run Consumer. if will fail with a FileNotFoundException (on a native dependency)
- If you add a reference to CefSharp.OffScreen in Consumer, it should run.