Skip to content

Commit 232836a

Browse files
committed
use target framework .net 10.0
1 parent b3e075e commit 232836a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

samples/41_RemoteQueryable_ToEntityFrameworkCore/Client/Client.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
88
<ProjectReference Include="..\Common\Common.csproj" />
@@ -12,7 +12,7 @@
1212
Dependency of Microsoft.EntityFrameworkCore in client code is required only
1313
if using Microsoft.EntityFrameworkCore.DbFunctionsExtensions in linq queries.
1414
-->
15-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.2" />
1616
</ItemGroup>
1717
<ItemGroup>
1818
<Compile Include="..\..\SharedCode\Client.AsyncTcp.RemoteRepository.cs" Link="RemoteRepository.cs" />

samples/41_RemoteQueryable_ToEntityFrameworkCore/DemoStartUp/DemoStartUp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
88
<ProjectReference Include="..\Client\Client.csproj" />

samples/41_RemoteQueryable_ToEntityFrameworkCore/Server/Server.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
</PropertyGroup>
77
<ItemGroup>
88
<ProjectReference Include="..\Common\Common.csproj" />
99
</ItemGroup>
1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.0" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.2" />
1212
<ProjectReference Include="..\..\..\src\Remote.Linq.EntityFrameworkCore\Remote.Linq.EntityFrameworkCore.csproj" />
1313
</ItemGroup>
1414
<ItemGroup>

0 commit comments

Comments
 (0)