You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/core/tools/global-json.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: global.json overview
3
3
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
5
5
ms.custom: "updateeachrelease"
6
6
---
7
7
# global.json overview
@@ -113,6 +113,17 @@ The following example shows how to use the exact specified version:
113
113
}
114
114
```
115
115
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
+
116
127
The following example shows how to use the highest patch version installed of a specific version (in the form, 3.1.1xx):
0 commit comments