fc6fe7a78b
- New Apis/myai-models project: MyAiDbContext (schema myAi), TemplateEntity, ITemplateService, DbTemplateService with 10-min in-memory cache - Seeds EN+RO variants for all user-facing templates (match email, job search results email, HTML status pages, AI system prompt) - Match result email now sent in user's UI language (en/ro) - Job search results email now respects session language - Language propagates: MatchJobRequest -> token -> session -> email - Add Language column to JobSearchTokens and JobSearchSessions (default 'en') - All three Dockerfiles updated to include myai-models in build context Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Worker">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>CvSearchJob</RootNamespace>
|
|
<AssemblyName>cv-search-job</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.7" />
|
|
<PackageReference Include="Refit.HttpClientFactory" Version="10.1.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="logs\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Apis\cv-matcher-api-models\cv-matcher-api-models.csproj" />
|
|
<ProjectReference Include="..\..\Apis\cv-search-models\cv-search-models.csproj" />
|
|
<ProjectReference Include="..\..\Apis\shared-models\shared-models.csproj" />
|
|
<ProjectReference Include="..\..\Helpers\startup-helpers\startup-helpers.csproj" />
|
|
<ProjectReference Include="..\job-scheduler\job-scheduler.csproj" />
|
|
<ProjectReference Include="..\..\Apis\myai-models\myai-models.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|