Refactor: Rename DocumentOperator to DocumentService

Renamed and restructured project references across the solution
to replace `DocumentOperator` projects with `DocumentService`
projects. Updated all `.csproj` files to reflect the new project
names and references.

Modified the solution file (`DocumentOperator.sln`) to remove
`DocumentOperator` projects and add corresponding `DocumentService`
projects, including `DocumentService.API`, `DocumentService.Application`,
`DocumentService.Infrastructure`, `DocumentService.Domain`, and
`DocumentService.Tests`.

This change aligns the project structure with the new naming
convention or organizational standards.
This commit is contained in:
2026-07-30 14:01:29 +02:00
parent 9cff7ee459
commit b6bb894257
6 changed files with 15 additions and 15 deletions

View File

@@ -0,0 +1,34 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="DependencyInjection\**" />
<Compile Remove="Services\DocumentValidation\**" />
<Compile Remove="Services\FileStorage\**" />
<EmbeddedResource Remove="DependencyInjection\**" />
<EmbeddedResource Remove="Services\DocumentValidation\**" />
<EmbeddedResource Remove="Services\FileStorage\**" />
<None Remove="DependencyInjection\**" />
<None Remove="Services\DocumentValidation\**" />
<None Remove="Services\FileStorage\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Codecrete.SwissQRBill.Generator" Version="3.4.0" />
<PackageReference Include="DevExpress.Document.Processor" Version="26.1.3" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
<PackageReference Include="SkiaSharp.QrCode" Version="1.0.0" />
<PackageReference Include="System.Drawing.Common" Version="10.0.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DocumentOperator.Application\DocumentService.Application.csproj" />
<ProjectReference Include="..\DocumentOperator.Domain\DocumentService.Domain.csproj" />
</ItemGroup>
</Project>