-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInsightLearn.Core.csproj
More file actions
22 lines (18 loc) · 997 Bytes
/
InsightLearn.Core.csproj
File metadata and controls
22 lines (18 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="libphonenumber-csharp" Version="9.0.18" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.25" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.5" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="10.0.5" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<!-- Security patches for transitive vulnerabilities (CVE-2024-43483) -->
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.5" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.15.0" />
</ItemGroup>
</Project>