You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nuget - When CefSharpTargetDir set copy CefSharp.dll to subfolder
When CefSharpTargetDir is specified for x86/x64 platforms the files are included in a sub directory,
the CefSharp.dll file required by the BrowserSubProcess isn't copied by default and won't start, so we include an extra
Copy file name to clipboardExpand all lines: NuGet/CefSharp.Common.targets
+36-3Lines changed: 36 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
<ErrorText="CefSharp requires .Net 4.5.2 or higher" />
5
5
</Target>
6
6
7
+
<!-- MSBuild is finding the dll within the package and copying it which is a problem for AnyCPU -->
7
8
<TargetName="CefSharpDeleteCoreRuntimeAfterBuild"AfterTargets="AfterBuild"Condition="'$(PlatformTarget)' == 'AnyCPU' AND $(TargetFramework.StartsWith('net4'))">
0 commit comments