mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 07:13:58 -05:00
implement remote assembly loading
This commit is contained in:
@ -99,6 +99,8 @@ namespace SharedLibraryCore.Configuration
|
||||
[ConfigurationIgnore]
|
||||
public string Id { get; set; }
|
||||
[ConfigurationIgnore]
|
||||
public string SubscriptionId { get; set; }
|
||||
[ConfigurationIgnore]
|
||||
public MapConfiguration[] Maps { get; set; }
|
||||
[ConfigurationIgnore]
|
||||
public QuickMessageConfiguration[] QuickMessages { get; set; }
|
||||
|
11
SharedLibraryCore/Interfaces/IRemoteAssemblyHandler.cs
Normal file
11
SharedLibraryCore/Interfaces/IRemoteAssemblyHandler.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Reflection;
|
||||
|
||||
namespace SharedLibraryCore.Interfaces
|
||||
{
|
||||
public interface IRemoteAssemblyHandler
|
||||
{
|
||||
IEnumerable<Assembly> DecryptAssemblies(string[] encryptedAssemblies);
|
||||
IEnumerable<string> DecryptScripts(string[] encryptedScripts);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user