-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-manager.csproj
33 lines (31 loc) · 1.39 KB
/
contact-manager.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>contact_manager</RootNamespace>
</PropertyGroup>
<ItemGroup>
<None Remove="Models\" />
<None Remove="Pages\Contacts\" />
<None Remove="Microsoft.VisualStudio.Web.CodeGeneration.Design" />
<None Remove="Microsoft.EntityFrameworkCore.SqlServer" />
<None Remove="Microsoft.EntityFrameworkCore.Tools" />
<None Remove="Microsoft.EntityFrameworkCore.Sqlite" />
<None Remove="Swashbuckle.AspNetCore" />
</ItemGroup>
<ItemGroup>
<Folder Include="Models\" />
<Folder Include="Pages\Contacts\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.8">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.8" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.0" />
</ItemGroup>
</Project>