1 |
773d1205
|
schenkj
|
<Project Sdk="Microsoft.NET.Sdk">
|
2 |
|
|
|
3 |
|
|
<PropertyGroup>
|
4 |
|
|
<TargetFramework>net6.0</TargetFramework>
|
5 |
|
|
<Nullable>enable</Nullable>
|
6 |
|
|
|
7 |
|
|
<IsPackable>false</IsPackable>
|
8 |
|
|
</PropertyGroup>
|
9 |
|
|
|
10 |
|
|
<ItemGroup>
|
11 |
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.4" />
|
12 |
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.4">
|
13 |
|
|
<PrivateAssets>all</PrivateAssets>
|
14 |
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
15 |
|
|
</PackageReference>
|
16 |
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="6.0.4" />
|
17 |
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.4" />
|
18 |
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.4">
|
19 |
|
|
<PrivateAssets>all</PrivateAssets>
|
20 |
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
21 |
|
|
</PackageReference>
|
22 |
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
|
23 |
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
24 |
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
|
25 |
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
|
26 |
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0" />
|
27 |
782b6d38
|
Vojtěch Bartička
|
</ItemGroup>
|
28 |
|
|
|
29 |
|
|
<ItemGroup>
|
30 |
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
31 |
773d1205
|
schenkj
|
</ItemGroup>
|
32 |
|
|
|
33 |
|
|
</Project>
|