mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
add web project for stats to fix bug with pre compiled razor templates
This commit is contained in:
@ -12,6 +12,7 @@ namespace SharedLibraryCore.Plugins
|
||||
public static List<Command> ActiveCommands = new List<Command>();
|
||||
public static List<IPlugin> ActivePlugins = new List<IPlugin>();
|
||||
public static List<Assembly> PluginAssemblies = new List<Assembly>();
|
||||
public static List<Assembly> Assemblies = new List<Assembly>();
|
||||
|
||||
public static bool Load(IManager Manager)
|
||||
{
|
||||
@ -58,6 +59,7 @@ namespace SharedLibraryCore.Plugins
|
||||
{
|
||||
if (Plugin != null)
|
||||
{
|
||||
Assemblies.Add(Plugin);
|
||||
Type[] types = Plugin.GetTypes();
|
||||
foreach (Type assemblyType in types)
|
||||
{
|
||||
|
Reference in New Issue
Block a user