You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.3 KiB
28 lines
1.3 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<OutputType>Exe</OutputType> |
|
<TargetFramework>net6.0</TargetFramework> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<Nullable>enable</Nullable> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\Contexts\Contexts.csproj" /> |
|
<ProjectReference Include="..\Model\Model.csproj" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="6.0.8" /> |
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.8" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.8"> |
|
<PrivateAssets>all</PrivateAssets> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
</PackageReference> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.8" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.8" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.8"> |
|
<PrivateAssets>all</PrivateAssets> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
</PackageReference> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|