You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
754 B
20 lines
754 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<RootNamespace>Microsoft.eShopWeb.Infrastructure</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Ardalis.Specification.EntityFrameworkCore" Version="4.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.10" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.11" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.8.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ApplicationCore\ApplicationCore.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Data\Migrations\" />
|
|
</ItemGroup>
|
|
</Project>
|
|
|