mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
21 lines
497 B
C#
21 lines
497 B
C#
if (args.Length > 0 && File.Exists(args[0]))
|
|
{
|
|
var fileInfo = new FileInfo(args[0]);
|
|
if (fileInfo.Extension is ".eop" or ".zip")
|
|
File.Copy(fileInfo.FullName, Path.Join(AppDomain.CurrentDomain.BaseDirectory, "plugins", fileInfo.Name));
|
|
}
|
|
|
|
try
|
|
{
|
|
WebApplicationBuilder builder = WebApplication.CreateSlimBuilder(args);
|
|
|
|
var app = builder.Build();
|
|
|
|
SettingsManager.Load();
|
|
|
|
await app.RunAsync();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
LoggingUtils.LogError(ex, "");
|
|
} |