Skip to content

EnvVars Class

Doorstop environment variables, passed into the BepInEx preloader.

https://github.com/NeighTools/UnityDoorstop/wiki#environment-variables

C#
public static class EnvVars

Inheritance object

Path to the assembly that was invoked via Doorstop. Contains the same value as in “targetAssembly” configuration option in the config file.

C#
public static string DOORSTOP_INVOKE_DLL_PATH { get; }

Full path to the game’s “Managed” folder that contains all the game’s managed assemblies

C#
public static string DOORSTOP_MANAGED_FOLDER_DIR { get; }

Full path to the game executable currently running.

C#
public static string DOORSTOP_PROCESS_PATH { get; }

Array of paths where Mono searches DLLs from before assembly resolvers are invoked.

C#
public static string[] DOORSTOP_DLL_SEARCH_DIRS { get; }

Path of the DLL that contains mono imports.

C#
public static string DOORSTOP_MONO_LIB_PATH { get; }