2024-01-08 16:49:44 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<Company>Winsomnia</Company>
|
|
|
|
|
<Version>1.0.0-a0</Version>
|
|
|
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
|
|
|
<AssemblyName>Mirea.Api.DataAccess.Persistence</AssemblyName>
|
|
|
|
|
<RootNamespace>$(AssemblyName)</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-06-01 05:40:09 +03:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.6" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.6" />
|
2024-01-26 19:39:01 +03:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.1" />
|
2024-05-29 08:08:58 +03:00
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.4" />
|
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />
|
2024-01-08 16:49:44 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Application\Application.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Domain\Domain.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|