Update out-of-support net8.0 MAUI targets to net9.0#26463
Conversation
… net9.0 versions.
…es and error out on failure
snnn
left a comment
There was a problem hiding this comment.
LGTM. But, actually I am not able to build the code with .net9 on Linux ( I didn't enable mobile). It's due to the *.snk files . The files were generated years ago with a weak RSA key. Now openssl rejects such low-strength RSA algorithms. So, it cannot sign the files. So, dotnet build cannot generate the managed DLLs.
I suppose we'll have to deal with it when upgrading the other target frameworks to net9.0. currently, only the MAUI net8.0 ones are out of support. |
<!-- Describe your changes. --> .NET MAUI 8 is out of support. See here: https://dotnet.microsoft.com/en-us/platform/support/policy/maui We started seeing errors about this in the NuGet packaging pipeline. ``` ``` This change updates net8.0 mobile target framework monikers to net9.0. <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> Fix packaging pipeline.
Description
.NET MAUI 8 is out of support. See here: https://dotnet.microsoft.com/en-us/platform/support/policy/maui
We started seeing errors about this in the NuGet packaging pipeline.
This change updates net8.0 mobile target framework monikers to net9.0.
Motivation and Context
Fix packaging pipeline.