Skip to content

Commit

Permalink
Added missing NETCOREAPP for conditional code
Browse files Browse the repository at this point in the history
  • Loading branch information
mjuen committed Aug 9, 2019
1 parent d4c56f3 commit 3f2ba0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Caliburn.Micro.Platform/ConventionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public static class ConventionManager {
/// Determines whether a custom update source trigger should be applied to the binding.
/// </summary>
public static Action<DependencyProperty, DependencyObject, Binding, PropertyInfo> ApplyUpdateSourceTrigger = (bindableProperty, element, binding, info) => {
#if WINDOWS_UWP || NET
#if WINDOWS_UWP || NET || NETCOREAPP
binding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
#endif
};
Expand Down

0 comments on commit 3f2ba0f

Please sign in to comment.