23 lines
857 B
XML
23 lines
857 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="FluentValidation" Version="10.4.0" />
|
|||
|
|
|||
|
<PackageReference Include="OpenHarbor.CQRS.Abstractions" Version="8.0.0-preview.6" />
|
|||
|
<PackageReference Include="OpenHarbor.CQRS.DynamicQuery" Version="8.0.0-preview.6" />
|
|||
|
<PackageReference Include="OpenHarbor.CQRS.FluentValidation" Version="8.0.0-preview.6" />
|
|||
|
<PackageReference Include="PoweredSoft.Module.Abstractions" Version="2.0.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\DigitalOps.Authority\DigitalOps.Authority.csproj" />
|
|||
|
<ProjectReference Include="..\DigitalOps.Dal\DigitalOps.Dal.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
</Project>
|