The current .NET SDK used is 9.0.203 as specified in global.json:
|
{ |
|
"sdk": { |
|
"version": "9.0.203", |
|
"workloadVersion": "9.0.203", |
|
"rollForward": "disable", |
|
"allowPrerelease": false |
|
} |
|
} |
Because
rollForward is disabled, even
9.0.204 is not supported. Are there any plans to bump the SDK version? Or perhaps to allow rolling forward to the latest patch?
The reason I ask is that for some reason my system keeps automatically updating 9.0.203 to 9.0.204, which means that I constantly have to uninstall 9.0.204 and install 9.0.203 (and then also restore the workloads) to be able to compile the code locally. This might very well be an issue with my setup (I have 9.0.300 installed globally), but I just thought I'd ask.
The current .NET SDK used is
9.0.203as specified inglobal.json:sentry-dotnet/global.json
Lines 1 to 8 in 723c84e
Because
rollForwardis disabled, even9.0.204is not supported. Are there any plans to bump the SDK version? Or perhaps to allow rolling forward to the latest patch?The reason I ask is that for some reason my system keeps automatically updating
9.0.203to9.0.204, which means that I constantly have to uninstall9.0.204and install9.0.203(and then also restore the workloads) to be able to compile the code locally. This might very well be an issue with my setup (I have9.0.300installed globally), but I just thought I'd ask.