From 3f2ba0f63ab10805dd3c9657d26ac65c0ca3ef5c Mon Sep 17 00:00:00 2001 From: Marcel Juen Date: Fri, 9 Aug 2019 19:40:14 +0200 Subject: [PATCH] Added missing NETCOREAPP for conditional code --- src/Caliburn.Micro.Platform/ConventionManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 };