Support nested plugins

This commit is contained in:
JustArchi 2019-01-12 00:05:56 +01:00
parent bda4f2c822
commit 4420ad3d62

View file

@ -99,7 +99,7 @@ namespace ArchiSteamFarm.Plugins {
HashSet<Assembly> assemblies = new HashSet<Assembly>();
try {
foreach (string assemblyPath in Directory.EnumerateFiles(pluginsPath, "*.dll")) {
foreach (string assemblyPath in Directory.EnumerateFiles(pluginsPath, "*.dll", SearchOption.AllDirectories)) {
Assembly assembly;
try {