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.
37 lines
1.3 KiB
XML
37 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="Features\**" />
|
|
<EmbeddedResource Remove="DependencyInjection\**" />
|
|
<EmbeddedResource Remove="Features\**" />
|
|
<None Remove="DependencyInjection\**" />
|
|
<None Remove="Features\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoMapper" Version="16.2.0" />
|
|
<PackageReference Include="Codecrete.SwissQRBill.Generator" Version="3.4.0" />
|
|
<PackageReference Include="FluentValidation" Version="12.1.1" />
|
|
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.1.1" />
|
|
<PackageReference Include="MediatR" Version="14.1.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.10" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DocumentOperator.Domain\DocumentService.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Common\Mappings\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|