mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-10 05:34:25 +00:00
40 lines
1.2 KiB
XML
40 lines
1.2 KiB
XML
<linker>
|
|
<!-- This is needed for ASF API controllers that use HttpContext -->
|
|
<assembly fullname="Microsoft.AspNetCore.Mvc.Core">
|
|
<type fullname="Microsoft.AspNetCore.Mvc.ControllerBase">
|
|
<property name="ControllerContext" />
|
|
</type>
|
|
</assembly>
|
|
|
|
<!-- This is needed for ASF (JSON deserialization) -->
|
|
<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 official plugins -->
|
|
<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>
|
|
|
|
<assembly fullname="System.Threading">
|
|
<type fullname="System.Threading.SemaphoreSlim">
|
|
<property name="CurrentCount" />
|
|
</type>
|
|
</assembly>
|
|
</linker>
|