2025-07-24 11:35:39 +03:30
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2025-07-11 20:37:28 +03:30
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.7" />
|
2025-07-24 11:35:39 +03:30
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.7">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.7">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2025-07-11 20:37:28 +03:30
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\Common\Common.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Hushian.Application\Hushian.Application.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Infrastructure\Infrastructure\Hushian.Infrastructure.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\Infrastructure\Persistence\Hushian.Persistence.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|