26 lines
872 B
XML
26 lines
872 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="OpenHarbor.CQRS.Abstractions" Version="8.0.0-preview.6" />
|
|||
|
<PackageReference Include="OpenHarbor.CQRS.DynamicQuery" Version="8.0.0-preview.6" />
|
|||
|
<PackageReference Include="PoweredSoft.Module.Abstractions" Version="2.0.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\DigitalOps.Dal\DigitalOps.Dal.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Reference Include="Microsoft.AspNetCore.Http.Abstractions">
|
|||
|
<HintPath>..\..\..\..\..\..\..\usr\local\share\dotnet\shared\Microsoft.AspNetCore.App\8.0.11\Microsoft.AspNetCore.Http.Abstractions.dll</HintPath>
|
|||
|
</Reference>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|