Rename project to RealCV with new logo and font updates

- Rename all TrueCV references to RealCV across the codebase
- Add new transparent RealCV logo
- Switch from JetBrains Mono to Inter font for better number clarity
- Update solution, project files, and namespaces

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-21 15:07:20 +00:00
parent 28d7d41b25
commit 998e9a8ab8
134 changed files with 1182 additions and 702 deletions

View File

@@ -3,14 +3,14 @@ using FluentAssertions;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Moq;
using TrueCV.Application.Interfaces;
using TrueCV.Application.Models;
using TrueCV.Domain.Entities;
using TrueCV.Domain.Enums;
using TrueCV.Infrastructure.Data;
using TrueCV.Infrastructure.Jobs;
using RealCV.Application.Interfaces;
using RealCV.Application.Models;
using RealCV.Domain.Entities;
using RealCV.Domain.Enums;
using RealCV.Infrastructure.Data;
using RealCV.Infrastructure.Jobs;
namespace TrueCV.Tests.Jobs;
namespace RealCV.Tests.Jobs;
public sealed class ProcessCVCheckJobTests : IDisposable
{

View File

@@ -25,10 +25,10 @@
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\TrueCV.Infrastructure\TrueCV.Infrastructure.csproj" />
<ProjectReference Include="..\..\src\TrueCV.Application\TrueCV.Application.csproj" />
<ProjectReference Include="..\..\src\TrueCV.Domain\TrueCV.Domain.csproj" />
<ItemGroup>
<ProjectReference Include="..\..\src\RealCV.Infrastructure\RealCV.Infrastructure.csproj" />
<ProjectReference Include="..\..\src\RealCV.Application\RealCV.Application.csproj" />
<ProjectReference Include="..\..\src\RealCV.Domain\RealCV.Domain.csproj" />
</ItemGroup>
</Project>

View File

@@ -7,16 +7,16 @@ using Hangfire.States;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using Moq;
using TrueCV.Application.DTOs;
using TrueCV.Application.Interfaces;
using TrueCV.Application.Models;
using TrueCV.Domain.Entities;
using TrueCV.Domain.Enums;
using TrueCV.Infrastructure.Data;
using TrueCV.Infrastructure.Jobs;
using TrueCV.Infrastructure.Services;
using RealCV.Application.DTOs;
using RealCV.Application.Interfaces;
using RealCV.Application.Models;
using RealCV.Domain.Entities;
using RealCV.Domain.Enums;
using RealCV.Infrastructure.Data;
using RealCV.Infrastructure.Jobs;
using RealCV.Infrastructure.Services;
namespace TrueCV.Tests.Services;
namespace RealCV.Tests.Services;
public sealed class CVCheckServiceTests : IDisposable
{

View File

@@ -3,11 +3,11 @@ using FluentAssertions;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Moq;
using TrueCV.Application.Models;
using TrueCV.Infrastructure.Configuration;
using TrueCV.Infrastructure.Services;
using RealCV.Application.Models;
using RealCV.Infrastructure.Configuration;
using RealCV.Infrastructure.Services;
namespace TrueCV.Tests.Services;
namespace RealCV.Tests.Services;
public sealed class CVParserServiceTests : IDisposable
{

View File

@@ -9,15 +9,15 @@ using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Moq;
using Moq.Protected;
using TrueCV.Application.Interfaces;
using TrueCV.Application.Models;
using TrueCV.Domain.Entities;
using TrueCV.Infrastructure.Configuration;
using TrueCV.Infrastructure.Data;
using TrueCV.Infrastructure.ExternalApis;
using TrueCV.Infrastructure.Services;
using RealCV.Application.Interfaces;
using RealCV.Application.Models;
using RealCV.Domain.Entities;
using RealCV.Infrastructure.Configuration;
using RealCV.Infrastructure.Data;
using RealCV.Infrastructure.ExternalApis;
using RealCV.Infrastructure.Services;
namespace TrueCV.Tests.Services;
namespace RealCV.Tests.Services;
public class CompanyVerifierServiceTests : IDisposable
{

View File

@@ -1,8 +1,8 @@
using FluentAssertions;
using TrueCV.Application.Models;
using TrueCV.Infrastructure.Services;
using RealCV.Application.Models;
using RealCV.Infrastructure.Services;
namespace TrueCV.Tests.Services;
namespace RealCV.Tests.Services;
public sealed class EducationVerifierServiceTests
{

View File

@@ -1,10 +1,10 @@
using FluentAssertions;
using Microsoft.Extensions.Logging;
using Moq;
using TrueCV.Application.Models;
using TrueCV.Infrastructure.Services;
using RealCV.Application.Models;
using RealCV.Infrastructure.Services;
namespace TrueCV.Tests.Services;
namespace RealCV.Tests.Services;
public class TimelineAnalyserServiceTests
{