1
0
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:
RaidMax
2019-02-16 17:18:50 -06:00
parent feb38656e8
commit 7433390b5a
130 changed files with 99 additions and 49 deletions

View File

@ -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)
{