|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks> |
5 | 5 | <LangVersion>10.0</LangVersion> |
6 | 6 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
7 | 7 | <AssemblyName>SoftFluent.EntityFrameworkCore.DataEncryption</AssemblyName> |
8 | 8 | <RootNamespace>SoftFluent.EntityFrameworkCore.DataEncryption</RootNamespace> |
9 | 9 | <IsPackable>true</IsPackable> |
10 | | - <Version>7.0.0</Version> |
| 10 | + <Version>8.0.0</Version> |
11 | 11 | <Authors>SoftFluent</Authors> |
12 | 12 | <Company>SoftFluent</Company> |
13 | 13 | <PackageId>EntityFrameworkCore.DataEncryption</PackageId> |
|
18 | 18 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
19 | 19 | <PackageTags>entity-framework-core, extensions, dotnet-core, dotnet, encryption, fluent-api</PackageTags> |
20 | 20 | <PackageIcon>icon.png</PackageIcon> |
21 | | - <Copyright>SoftFluent © 2019 - 2024</Copyright> |
| 21 | + <Copyright>SoftFluent © 2019 - 2025</Copyright> |
22 | 22 | <Description>A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.</Description> |
23 | 23 | <PackageLicenseFile>LICENSE</PackageLicenseFile> |
24 | | - <PackageReleaseNotes>https://github.com/SoftFluent/EntityFrameworkCore.DataEncryption/releases/tag/v6.0.0</PackageReleaseNotes> |
| 24 | + <PackageReleaseNotes>https://github.com/SoftFluent/EntityFrameworkCore.DataEncryption/releases/tag/v8.0.0</PackageReleaseNotes> |
25 | 25 | <PackageReadmeFile>README.md</PackageReadmeFile> |
26 | 26 | </PropertyGroup> |
27 | 27 |
|
|
45 | 45 | <PackageReference Include="Microsoft.EntityFrameworkCore" Version="[8.0.11,)" /> |
46 | 46 | </ItemGroup> |
47 | 47 | <ItemGroup Condition="('$(TargetFramework)' == 'net9.0')"> |
48 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="[9,)" /> |
| 48 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.*" /> |
49 | 49 | </ItemGroup> |
50 | | - |
| 50 | + <ItemGroup Condition="('$(TargetFramework)' == 'net10.0')"> |
| 51 | + <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.*" /> |
| 52 | + </ItemGroup> |
| 53 | + |
51 | 54 | <ItemGroup> |
52 | 55 | <None Include="..\..\LICENSE"> |
53 | 56 | <Pack>True</Pack> |
|
0 commit comments