-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Description
The current template for of global.json
used in dotnet new globaljson
is:
It has option to set SDK version and an option to set roll forward policy.
I think it may make sense to extend that to have an option to set test runner.
Suggested behavior:
dotnet new globaljson
-> doesn't produce the "test" section in global.json at all.dotnet new globaljson --test-runner <VALUE>
-> produces the "test" section in global.json, and sets the runner to the value requested by the user. If<VALUE>
is notVSTest
orMicrosoft.Testing.Platform
, we consider it as an error.
baronfelCopilot