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.
This commit is contained in:
Daniel Cazzulino 2021-08-20 16:57:28 -04:00 committed by Patrik Svensson
parent 7276e11ecc
commit 3c5b98123b

View File

@ -2,6 +2,6 @@
"projects": [ "src", "tests" ],
"sdk": {
"version": "5.0.301",
"rollForward": "latestPatch"
"rollForward": "latestFeature"
}
}
}