From 68e9b3aa916b0c18fb7a2ec83c3ad5b476993b50 Mon Sep 17 00:00:00 2001 From: Manuel Menegazzo <65919883+m3nax@users.noreply.github.com> Date: Fri, 15 Mar 2024 16:18:48 +0100 Subject: [PATCH] Updated Orleans GPSTracker example to net8.0 (#6747) * Updated target framework and packages * Removed deprecated nuget * Removed unused nuget packages --- .../GPSTracker.Common/GPSTracker.Common.csproj | 4 ++-- .../GPSTracker.FakeDeviceGateway.csproj | 7 +------ .../GPSTracker.Service/GPSTracker.Service.csproj | 15 ++++----------- orleans/GPSTracker/README.md | 2 +- 4 files changed, 8 insertions(+), 20 deletions(-) diff --git a/orleans/GPSTracker/GPSTracker.Common/GPSTracker.Common.csproj b/orleans/GPSTracker/GPSTracker.Common/GPSTracker.Common.csproj index 59020a9b843..5274db20142 100644 --- a/orleans/GPSTracker/GPSTracker.Common/GPSTracker.Common.csproj +++ b/orleans/GPSTracker/GPSTracker.Common/GPSTracker.Common.csproj @@ -1,11 +1,11 @@  - net7.0 + net8.0 enable enable - + \ No newline at end of file diff --git a/orleans/GPSTracker/GPSTracker.FakeDeviceGateway/GPSTracker.FakeDeviceGateway.csproj b/orleans/GPSTracker/GPSTracker.FakeDeviceGateway/GPSTracker.FakeDeviceGateway.csproj index db123cebeb7..f986c60fff6 100644 --- a/orleans/GPSTracker/GPSTracker.FakeDeviceGateway/GPSTracker.FakeDeviceGateway.csproj +++ b/orleans/GPSTracker/GPSTracker.FakeDeviceGateway/GPSTracker.FakeDeviceGateway.csproj @@ -1,6 +1,6 @@  - net7.0 + net8.0 enable enable Exe @@ -8,9 +8,4 @@ - - - - - \ No newline at end of file diff --git a/orleans/GPSTracker/GPSTracker.Service/GPSTracker.Service.csproj b/orleans/GPSTracker/GPSTracker.Service/GPSTracker.Service.csproj index cc67a21e0ec..619c89e22eb 100644 --- a/orleans/GPSTracker/GPSTracker.Service/GPSTracker.Service.csproj +++ b/orleans/GPSTracker/GPSTracker.Service/GPSTracker.Service.csproj @@ -1,6 +1,6 @@ - net7.0 + net8.0 enable enable Exe @@ -11,16 +11,9 @@ - - - - - - - - - - + + + diff --git a/orleans/GPSTracker/README.md b/orleans/GPSTracker/README.md index 8ceb556b781..c69d69465ae 100644 --- a/orleans/GPSTracker/README.md +++ b/orleans/GPSTracker/README.md @@ -39,7 +39,7 @@ var notifier = GrainFactory.GetGrain(0); ## Sample prerequisites -This sample is written in C# and targets .NET 7.0. It requires the [.NET 7.0 SDK](https://dotnet.microsoft.com/download/dotnet/7.0) or later. +This sample is written in C# and targets .NET 8.0. It requires the [.NET 8.0 SDK](https://dotnet.microsoft.com/download/dotnet/8.0) or later. ## Building the sample