diff --git a/src/Caliburn.Micro.Platform/ConventionManager.cs b/src/Caliburn.Micro.Platform/ConventionManager.cs index 0d01062b..6e9071bf 100644 --- a/src/Caliburn.Micro.Platform/ConventionManager.cs +++ b/src/Caliburn.Micro.Platform/ConventionManager.cs @@ -177,7 +177,7 @@ public static class ConventionManager { /// Determines whether a custom update source trigger should be applied to the binding. /// public static Action ApplyUpdateSourceTrigger = (bindableProperty, element, binding, info) => { -#if WINDOWS_UWP || NET +#if WINDOWS_UWP || NET || NETCOREAPP binding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged; #endif };