Skip to content

Commit 3df7c1f

Browse files
committed
Added latestFeature example
1 parent 47568ac commit 3df7c1f

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

docs/core/tools/global-json.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: global.json overview
33
description: Learn how to use the global.json file to set the .NET Core SDK version when running .NET Core CLI commands.
4-
ms.date: 01/14/2020
4+
ms.date: 04/21/2020
55
ms.custom: "updateeachrelease"
66
---
77
# global.json overview
@@ -113,6 +113,17 @@ The following example shows how to use the exact specified version:
113113
}
114114
```
115115

116+
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):
117+
118+
```json
119+
{
120+
"sdk": {
121+
"version": "3.1.000",
122+
"rollForward": "latestFeature"
123+
}
124+
}
125+
```
126+
116127
The following example shows how to use the highest patch version installed of a specific version (in the form, 3.1.1xx):
117128

118129
```json

0 commit comments

Comments
 (0)