-
Notifications
You must be signed in to change notification settings - Fork 0
/
myspace.csproj
40 lines (36 loc) · 1.64 KB
/
myspace.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-myspace-73692956-d2fb-4ed5-9331-89fef81209dd</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<None Remove="Enums\" />
<None Remove="Microsoft.EntityFrameworkCore" />
<None Remove="Pomelo.EntityFrameworkCore.MySql.Design" />
<None Remove="Pomelo.EntityFrameworkCore.MySql" />
<None Remove="Migrations\" />
</ItemGroup>
<ItemGroup>
<None Update="app.db" CopyToOutputDirectory="PreserveNewest" ExcludeFromSingleFile="true" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.10" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql.Design" Version="1.1.2" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="Enums\" />
<Folder Include="Migrations\" />
<Folder Include="wwwroot\img\" />
</ItemGroup>
<ItemGroup>
<Content Remove="wwwroot\img\" />
</ItemGroup>
</Project>