Skip to content

Commit 41e7728

Browse files
committed
Add .Net 10.0 Support
1 parent c54b9e1 commit 41e7728

File tree

4 files changed

+25
-22
lines changed

4 files changed

+25
-22
lines changed

samples/AesSample.Fluent/SoftFluent.AesSample.Fluent.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<LangVersion>10</LangVersion>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.0" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.1" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.1" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.1" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

samples/AesSample/SoftFluent.AesSample.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<LangVersion>10</LangVersion>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.0" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.1" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.1" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.1" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

src/EntityFrameworkCore.DataEncryption/SoftFluent.EntityFrameworkCore.DataEncryption.csproj

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<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>
55
<LangVersion>10.0</LangVersion>
66
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
77
<AssemblyName>SoftFluent.EntityFrameworkCore.DataEncryption</AssemblyName>
88
<RootNamespace>SoftFluent.EntityFrameworkCore.DataEncryption</RootNamespace>
99
<IsPackable>true</IsPackable>
10-
<Version>7.0.0</Version>
10+
<Version>8.0.0</Version>
1111
<Authors>SoftFluent</Authors>
1212
<Company>SoftFluent</Company>
1313
<PackageId>EntityFrameworkCore.DataEncryption</PackageId>
@@ -18,10 +18,10 @@
1818
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1919
<PackageTags>entity-framework-core, extensions, dotnet-core, dotnet, encryption, fluent-api</PackageTags>
2020
<PackageIcon>icon.png</PackageIcon>
21-
<Copyright>SoftFluent © 2019 - 2024</Copyright>
21+
<Copyright>SoftFluent © 2019 - 2025</Copyright>
2222
<Description>A plugin for Microsoft.EntityFrameworkCore to add support of encrypted fields using built-in or custom encryption providers.</Description>
2323
<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>
2525
<PackageReadmeFile>README.md</PackageReadmeFile>
2626
</PropertyGroup>
2727

@@ -45,9 +45,12 @@
4545
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[8.0.11,)" />
4646
</ItemGroup>
4747
<ItemGroup Condition="('$(TargetFramework)' == 'net9.0')">
48-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[9,)" />
48+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.*" />
4949
</ItemGroup>
50-
50+
<ItemGroup Condition="('$(TargetFramework)' == 'net10.0')">
51+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.*" />
52+
</ItemGroup>
53+
5154
<ItemGroup>
5255
<None Include="..\..\LICENSE">
5356
<Pack>True</Pack>

test/EntityFrameworkCore.DataEncryption.Test/SoftFluent.EntityFrameworkCore.DataEncryption.Test.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<LangVersion>10</LangVersion>
66
<IsPackable>false</IsPackable>
77
<AssemblyName>SoftFluent.EntityFrameworkCore.Encryption.Test</AssemblyName>
@@ -13,16 +13,16 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Bogus" Version="35.6.1" />
17-
<PackageReference Include="coverlet.collector" Version="6.0.2">
16+
<PackageReference Include="Bogus" Version="35.6.5" />
17+
<PackageReference Include="coverlet.collector" Version="6.0.4">
1818
<PrivateAssets>all</PrivateAssets>
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2020
</PackageReference>
21-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
22-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0" />
23-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
24-
<PackageReference Include="xunit" Version="2.9.2" />
25-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
21+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.1" />
22+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.1" />
23+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
24+
<PackageReference Include="xunit" Version="2.9.3" />
25+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
2626
<PrivateAssets>all</PrivateAssets>
2727
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2828
</PackageReference>

0 commit comments

Comments
 (0)