Skip to content

Commit 10a88cd

Browse files
Update README.md
1 parent ff4d627 commit 10a88cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ The final project should look like this:
6161
</Project>
6262
```
6363

64-
If you are using MsBuild.Sdk.Extras version 2 or above, use the .NET Core 3 SDK. You can still target previous versions of .NET Core.
64+
The .NET 5 SDK is the latest and has more support for desktop workloads. It's strongly recommended to use that SDK, even to build older targets. If you are using MsBuild.Sdk.Extras version 2 or above, use the .NET Core 3.1 SDK at a minimum. You can still target previous versions of .NET Core.
6565

6666
```json
6767
{
6868
"msbuild-sdks": {
69-
"MSBuild.Sdk.Extras": "2.1.2"
69+
"MSBuild.Sdk.Extras": "3.0.22"
7070
}
7171
}
7272
```
@@ -79,7 +79,7 @@ This would be a preferred solution for all the projects in your solution.
7979
Then again, you might want to override the version for just one project _OR_ if you have only one project in your solution (without adding `global.json`), you can do so like this:
8080

8181
```xml
82-
<Project Sdk="MSBuild.Sdk.Extras/2.1.2">
82+
<Project Sdk="MSBuild.Sdk.Extras/3.0.22">
8383
<PropertyGroup>
8484
<TargetFrameworks>net46;uap10.0.19041;tizen8.0</TargetFrameworks>
8585
</PropertyGroup>

0 commit comments

Comments
 (0)