From f97948d693b6b9389c0f64e1bd7580565007aea0 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Tue, 7 May 2024 20:00:57 +0200 Subject: [PATCH] [net9.0] Fix boolean condition to determine whether dynamic code is supported or not. Fixes #dotnet/runtime@101840. (#20563) Dynamic code is not supported if the interpreter is not enabled, and the interpreter is not enabled if the MtouchInterpreter property is *empty*. This regression was introduced in #19812. Fixes https://github.com/dotnet/runtime/issues/101840. --- dotnet/targets/Xamarin.Shared.Sdk.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/targets/Xamarin.Shared.Sdk.targets b/dotnet/targets/Xamarin.Shared.Sdk.targets index ee82a3526d..4e1b0fa3e9 100644 --- a/dotnet/targets/Xamarin.Shared.Sdk.targets +++ b/dotnet/targets/Xamarin.Shared.Sdk.targets @@ -144,7 +144,7 @@ false true - false + false <_ComObjectDescriptorSupport Condition="'$(_ComObjectDescriptorSupport)' == ''">false