Refactored plugin loading. Added project settings for packing

This commit is contained in:
2025-05-13 20:52:26 +02:00
parent d33e7bf295
commit 49f0a7c55e
8 changed files with 97 additions and 22 deletions

View File

@@ -1,6 +1,7 @@
using System.Text.Json;
using Moonlight.ApiServer;
using Moonlight.ApiServer.Models;
using MoonlightServers.ApiServer.Startup;
// Development Server Startup
@@ -28,8 +29,6 @@ pluginManifest.Assemblies.Clear();
#endregion
await startup.Run(
args,
[typeof(Program).Assembly],
[pluginManifest]
);
await startup.Run(args, [
new PluginStartup()
]);