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>
|
2024-09-07 04:56:41 +03:00
|
|
|
|
<Version>1.0.0</Version>
|
|
|
|
|
<AssemblyVersion>1.0.3.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>1.0.3.0</FileVersion>
|
2024-01-08 16:49:44 +03:00
|
|
|
|
<AssemblyName>Mirea.Api.DataAccess.Persistence</AssemblyName>
|
|
|
|
|
<RootNamespace>$(AssemblyName)</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-10-09 03:08:15 +03:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.10" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.10" />
|
2024-09-30 01:10:37 +03:00
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.8" />
|
2024-05-29 08:08:58 +03:00
|
|
|
|
<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>
|