-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPsCoreDemo.csproj
More file actions
23 lines (19 loc) · 1.03 KB
/
Copy pathPsCoreDemo.csproj
File metadata and controls
23 lines (19 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<!-- At compile time it allows the most common using directives to be included automatically in every file in the project. -->
<!-- This reduces the need for explicit using directives and helps to keep the code cleaner and more concise. -->
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.22" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.22">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.22" />
<!-- For Production with PostgreSQL
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.11" /> -->
</ItemGroup>
</Project>