mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 22:36:33 +00:00
24 lines
693 B
XML
24 lines
693 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Azaion.Common\Azaion.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LazyCache.AspNetCore" Version="2.4.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.1.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|