Skip to content

Commit

Permalink
Fixed an extension method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio0694 committed Jun 20, 2017
1 parent 44fefba commit de9a5f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions UICompositionAnimations/CompositionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -854,8 +854,8 @@ void Handler(object s, RoutedEventArgs e)
/// <param name="clipOffsetX">The optional horizontal offset of the clip area of the shadow</param>
/// <param name="clipOffsetY">The optional vertical offset of the clip area of the shadow</param>
/// <returns>The <see cref="SpriteVisual"/> object that hosts the shadow, and the <see cref="DropShadow"/> itself</returns>
public static (SpriteVisual, DropShadow) GetVisualShadow(
[NotNull] FrameworkElement element, [NotNull] UIElement target, bool apply,
public static (SpriteVisual, DropShadow) AttachVisualShadow(
[NotNull] this FrameworkElement element, [NotNull] UIElement target, bool apply,
float? width, float? height,
Color color, float opacity,
float offsetX = 0, float offsetY = 0,
Expand Down
2 changes: 1 addition & 1 deletion UICompositionAnimations/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.0.0")]
[assembly: AssemblyVersion("2.3.1.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: ComVisible(false)]
4 changes: 2 additions & 2 deletions UICompositionAnimations/UICompositionAnimations.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<package >
<metadata>
<id>Sergio0694.UWP.UICompositionAnimations</id>
<version>2.3.0.0</version>
<version>2.3.1.0</version>
<title>UICompositionAnimations</title>
<description>A wrapper UWP PCL to work with Windows.UI.Composition and XAML animations, and Win2D effects</description>
<authors>Sergio Pedri</authors>
<owners>Sergio Pedri</owners>
<projectUrl>https://github.com/Sergio0694/UICompositionAnimations</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>Added a drop shadow extension method, code refactorings</releaseNotes>
<releaseNotes>Fixed an extension method signature</releaseNotes>
<copyright>Copyright 2017</copyright>
<tags>uwp composition animations xaml csharp windows winrt universal app ui win2d graphics</tags>
</metadata>
Expand Down

0 comments on commit de9a5f3

Please sign in to comment.