Skip to content

Getting started

Not a dotnet new template

No dotnet new short name. Clone/copy the repository or reference the RCL.

Prerequisites

  • .NET 10 SDK

Run the demo host

dotnet run --project samples/LogisticsDemo.BlazorServer

The demo runs at https://localhost:7120. Navigate to /logistics/admin/dashboard. With UseStubLogisticsApi=true (default), all data is in-memory seed data.

Embed in your own host

builder.Services.AddLogisticsServices(builder.Configuration);
app.MapRazorComponents<App>()
   .AddInteractiveServerRenderMode()
   .AddAdditionalAssemblies(typeof(ConnectSoft.Blazor.Mfe.Logistics.Pages.Admin.Dashboard).Assembly);

Test

dotnet test    # 12 MSTest stub-service tests

See also