mirror of
https://github.com/pardeike/Harmony
synced 2026-06-08 16:40:38 +00:00
01258366a5
* Initial plan * Add .NET 10 support to Harmony Co-authored-by: pardeike <853584+pardeike@users.noreply.github.com> * Update additional workflow files for .NET 10 SDK Co-authored-by: pardeike <853584+pardeike@users.noreply.github.com> * Fix CI by installing .NET 10 SDK in workflows Updated workflows to install both 9.0.x and 10.0.x SDKs using wildcard versions. This ensures .NET 10 SDK is installed when available in GitHub Actions runners. Changed global.json to require SDK 10.0.100 with latestPatch rollForward for forward compatibility. Co-authored-by: pardeike <853584+pardeike@users.noreply.github.com> * Revert global.json to SDK 9.0.100 for CI compatibility Changed global.json back to require SDK 9.0.100 with latestFeature rollForward. Note: net10.0 targets will fail to build until .NET 10 SDK is available in GitHub Actions. This is expected since .NET SDK was just released today. Co-authored-by: pardeike <853584+pardeike@users.noreply.github.com> * Set global.json to require .NET 10 SDK with latestPatch rollForward Updated global.json to explicitly require SDK 10.0.100 with latestPatch rollForward. This works because actions/setup-dotnet downloads and installs the SDK regardless of what's preinstalled on the runner. Confirmed .NET 10.0.100 SDK is available and builds net10.0 targets successfully. Co-authored-by: pardeike <853584+pardeike@users.noreply.github.com> * Simplify workflow SDK installation to only use .NET 10 Removed dual 9.0.x/10.0.x SDK installation in favor of only installing 10.0.x. The .NET 10 SDK can build all target frameworks including net9.0 and older using targeting packs. This follows the minimal change approach requested. Co-authored-by: pardeike <853584+pardeike@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: pardeike <853584+pardeike@users.noreply.github.com>