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.
19 lines
494 B
XML
19 lines
494 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Common\Results\**" />
|
|
<Compile Remove="Constants\**" />
|
|
<EmbeddedResource Remove="Common\Results\**" />
|
|
<EmbeddedResource Remove="Constants\**" />
|
|
<None Remove="Common\Results\**" />
|
|
<None Remove="Constants\**" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|