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
For PackageReference library projects where buildTransitive is supported we'll default to setting CefSharpAnyCpuSupport to true
131
+
This should only require WinExe and Exe projects to specify CefSharpAnyCpuSupport rather than every project in a solution.
132
+
Only for PackageReference projects where NuGetToolVersion > 5.0 and OutputType is library.
133
+
Defaulting CefSharpAnyCpuSupport to true is simpler than modifying the already complex Condition for the CefSharpPlatformCheck
134
+
target below.
135
+
https://github.com/cefsharp/CefSharp/issues/3622
136
+
-->
137
+
<CefSharpAnyCpuSupportCondition="'$(CefSharpAnyCpuSupport)' != 'true' AND '$(NuGetProjectStyle)' == 'PackageReference' AND $(NuGetToolVersion) > '5.0' AND '$(OutputType)' == 'Library'">true</CefSharpAnyCpuSupport>
0 commit comments