mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-05 08:30:18 +00:00
* Initial .NET 8 * Make it compile in release mode ignoring warnings for now * First round of improvements * Second round of improvements * Third round of improvements * Use new throws * Fix .NET Framework, YAY, thanks madness! Madness devs are awesome * Misc * Misc * AF_NETLINK might be required for some http calls No clue why * Fix service files Doesn't do what it should * Update CardsFarmer.cs * New improvements * Address feedback * Misc * Misc * Misc refactor * Misc
27 lines
863 B
XML
27 lines
863 B
XML
<linker>
|
|
<!-- 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 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>
|