Nerfed/Nerfed.Editor/Project/EditorAssemblyLoadContext.cs

8 lines
204 B
C#
Raw Normal View History

using System.Runtime.Loader;
namespace Nerfed.Editor.Project;
internal class EditorAssemblyLoadContext : AssemblyLoadContext
{
public EditorAssemblyLoadContext() : base(isCollectible: true) { }
}