spectre.console/global.json
Daniel Cazzulino 3c5b98123b Make building more flexible by allowing feature bands
Currently, the latest stable .NET5 is version 5.0.400, which 
fails with `latestPatch` but works with `latestFeature`. 

Given that the project doesn't appear to depend on any low
level primitives or behaviors that might break from .NET 
feature band upgrades, it's far more convenient for contributors 
to have a more flexible requirement.
2021-08-24 17:18:03 +02:00

8 lines
114 B
JSON

{
"projects": [ "src", "tests" ],
"sdk": {
"version": "5.0.301",
"rollForward": "latestFeature"
}
}