mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 07:04:27 +00:00
Support nested plugins
This commit is contained in:
parent
bda4f2c822
commit
4420ad3d62
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue