20 lines
598 B
XML
20 lines
598 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Fantasy-Net" Version="2024.2.24" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.7.0" />
|
|
<PackageReference Include="System.Security.Cryptography.Cng" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\APlugins\APlugins.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|