53db2f63e3
- Add Server.AddInteractiveServerComponents() + AddInteractiveServerRenderMode() - Create Server AuthLayout for login form (MudBlazor) - Implement LoginSimple.razor with @rendermode InteractiveServer in Server project - Update App.razor: CascadingAuthenticationState + Router with AppAssembly=Server - Fix Client MudBlazor Providers in MainLayout + AuthLayout - Update Playwright tests: use dynamic selectors for MudTextField (auto-generated IDs) - Build: 0 errors, 0 warnings - API: /api/auth/login fully operational (200 OK confirmed) - Playwright E2E test: 1 passed Architecture: /login → Server InteractiveServer (MudBlazor form) / → Client WebAssembly (Dashboard) /api/* → Server Endpoints Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
42 lines
1.7 KiB
XML
42 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\QuantEngine.Infrastructure\QuantEngine.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\QuantEngine.Application\QuantEngine.Application.csproj" />
|
|
<ProjectReference Include="..\QuantEngine.Core\QuantEngine.Core.csproj" />
|
|
<ProjectReference Include="Client\QuantEngine.Web.Client.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.23" />
|
|
<PackageReference Include="Hangfire.Core" Version="1.8.23" />
|
|
<PackageReference Include="Hangfire.MemoryStorage" Version="1.8.1.2" />
|
|
<PackageReference Include="Hangfire.PostgreSql" Version="1.20.10" />
|
|
<PackageReference Include="MudBlazor" Version="8.6.0" />
|
|
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Exclude client project files from server build to avoid duplicate compilations -->
|
|
<!-- BUT preserve Client\wwwroot for static web assets -->
|
|
<Compile Remove="Client\**" />
|
|
<EmbeddedResource Remove="Client\**" />
|
|
<None Remove="Client\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Only remove non-wwwroot Client content -->
|
|
<Content Remove="Client\**" />
|
|
<Content Include="Client\wwwroot\**" CopyToPublishDirectory="Never" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|