22 lines
683 B
XML
22 lines
683 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Service\Service.csproj" />
|
|
<ProjectReference Include="..\Repository\Repository.csproj" />
|
|
<ProjectReference Include="..\Entity\Entity.csproj" />
|
|
<ProjectReference Include="..\Common\Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|