From b52a97c92df60930f46c54d1fd2a09a73215574b Mon Sep 17 00:00:00 2001 From: Glenn Watson <5834289+glennawatson@users.noreply.github.com> Date: Tue, 15 Sep 2026 08:31:50 +1000 Subject: [PATCH] fix(build): register interceptor namespaces through the InterceptorsNamespaces property - Set InterceptorsNamespaces instead of appending a second InterceptorsNamespaces entry to Features. - The compiler keeps only the last entry, so the Features form dropped the SDK generators namespaces and, when a project listed its own, the generated one. --- .../build/ReactiveUI.Binding.SourceGenerators.targets | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/ReactiveUI.Binding.SourceGenerators/build/ReactiveUI.Binding.SourceGenerators.targets b/src/ReactiveUI.Binding.SourceGenerators/build/ReactiveUI.Binding.SourceGenerators.targets index 2b622a39..7db4c7ae 100644 --- a/src/ReactiveUI.Binding.SourceGenerators/build/ReactiveUI.Binding.SourceGenerators.targets +++ b/src/ReactiveUI.Binding.SourceGenerators/build/ReactiveUI.Binding.SourceGenerators.targets @@ -62,14 +62,15 @@ <_ReactiveUIBindingInterceptorsNamespaces>$(InterceptorsNamespaces) <_ReactiveUIBindingInterceptorsNamespaces Condition="'$(_ReactiveUIBindingInterceptorsNamespaces)' != ''">$(_ReactiveUIBindingInterceptorsNamespaces); <_ReactiveUIBindingInterceptorsNamespaces>$(_ReactiveUIBindingInterceptorsNamespaces)$(_ReactiveUIBindingInterceptorNamespace) - $(Features);InterceptorsNamespaces=$(_ReactiveUIBindingInterceptorsNamespaces) + $(_ReactiveUIBindingInterceptorsNamespaces)