-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileProcessor.BusinessLogic.csproj
More file actions
31 lines (27 loc) · 1.5 KB
/
FileProcessor.BusinessLogic.csproj
File metadata and controls
31 lines (27 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.1" />
<PackageReference Include="SecurityService.Client" Version="2025.12.2" />
<PackageReference Include="Shared" Version="2025.12.2" />
<PackageReference Include="Shared.DomainDrivenDesign" Version="2025.12.2" />
<PackageReference Include="MediatR" Version="14.0.0" />
<PackageReference Include="Shared.EventStore" Version="2025.12.2" />
<PackageReference Include="System.IO.Abstractions" Version="22.1.0" />
<PackageReference Include="TransactionProcessor.Client" Version="2025.12.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.1" />
<PackageReference Include="TransactionProcessor.Database" Version="2025.12.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FileProcessor.DataTransferObjects\FileProcessor.DataTransferObjects.csproj" />
<ProjectReference Include="..\FileProcessor.FileAggregate\FileProcessor.FileAggregate.csproj" />
<ProjectReference Include="..\FileProcessor.FileImportLogAggregate\FileProcessor.FileImportLogAggregate.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="FileFormatHandlers\" />
</ItemGroup>
</Project>