Table of Contents
Important

This SubSystem is obsolete!

AssemblyVerifier used to give the ability to pre-load an assembly and check if it's compatible with the game by calling Assembly.GetTypes(). This feature is obsolete and no longer supported.

string dependencyPath;
string assemblyPath;

using var verifier = new AssemblyVerifier("Test");
var loader = verifier.GetLoader(out var exception);

// The AssemblyVerifier will have every loaded assembly by the game within itself.
// You can load additional assemblies if needed.
loader.LoadFile(dependencyPath);

var isCompatible = loader.LoadFileAndTest(assemblyPath);

This page was last modified at 05/14/2024 20:48:29 +03:00 (UTC).

Commit Message
Author:    Alexey Chernyshov
Commit:    d76fb0604f29fb7028974b2ac3dd16ea20a8a450
Fixed a buch of refs in docs