detect/WebViewControl.Avalonia/AssemblyLoader.NETCore.cs

11 lines
256 B
C#
Raw Normal View History

2024-11-13 17:09:15 +08:00
using System.Reflection;
using System.Runtime.Loader;
namespace WebViewControl {
internal static class AssemblyLoader {
internal static Assembly LoadAssembly(string path) => AssemblyLoadContext.Default.LoadFromAssemblyPath(path);
}
}