2024-10-07 18:04:26 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2026-04-10 02:19:50 -05:00
|
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2024-10-07 18:04:26 -05:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-09-25 19:11:37 -05:00
|
|
|
|
<PackageReference Include="AutoMapper" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
|
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
|
|
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" />
|
2024-10-07 18:04:26 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\LANCommander.SDK\LANCommander.SDK.csproj" />
|
2025-11-16 12:31:25 -06:00
|
|
|
|
<ProjectReference Include="..\LANCommander.Server.Settings\LANCommander.Server.Settings.csproj" />
|
2024-10-07 18:04:26 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|