26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.12" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.12" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.12" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.12">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.2" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.3" />
|
|
<PackageReference Include="Serilog.Extensions.Logging.File" Version="2.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Areas\Admin\Data\" />
|
|
<Folder Include="Areas\Admin\Models\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|