2024-01-25 20:38:47 +03:30
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2023-06-02 15:26:29 +03:30
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-01-25 20:38:47 +03:30
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-06-02 15:26:29 +03:30
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2024-01-25 20:38:47 +03:30
|
|
|
|
<AssemblyVersion>2.0.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>2.0.0</FileVersion>
|
2023-06-02 15:26:29 +03:30
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
|
2024-01-25 20:38:47 +03:30
|
|
|
|
<PackageReference Include="Hangfire" Version="1.8.7" />
|
|
|
|
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.7" />
|
|
|
|
|
<PackageReference Include="Hangfire.Storage.SQLite" Version="0.4.0" />
|
|
|
|
|
<PackageReference Include="IPAddressRange" Version="6.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.1" />
|
2023-06-02 15:26:29 +03:30
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
2024-01-25 20:38:47 +03:30
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.1">
|
2023-06-02 15:26:29 +03:30
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-01-25 20:38:47 +03:30
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
|
2023-06-02 15:26:29 +03:30
|
|
|
|
<PackageReference Include="QRCoder" Version="1.4.3" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\MikrotikAPI\MikrotikAPI.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|