Skip to content

Commit

Permalink
housekeeeping: Change blend SDK to use official microsoft version. (r…
Browse files Browse the repository at this point in the history
  • Loading branch information
glennawatson authored Jun 13, 2019
1 parent ee5d742 commit a8d1439
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/ReactiveUI.Blend/FollowObservableStateBehavior.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#else
using System.Windows;
using System.Windows.Controls;
using System.Windows.Interactivity;
using Microsoft.Xaml.Behaviors;
#endif

#pragma warning disable SA1201 // A field should not follow a property - macro if statements make this hard
Expand Down
2 changes: 1 addition & 1 deletion src/ReactiveUI.Blend/Platforms/net461/ObservableTrigger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using System.Reactive.Linq;
using System.Text;
using System.Windows;
using System.Windows.Interactivity;
using Microsoft.Xaml.Behaviors;

namespace ReactiveUI.Blend
{
Expand Down
2 changes: 1 addition & 1 deletion src/ReactiveUI.Blend/ReactiveUI.Blend.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="PresentationFramework.Aero" />
<PackageReference Include="Expression.Blend.Sdk" Version="1.0.2" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.0.1" />
</ItemGroup>

<ItemGroup Condition=" $(TargetFramework.StartsWith('uap')) ">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[assembly: System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName=".NET Framework 4.6.1")]
namespace ReactiveUI.Blend
{
public class FollowObservableStateBehavior : System.Windows.Interactivity.Behavior<System.Windows.FrameworkElement>
public class FollowObservableStateBehavior : Microsoft.Xaml.Behaviors.Behavior<System.Windows.FrameworkElement>
{
public static readonly System.Windows.DependencyProperty StateObservableProperty;
public static readonly System.Windows.DependencyProperty TargetObjectProperty;
Expand All @@ -12,7 +12,7 @@ namespace ReactiveUI.Blend
protected override void OnDetaching() { }
protected static void OnStateObservableChanged(System.Windows.DependencyObject sender, System.Windows.DependencyPropertyChangedEventArgs e) { }
}
public class ObservableTrigger : System.Windows.Interactivity.TriggerBase<System.Windows.FrameworkElement>
public class ObservableTrigger : Microsoft.Xaml.Behaviors.TriggerBase<System.Windows.FrameworkElement>
{
public static readonly System.Windows.DependencyProperty ObservableProperty;
public ObservableTrigger() { }
Expand Down

0 comments on commit a8d1439

Please sign in to comment.