35 lines
740 B
C#
35 lines
740 B
C#
using Moonlight.ApiServer.Runtime;
|
|
using Moonlight.ApiServer.Startup;
|
|
|
|
var pluginLoader = new PluginLoader();
|
|
pluginLoader.Initialize();
|
|
/*
|
|
await startup.Run(args, pluginLoader.Instances);
|
|
|
|
*/
|
|
|
|
var cs = new Startup();
|
|
|
|
await cs.Initialize(args, pluginLoader.Instances);
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
await cs.AddMoonlight(builder);
|
|
|
|
var app = builder.Build();
|
|
|
|
await cs.AddMoonlight(app);
|
|
|
|
// Handle setup of wasm app hosting in the runtime
|
|
// so the Moonlight.ApiServer doesn't need the wasm package
|
|
if (cs.Configuration.Frontend.EnableHosting)
|
|
{
|
|
if (app.Environment.IsDevelopment())
|
|
app.UseWebAssemblyDebugging();
|
|
|
|
app.UseBlazorFrameworkFiles();
|
|
app.UseStaticFiles();
|
|
}
|
|
|
|
|
|
await app.RunAsync(); |