From 6590d905cf716d9e7b94f2d7c14de04c2b1b1e86 Mon Sep 17 00:00:00 2001 From: Alex J Lennon Date: Mon, 9 Feb 2026 00:04:19 +0000 Subject: [PATCH] layer.conf: set dotnet 10.0.100 as default preferred version Add PREFERRED_VERSION_dotnet and PREFERRED_VERSION_dotnet-native defaulting to 10.0.100 (.NET 10) now that the recipe is available. Uses weak assignment (?=) so users can override in local.conf. Co-authored-by: Cursor --- conf/layer.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conf/layer.conf b/conf/layer.conf index 61f503d..d0a4b5b 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -13,6 +13,9 @@ BBFILE_PRIORITY_mono = "5" PREFERRED_VERSION_mono ?= "6.12.0.206" PREFERRED_VERSION_mono-native ?= "6.12.0.206" +PREFERRED_VERSION_dotnet ?= "10.0.100" +PREFERRED_VERSION_dotnet-native ?= "10.0.100" + PREFERRED_VERSION_libgdiplus ?= "6.0.5" PREFERRED_VERSION_libgdiplus-native ?= "6.0.5"