refactor: Rename TrueCV to RealCV throughout codebase

- Renamed all directories (TrueCV.* -> RealCV.*)
- Renamed all project files (.csproj)
- Renamed solution file (TrueCV.sln -> RealCV.sln)
- Updated all namespaces in C# and Razor files
- Updated project references
- Updated CSS variable names

🤖 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-22 20:47:55 +00:00
parent 6f384f8d09
commit 92a3b60878
107 changed files with 693 additions and 554 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

@@ -26,9 +26,9 @@
</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" />
<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
{