Skip to content

Commit f34a83f

Browse files
Update global.json schema with test runner (SchemaStore#4967)
* Update global.json schema with test runner * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 1e92fbe commit f34a83f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/schemas/json/global.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,18 @@
3232
"description": "The roll-forward policy when selecting an SDK version, either as a fallback to accommodate missing a specific SDK version or as a directive to use a later version."
3333
}
3434
}
35+
},
36+
"test": {
37+
"type": "object",
38+
"description": "Specify information related to testing",
39+
"properties": {
40+
"runner": {
41+
"type": "string",
42+
"enum": ["Microsoft.Testing.Platform", "VSTest"],
43+
"default": "VSTest",
44+
"description": "The test runner/platform used by 'dotnet test' command."
45+
}
46+
}
3547
}
3648
},
3749
"title": "JSON schema for the .NET global configuration file",

0 commit comments

Comments
 (0)