IL2002:描述符文件尝试在没有方法的类型上保留方法
XML 描述符文件正在尝试在没有方法的类型上保留方法。
描述符文件用于指示 IL 剪裁器始终保留程序集中的某些成员,不管剪裁器是否可以找到对这些成员的引用。 但是,尝试保留找不到的成员将触发警告。
<linker>
<assembly fullname="test">
<type fullname="TestType" preserve="methods" />
</assembly>
</linker>
// IL2002: Type 'TestType' has no methods to preserve
struct TestType
{
public int Number;
}