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.
35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<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>
|