From 3c00c24fcd777969c8365720dd112688742cda4d Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 8 Jan 2023 08:26:27 +1000 Subject: [PATCH] Fix `ApiInjector` trying to set get-only props of type `ApiContainer` --- src/BizHawk.Client.Common/Api/ApiInjector.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/BizHawk.Client.Common/Api/ApiInjector.cs b/src/BizHawk.Client.Common/Api/ApiInjector.cs index 5f0587417a..5ae04eac19 100644 --- a/src/BizHawk.Client.Common/Api/ApiInjector.cs +++ b/src/BizHawk.Client.Common/Api/ApiInjector.cs @@ -35,8 +35,12 @@ namespace BizHawk.Client.Common Type targetType = target.GetType(); object[] tmp = new object[1]; - targetType.GetProperties(ReflectionExtensions.DI_TARGET_PROPS).FirstOrDefault(pi => pi.PropertyType == typeof(ApiContainer)) - ?.SetValue(target, source.Container); + foreach (var mi in targetType.GetProperties(ReflectionExtensions.DI_TARGET_PROPS) + .Where(static pi => pi.PropertyType == typeof(ApiContainer)) + .Select(static pi => pi.SetMethod)) + { + mi?.Invoke(target, new object[] { source.Container }); + } foreach (var propinfo in targetType.GetPropertiesWithAttrib(typeof(RequiredApiAttribute))) {