|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>net5.0</TargetFramework> |
| 4 | + <TargetFramework>net6.0</TargetFramework> |
5 | 5 | <IsPackable>false</IsPackable> |
6 | 6 | <AssemblyName>Microsoft.EntityFrameworkCore.Encryption.Test</AssemblyName> |
7 | 7 | <RootNamespace>Microsoft.EntityFrameworkCore.Encryption.Test</RootNamespace> |
|
13 | 13 | <PrivateAssets>all</PrivateAssets> |
14 | 14 | <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
15 | 15 | </PackageReference> |
16 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.1" /> |
| 16 | + |
17 | 17 | <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.1" /> |
18 | 18 | <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" /> |
19 | 19 | <PackageReference Include="xunit" Version="2.4.1" /> |
|
27 | 27 | <ItemGroup> |
28 | 28 | <ProjectReference Include="..\..\src\EntityFrameworkCore.DataEncryption\EntityFrameworkCore.DataEncryption.csproj" /> |
29 | 29 | </ItemGroup> |
| 30 | + |
| 31 | + <ItemGroup Condition="('$(TargetFramework)' == 'netcoreapp3.1')"> |
| 32 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="[3.1,6)" /> |
| 33 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="[3.1,6)" /> |
| 34 | + </ItemGroup> |
| 35 | + <ItemGroup Condition="('$(TargetFramework)' == 'net5.0')"> |
| 36 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="[5,)" /> |
| 37 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="[5,)" /> |
| 38 | + </ItemGroup> |
| 39 | + <ItemGroup Condition="('$(TargetFramework)' == 'net6.0')"> |
| 40 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="[6,)" /> |
| 41 | + <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="[6,)" /> |
| 42 | + </ItemGroup> |
30 | 43 |
|
31 | 44 | </Project> |
0 commit comments