-
-
Save codedeep79/f9e2a4c40f3be9232106f962ebbb3ca0 to your computer and use it in GitHub Desktop.
Revisions
-
codedeep79 revised this gist
Jan 6, 2025 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,11 @@ The error message **NETSDK1209** indicates that your current version of Visual Studio does not support targeting .NET 8.0: + Update the **.csproj** file to target a supported version of .NET, such as .NET 7.0. + Open the `.csproj` file. + Find the `<TargetFramework>` element. + Change the value to `net7.0 or a lower` version. ```xml <TargetFramework>net7.0</TargetFramework> ``` -
codedeep79 created this gist
Jan 6, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ The error message **NETSDK1209** indicates that your current version of Visual Studio does not support targeting .NET 8.0: + Update the **.csproj** file to target a supported version of .NET, such as .NET 8.0. + Open the `.csproj` file. + Find the `<TargetFramework>` element. + Change the value to `net7.0 or a lower` version. ```xml <TargetFramework>net8.0</TargetFramework> ```