-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShoeStore.Application.csproj
More file actions
26 lines (21 loc) · 1.15 KB
/
ShoeStore.Application.csproj
File metadata and controls
26 lines (21 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ShoeStore.Domain\ShoeStore.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cloudinary" Version="0.0.5" />
<PackageReference Include="CloudinaryDotNet" Version="1.28.0" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.3.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Caching.Hybrid" Version="10.4.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.6" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.5" />
<PackageReference Include="TimeZoneConverter" Version="7.2.0" />
</ItemGroup>
</Project>