|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>netstandard2.0;net6.0;net5.0</TargetFrameworks> |
5 | 5 | <LangVersion>9.0</LangVersion> |
6 | 6 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
7 | 7 | <AssemblyName>EntityFrameworkCore.DataEncryption</AssemblyName> |
8 | 8 | <RootNamespace>Microsoft.EntityFrameworkCore.DataEncryption</RootNamespace> |
9 | 9 | <IsPackable>true</IsPackable> |
10 | | - <Version>3.0.0</Version> |
| 10 | + <Version>3.0.1-dev</Version> |
11 | 11 | <Authors>Filipe GOMES PEIXOTO</Authors> |
12 | 12 | <PackageId>EntityFrameworkCore.DataEncryption</PackageId> |
13 | 13 | <PackageProjectUrl>https://github.com/Eastrall/EntityFrameworkCore.DataEncryption</PackageProjectUrl> |
|
28 | 28 | <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies> |
29 | 29 | </PropertyGroup> |
30 | 30 |
|
31 | | - <ItemGroup> |
32 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.0" /> |
| 31 | + <ItemGroup Condition="('$(TargetFramework)' == 'netstandard2.0')"> |
| 32 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="[3.1,6)" /> |
33 | 33 | </ItemGroup> |
34 | | - |
| 34 | + <ItemGroup Condition="('$(TargetFramework)' == 'netcoreapp3.1')"> |
| 35 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="[3.1,6)" /> |
| 36 | + </ItemGroup> |
| 37 | + <ItemGroup Condition="('$(TargetFramework)' == 'netstandard2.1')"> |
| 38 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="[5,)" /> |
| 39 | + </ItemGroup> |
| 40 | + <ItemGroup Condition="('$(TargetFramework)' == 'net5.0')"> |
| 41 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="[5,)" /> |
| 42 | + </ItemGroup> |
| 43 | + <ItemGroup Condition="('$(TargetFramework)' == 'net6.0')"> |
| 44 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="[6,)" /> |
| 45 | + </ItemGroup> |
| 46 | + |
35 | 47 | <ItemGroup> |
36 | 48 | <None Include="..\..\LICENSE"> |
37 | 49 | <Pack>True</Pack> |
|
0 commit comments