Restructured project files across all layers: - Removed `Controllers` folder reference from `DocumentOperator.API.csproj`. - Added folder structure to `DocumentOperator.Application`, `DocumentOperator.Domain`, and `DocumentOperator.Infrastructure` projects for better organization. Introduced new API configurations and middleware: - Added `SerilogConfiguration` and `SwaggerConfiguration` classes. - Added `ExceptionHandlingMiddleware`, `RequestLoggingMiddleware`, and `TenantResolutionMiddleware`. Implemented new document processing feature: - Added `ProcessDocumentCommand`, `ProcessDocumentHandler`, and `ProcessDocumentValidator` classes in the application layer.
28 lines
907 B
XML
28 lines
907 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DevExpress.Pdf.Core" Version="25.2.8" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DocumentOperator.Application\DocumentOperator.Application.csproj" />
|
|
<ProjectReference Include="..\DocumentOperator.Domain\DocumentOperator.Domain.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Configuration\" />
|
|
<Folder Include="DependencyInjection\" />
|
|
<Folder Include="Services\FileStorage\" />
|
|
<Folder Include="Services\DocumentValidation\" />
|
|
<Folder Include="Services\PdfProcessing\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|