Files
Hushian/Hushian.Application/Hushian.Application.csproj

24 lines
927 B
XML
Raw Permalink Normal View History

2025-06-28 15:31:07 +03:30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2025-06-29 15:29:51 +03:30
<ItemGroup>
2025-07-11 20:37:28 +03:30
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.7" />
2025-06-29 15:29:51 +03:30
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
2025-07-11 20:37:28 +03:30
<PackageReference Include="FluentValidation" Version="12.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.7" />
2025-06-29 15:29:51 +03:30
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.3.1" />
2025-07-11 20:37:28 +03:30
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.7" />
2025-06-29 15:29:51 +03:30
</ItemGroup>
2025-06-28 15:31:07 +03:30
<ItemGroup>
<ProjectReference Include="..\Common\Common.csproj" />
<ProjectReference Include="..\Hushian.Domain\Hushian.Domain.csproj" />
</ItemGroup>
</Project>