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¶
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);