mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 23:31:13 -05:00
Add libraries for EntityFramework
Stats plugin work Allow plugins to dynamically add EF classes to the context
This commit is contained in:
@ -5,10 +5,10 @@ using System.Runtime.InteropServices;
|
||||
using SharedLibrary;
|
||||
using System.Threading.Tasks;
|
||||
using System.IO;
|
||||
using SharedLibrary.Objects;
|
||||
|
||||
#if DEBUG
|
||||
using SharedLibrary.Database;
|
||||
using SharedLibrary.Objects;
|
||||
#endif
|
||||
|
||||
namespace IW4MAdmin
|
||||
@ -73,7 +73,15 @@ namespace IW4MAdmin
|
||||
return;
|
||||
}
|
||||
|
||||
ServerManager.Start();
|
||||
try
|
||||
{
|
||||
ServerManager.Start();
|
||||
}
|
||||
|
||||
catch (Exception e)
|
||||
{
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
||||
static ConsoleEventDelegate handler;
|
||||
|
Reference in New Issue
Block a user