2024-03-29 01:29:14 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2024-03-17 23:50:31 +03:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2024-03-29 01:29:14 +03:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-03-17 23:50:31 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-03-29 01:29:14 +03:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="wwwroot\index.html" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Manarah.Domain\Manarah.Domain.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.3" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-03-17 23:50:31 +03:00
|
|
|
|
</Project>
|