8 lines
204 B
C#
8 lines
204 B
C#
using System.Runtime.Loader;
|
|
|
|
namespace Nerfed.Editor.Project;
|
|
|
|
internal class EditorAssemblyLoadContext : AssemblyLoadContext
|
|
{
|
|
public EditorAssemblyLoadContext() : base(isCollectible: true) { }
|
|
} |