Files
ArchiSteamFarm/ArchiSteamFarm/TrimmerRoots.xml
JustArchi 70ec5cb6d4 Make OS-specific packages work again
At least to the point of being able to self-update, that is
2022-11-16 16:07:29 +01:00

27 lines
885 B
XML

<linker>
<!-- This is actually needed for ASF (JSON deserialization), not plugins -->
<assembly fullname="System.Collections.Immutable">
<type fullname="System.Collections.Immutable.ImmutableDictionary" />
<type fullname="System.Collections.Immutable.ImmutableHashSet" />
<type fullname="System.Collections.Immutable.ImmutableList" />
</assembly>
<!-- This is needed for basic plugins usage, the attribute is trimmed otherwise -->
<assembly fullname="System.Composition.AttributedModel">
<type fullname="System.Composition.ExportAttribute" />
</assembly>
<!-- Entries below are needed for our STD plugin -->
<assembly fullname="System.Linq">
<type fullname="System.Linq.Enumerable">
<method name="MaxBy" />
</type>
</assembly>
<assembly fullname="System.Runtime">
<type fullname="System.Random">
<method name="Next" />
</type>
</assembly>
</linker>