-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBookman.csproj
48 lines (44 loc) · 2.03 KB
/
Bookman.csproj
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
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-Bookman-b3422553-89b4-4520-98d6-6f96edea2a84</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<None Remove="ViewModels\" />
<None Remove="Views\Book\" />
<None Remove="Services\" />
<None Remove="Views\Order\" />
</ItemGroup>
<ItemGroup>
<None Update="app.db" CopyToOutputDirectory="PreserveNewest" ExcludeFromSingleFile="true" />
<None Update="DigiCertGlobalRootCA.crt.pem">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.20" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.20" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.20" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.20" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.20" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.20">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.16" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.20" />
</ItemGroup>
<ItemGroup>
<Folder Include="ViewModels\" />
<Folder Include="Views\Book\" />
<Folder Include="wwwroot\imgs\" />
<Folder Include="Services\" />
<Folder Include="Views\Order\" />
</ItemGroup>
<ItemGroup>
<Content Remove="wwwroot\imgs\" />
</ItemGroup>
</Project>