forked from dotnet/SqlClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.json
More file actions
29 lines (27 loc) · 1020 Bytes
/
global.json
File metadata and controls
29 lines (27 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"sdk":
{
// We currently require the .NET 10 SDK to build and test the project.
//
// We specify the most recent release, and let rollForward pick the latest
// available suitable SDK per the rollForward setting.
//
// We must specify a complete version here since this file is also used by
// the Azure Pipelines UseDotNet@2 task, which doesn't support wildcards,
// and won't roll-forward. It uses the version verbatim.
//
// GOTCHA: This file is only used by the dotnet CLI and related tools.
// Other toolchains (IDEs like Visual Studio, the .NET Framework MSBuild
// system, etc.) may use their own installed SDKs unless configured
// otherwise.
//
"version": "10.0.101",
// Any 10.x version is acceptable.
"rollForward": "latestMinor",
// Do not allow pre-release versions.
//
// Set this to true if you are testing the viability of pre-release SDK
// versions in your local workspace.
"allowPrerelease": false
}
}