1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

fix issue with plugin registration

This commit is contained in:
RaidMax
2022-02-07 22:02:50 -06:00
parent 53f3ecc463
commit 8989b5b987
5 changed files with 26 additions and 12 deletions

View File

@ -18,6 +18,6 @@ namespace SharedLibraryCore.Interfaces
/// discovers the script plugins
/// </summary>
/// <returns>initialized script plugin collection</returns>
IEnumerable<IPlugin> DiscoverScriptPlugins(IServiceProvider serviceProvider);
IEnumerable<Func<IServiceProvider, IPlugin>> DiscoverScriptPlugins();
}
}