-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathBlog.Web.csproj
More file actions
24 lines (20 loc) · 1.03 KB
/
Blog.Web.csproj
File metadata and controls
24 lines (20 loc) · 1.03 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<UserSecretsId>aspnet-Blog.Web-6757ED6F-7F48-4961-917B-ADA8F5DEAFB4</UserSecretsId>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);ASPDEPR008</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="10.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="10.0.3" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Blog.Controllers\Blog.Controllers.csproj" />
<ProjectReference Include="..\Blog.Data\Blog.Data.csproj" />
<ProjectReference Include="..\Blog.Services\Blog.Services.csproj" />
</ItemGroup>
</Project>