-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTheBlogProject.csproj
More file actions
36 lines (32 loc) · 1.76 KB
/
TheBlogProject.csproj
File metadata and controls
36 lines (32 loc) · 1.76 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
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-TheBlogProject-2f8b6f03-2ce7-4556-b6f5-4637538aed4b</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<None Include="Views\Shared\Error.cshtml" />
<None Include="Views\Shared\_Layout.cshtml" />
<None Include="Views\Shared\_LoginPartial.cshtml" />
<None Include="Views\Shared\_ValidationScriptsPartial.cshtml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="4.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.7" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.12" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.12" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.12" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.12">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.11" />
<PackageReference Include="MimeKit" Version="4.3.0" />
<PackageReference Include="Npgsql" Version="7.0.4" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
<PackageReference Include="X.PagedList" Version="8.4.7" />
<PackageReference Include="X.PagedList.Mvc.Core" Version="8.4.7" />
<PackageReference Include="X.PagedList.Web.Common" Version="8.0.7" />
</ItemGroup>
</Project>