41 lines
2.2 KiB
XML
41 lines
2.2 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
</PropertyGroup>
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.1" NoWarn="NU1605" />
|
|||
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.1" NoWarn="NU1605" />
|
|||
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.8" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.11" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.11" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.11">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="Microsoft.Identity.Web" Version="2.21.1" />
|
|||
|
<PackageReference Include="Microsoft.Identity.Web.DownstreamApi" Version="2.21.1" />
|
|||
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.11" />
|
|||
|
<PackageReference Include="OpenHarbor.CQRS.DynamicQuery.AspNetCore" Version="8.0.0-preview.6" />
|
|||
|
<PackageReference Include="PoweredSoft.Data.EntityFrameworkCore" Version="3.0.0" />
|
|||
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|||
|
|
|||
|
<PackageReference Include="FluentValidation.AspNetCore" Version="10.4.0" />
|
|||
|
<PackageReference Include="OpenHarbor.CQRS" Version="8.0.0-preview.6" />
|
|||
|
<PackageReference Include="OpenHarbor.CQRS.AspNetCore" 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>
|
|||
|
<Folder Include="Controllers\" />
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\CH.Authority\CH.Authority.csproj" />
|
|||
|
<ProjectReference Include="..\CH.CQRS\CH.CQRS.csproj" />
|
|||
|
<ProjectReference Include="..\CH.Dal\CH.Dal.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|