File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFramework >net5.0</ TargetFramework >
5+ <TargetFrameworks >net5.0;net6.0</ TargetFrameworks >
66 </PropertyGroup >
77
8- <ItemGroup >
9- <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" 5.0.1" />
10- <PackageReference Include =" Microsoft.EntityFrameworkCore.InMemory" Version =" 5.0.1" />
11- </ItemGroup >
8+ <ItemGroup Condition =" ('$(TargetFramework)' == 'net5.0')" >
9+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" [5,)" />
10+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" [5,)" />
11+ </ItemGroup >
12+ <ItemGroup Condition =" ('$(TargetFramework)' == 'net6.0')" >
13+ <PackageReference Include =" Microsoft.EntityFrameworkCore" Version =" [6,)" />
14+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" [6,)" />
15+ </ItemGroup >
1216
1317 <ItemGroup >
1418 <ProjectReference Include =" ..\..\src\EntityFrameworkCore.DataEncryption\EntityFrameworkCore.DataEncryption.csproj" />
You can’t perform that action at this time.
0 commit comments