westonpace commented on issue #33783: URL: https://github.com/apache/arrow/issues/33783#issuecomment-1397252779
The libraries are (should be) portable. Executables (unit tests in this case) are not portable. The .NET library projects are built to target .net standard and should be compatible with .NET 7.0 The .NET unit test projects are built to target .NET framework 6.0 (executable projects cannot target a standard) and so they require a .NET 6.0 runtime to execute. I think we can upgrade the unit test projects to compile for both .NET framework 6.0 and 7.0 but that is not normally done. Or we can install the .NET 6.0 runtime (you can install multiple SDKs / runtimes). Or we can upgrade the unit tests to always require 7.0 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
