Replies: 1 comment 4 replies
-
I am aware the example needs updating.
I'm not aware of any reference direct or indirect outside of the WPF example. You haven't specified which package or version you are testing with. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
From my custom app DependencyChecker
MetadataLoadContext.LoadFromAssemblyName()
"Could not find assembly 'System.Runtime.InteropServices.WindowsRuntime" (only 1 error, referenced from CefSharp.Core.Runtime)
System.Runtime.InteropServices.WindowsRuntime is removed in .NET 5.
https://blogs.windows.com/windowsdeveloper/2020/10/13/c-winrt-version-0-8-and-the-net5-rc2-release/
We no longer project the System.Runtime.InteropServices.WindowsRuntime namespace, as it has been removed from .NET5.
I only found
using System.Runtime.InteropServices.WindowsRuntime
; in WPF example, so some other indirect reference.Also when i ported to .NET 5 my app i changed similar code (touch support) in my app to that:
Beta Was this translation helpful? Give feedback.
All reactions