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>
46 lines
2.1 KiB
XML
46 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Version>1.0.0-build.$([System.DateTime]::UtcNow.ToString("yyyyMMddHHmmss"))</Version>
|
|
<InformationalVersion>$(Version)</InformationalVersion>
|
|
<!-- Good defaults for reverse-proxy scenarios -->
|
|
<InvariantGlobalization>false</InvariantGlobalization>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<DisableStaticWebAssets>true</DisableStaticWebAssets>
|
|
<RootNamespace>Api</RootNamespace>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" Version="1.5.1" />
|
|
<PackageReference Include="Azure.Identity" Version="1.21.0" />
|
|
<PackageReference Include="DotNetEnv" Version="3.2.0" />
|
|
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
|
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
|
|
<PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1" />
|
|
<PackageReference Include="Serilog.Sinks.Email" Version="4.2.1" />
|
|
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.7" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="10.1.7" />
|
|
<PackageReference Include="Refit.HttpClientFactory" Version="10.1.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="logs\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\api-models\api-models.csproj" />
|
|
<ProjectReference Include="..\cv-matcher-api-models\cv-matcher-api-models.csproj" />
|
|
<ProjectReference Include="..\shared-models\shared-models.csproj" />
|
|
<ProjectReference Include="..\..\Helpers\startup-helpers\startup-helpers.csproj" />
|
|
<ProjectReference Include="..\myai-models\myai-models.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|