Added DevExpress Dashboard to ASP.NET Core API and both Blazor WASM/Server frontends. Configured dashboard storage, sample data source, and API endpoint. Updated Blazor projects with dashboard packages, styles, and a new dashboard page. Navigation and configuration updated to support dashboard integration.
23 lines
863 B
XML
23 lines
863 B
XML
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DevExpress.Blazor" Version="25.2.3" />
|
|
<PackageReference Include="DevExpress.Blazor.Dashboard" Version="25.2.3" />
|
|
<PackageReference Include="DevExpress.Blazor.Themes" Version="25.2.3" />
|
|
<PackageReference Include="DevExpress.Blazor.Themes.Fluent" Version="25.2.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.22" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.22" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\sample-data\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|