Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docs/core/tools/global-json.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: global.json overview
description: Learn how to use the global.json file to set the .NET Core SDK version when running .NET Core CLI commands.
ms.date: 01/14/2020
ms.date: 04/21/2020
ms.custom: "updateeachrelease"
---
# global.json overview
Expand Down Expand Up @@ -113,6 +113,17 @@ The following example shows how to use the exact specified version:
}
```

The following example shows how to use the latest feature band and patch version installed of a specific major and minor version (in the form, 3.1.xxx):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think the clause in parentheses is necessary, but if you decide to keep it I would remove the comma.

Suggested change
The following example shows how to use the latest feature band and patch version installed of a specific major and minor version (in the form, 3.1.xxx):
The following example shows how to use the latest feature band and patch version installed of a specific major and minor version:

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Addressing this in another PR: #17990


```json
{
"sdk": {
"version": "3.1.000",
"rollForward": "latestFeature"
}
}
```

The following example shows how to use the highest patch version installed of a specific version (in the form, 3.1.1xx):

```json
Expand Down