Implements outbox pattern for reliable message delivery Adds email verification flow with Postmark integration Enhances account registration with secure token generation Introduces background processing for asynchronous email sending Implements database-level notification mechanism for message processing
22 lines
550 B
XML
22 lines
550 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="App.ts" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Core\PlanTempus.Core.csproj" />
|
|
<ProjectReference Include="..\Database\PlanTempus.Database.csproj" />
|
|
<ProjectReference Include="..\PlanTempus.Components\PlanTempus.Components.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Views\Components\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|