Addet aspire support pos.web and also addet the pictures for layout

This commit is contained in:
Alex Pedersen
2026-07-30 13:22:33 +02:00
parent 9497afe262
commit 2e537337f5
19 changed files with 34 additions and 5 deletions

View File

@@ -1,5 +1,11 @@
var builder = DistributedApplication.CreateBuilder(args);
builder.AddProject<Projects.Database>("database");
var epsonPrinter =
builder.AddProject<Projects.EpsonPrinter>("epsonprinter");
builder
.AddProject<Projects.Pos_Web>("pos-web")
.WithReference(epsonPrinter)
.WaitFor(epsonPrinter);
builder.Build().Run();