Skip to content

Instantly share code, notes, and snippets.

protected override void MapType(TypeDefinition type)
{
base.MapType(type);
MapDerivedTypes(type);
MapInterfaceImplementors(type);
}
void MapDerivedTypes(TypeDefinition type)
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Mono.Cecil;
using Mono.Linker;
using Mono.Linker.Steps;
using Unity.Cecil.Awesome;