From 18aa4b839347e922335cd15fbb0727dc164b02d5 Mon Sep 17 00:00:00 2001 From: michael-hawker <24302614+michael-hawker@users.noreply.github.com> Date: Mon, 10 Jul 2023 16:15:24 -0700 Subject: [PATCH] Target Uno for the Behaviors.Animations package Didn't see it working on Uno, but not sure if related to #119 or issue with caching or something... Will have to add another sample and see after? --- components/Behaviors.Animations/src/MultiTarget.props | 4 ++-- components/Behaviors.Animations/src/StartAnimationAction.cs | 2 +- components/Behaviors.Animations/src/StopAnimationAction.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/Behaviors.Animations/src/MultiTarget.props b/components/Behaviors.Animations/src/MultiTarget.props index 6a460034..c780abff 100644 --- a/components/Behaviors.Animations/src/MultiTarget.props +++ b/components/Behaviors.Animations/src/MultiTarget.props @@ -4,6 +4,6 @@ MultiTarget is a custom property that indicates which target a project is designed to be built for / run on. Used to create project references, generate solution files, enable/disable TargetFrameworks, and build nuget packages. --> - uwp;wasdk; + uwp;wasdk;wpf;wasm;linuxgtk;macos;ios;android; - \ No newline at end of file + diff --git a/components/Behaviors.Animations/src/StartAnimationAction.cs b/components/Behaviors.Animations/src/StartAnimationAction.cs index 890326fc..420167de 100644 --- a/components/Behaviors.Animations/src/StartAnimationAction.cs +++ b/components/Behaviors.Animations/src/StartAnimationAction.cs @@ -10,7 +10,7 @@ namespace CommunityToolkit.WinUI.Behaviors; /// /// An implementation that can trigger a target instance. /// -public sealed class StartAnimationAction : DependencyObject, IAction +public sealed partial class StartAnimationAction : DependencyObject, IAction { /// /// Gets or sets the linked instance to invoke. diff --git a/components/Behaviors.Animations/src/StopAnimationAction.cs b/components/Behaviors.Animations/src/StopAnimationAction.cs index 07448c2a..cd20cb40 100644 --- a/components/Behaviors.Animations/src/StopAnimationAction.cs +++ b/components/Behaviors.Animations/src/StopAnimationAction.cs @@ -10,7 +10,7 @@ namespace CommunityToolkit.WinUI.Behaviors; /// /// An implementation that can stop a target instance. /// -public sealed class StopAnimationAction : DependencyObject, IAction +public sealed partial class StopAnimationAction : DependencyObject, IAction { /// /// Gets or sets the linked instance to stop.