IL2017: Could not find property on type

Cause

Could not find property on type.

Rule description

A property specified in an xml file for the trimmer file could not be found in the type matching the fullname argument that was passed to the parent of the property element.

Example

<!-- IL2017: Could not find property 'NonExistentProperty' on type 'MyType' -->
<linker>
  <assembly fullname="MyAssembly">
    <type fullname="MyType">
      <property name="NonExistentProperty" />
    </type>
  </assembly>
</linker>