Skip to content

Commit 897db6d

Browse files
Merge pull request #312103 from jlian/fix/tutorial-dotnet-version
Recommend .NET 8 LTS over EOL .NET 7 in IoT Edge development tutorial
2 parents 4044171 + 63abce5 commit 897db6d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

articles/iot-edge/tutorial-develop-for-linux.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Develop Azure IoT Edge modules using Visual Studio Code tutorial
33
description: 'Develop IoT Edge modules with Visual Studio Code: Follow step-by-step instructions to create, build, and deploy modules using Azure IoT Edge tools.'
44
author: sethmanheim
55
ms.author: sethm
6-
ms.date: 11/03/2025
6+
ms.date: 02/20/2026
77
ms.topic: tutorial
88
ms.service: azure-iot-edge
99
services: iot-edge
@@ -1029,7 +1029,7 @@ Use the `dotnet publish` command to build the container image for Linux and amd6
10291029
dotnet publish --os linux --arch x64 /t:PublishContainer
10301030
```
10311031

1032-
Currently, the **iotedgedev** tool template targets .NET 7.0. If you want to target a different version of .NET, you can edit the **filtermodule.csproj** file and change the `TargetFramework` and `PackageReference` values. For example to target .NET 8.0, your **filtermodule.csproj** file should look like this:
1032+
Currently, the **iotedgedev** tool template targets .NET 7.0, which reached end of support in May 2024. Update the project to target .NET 8.0 (LTS, supported through November 2026) by editing the **filtermodule.csproj** file and changing the `TargetFramework` and `PackageReference` values. Your **filtermodule.csproj** file should look like this:
10331033

10341034
```xml
10351035
<Project Sdk="Microsoft.NET.Sdk.Worker">

0 commit comments

Comments
 (0)