-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject.Web.RazorShop.csproj
More file actions
29 lines (26 loc) · 1.36 KB
/
Project.Web.RazorShop.csproj
File metadata and controls
29 lines (26 loc) · 1.36 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DNTPersianUtils.Core" Version="5.4.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.13" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.13" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.13" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.13" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.13" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.13" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Project.Application\Project.Application.csproj" />
<ProjectReference Include="..\Project.Infrastructure\Project.Infrastructure.csproj" />
<ProjectReference Include="..\Project.Persistence\Project.Persistence.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="Views\Pages\index.cshtml">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
</Project>