CefSharp v132.3.11 native binaries for chromiumembeddedframework.runtime.win-x** get copied over to bin folder #5056
Replies: 1 comment
-
The above solution had worked except that it added a reference to the chromiumembeddedframework.runtime.win-x86 binary for all the projects in the solution which makes sense as we have used an Include attribute. So we decided to make the necessary changes to ensure that the CefSharp dependency chromiumembeddedframework.runtime.win-x86 will not be copying over the native files (CefSharp.dll, chrome_100_percent.pak, chrome_200_percent.pak, chrome_elf.dll, d3dcompiler_47.dll, icudtl.dat, libcef.dll, libEGL.dll, libGLESv2.dll, resources.pak, snapshot_blob.bin, v8_context_snapshot.bin, vk_swiftshader_icd.json, vk_swiftshader.dll, vulkan-1.dll) in the bin folder for the project and also it should not add the dependency reference to all the projects where they are not needed. We tried:
But this did not work. We were not considering this as the best option as, had it worked, we would have had to modify the csproj files for all the projects that reference CefSharp. But since it did not work, we are not sure on what way to proceed. Can anyone guide us with a possible solution? |
Beta Was this translation helpful? Give feedback.
-
Thank you so much for your help. I was finally able to resolve the issue following the link you suggested and the following changes from your suggestion.
Originally posted by @koder4076 in #4785 (reply in thread)
Beta Was this translation helpful? Give feedback.
All reactions