wip new display module

This commit is contained in:
Vinzenz Schroeter 2024-04-12 14:29:26 +02:00
parent 7e767d6dcb
commit 38463ac109
14 changed files with 321 additions and 1 deletions

View file

@ -1,5 +1,5 @@
using System.IO;
using System.Xml;
using DisplayCommands;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
@ -115,6 +115,7 @@ public static class Program
builder.Configuration.GetSection("Tanks"));
builder.Services.Configure<PlayersConfiguration>(
builder.Configuration.GetSection("Players"));
builder.Services.AddDisplay(builder.Configuration.GetSection("ServicePointDisplay"));
var app = builder.Build();

View file

@ -42,4 +42,8 @@
<Content Include="../Makefile" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DisplayCommands\DisplayCommands.csproj" />
</ItemGroup>
</Project>