Skip to content

Commit c7d3204

Browse files
committedDec 18, 2016
Added license and nuspec
1 parent f9bd6cf commit c7d3204

File tree

6 files changed

+54
-1
lines changed

6 files changed

+54
-1
lines changed
 

‎.vs/Xamanimation/v14/.suo

-263 KB
Binary file not shown.

‎LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎Media/Logo.64x64.png

997 Bytes
Loading
File renamed without changes.

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Xamanimation** is a portable library designed for Xamarin.Forms that aims to facilitate the use of **animations** to developers. Very simple use from **C# and XAML** code.
44

5-
![](xamanimation.gif)
5+
![](Media/xamanimation.gif)
66

77
We can define animations in XAML to a visual element when loading through a Behavior, use a trigger in XAML to execute the animation or from C# code.
88

‎Xamanimation.nuspec

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata minClientVersion="2.8.1">
4+
<id>Xamanimation</id>
5+
<version>$version$</version>
6+
<title>Animations library for Xamarin Forms</title>
7+
<authors>Javier Suárez Ruiz</authors>
8+
<owners>Javier Suárez Ruiz</owners>
9+
<projectUrl>https://github.com/jsuarezruiz/Xamanimation</projectUrl>
10+
<licenseUrl>https://github.com/jsuarezruiz/Xamanimation/blob/master/LICENSE</licenseUrl>
11+
<iconUrl>https://github.com/jsuarezruiz/Xamanimation/blob/master/Media/Logo.64x64.png</iconUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>
14+
Animations library for Xamarin Forms
15+
Built against: 2.3.2.127
16+
</description>
17+
<summary>Animations for Xamarin.Forms for iOS, Android & Windows</summary>
18+
<tags>community, xamarin, pcl, android, xamarin.forms, ios, uwp, animations, transitions</tags>
19+
<dependencies>
20+
<dependency id="Xamarin.Forms" version="2.3.2.127" />
21+
</dependencies>
22+
<releaseNotes>
23+
</releaseNotes>
24+
</metadata>
25+
<files>
26+
<!--Core-->
27+
<file src="Xamanimation/Xamanimation/bin/Release/Xamanimation.dll" target="lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamanimation.dll" />
28+
<file src="Xamanimation/Xamanimation/bin/Release/Xamanimation.pdb" target="lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamanimation.pdb" />
29+
<file src="Xamanimation/Xamanimation/bin/Release/Xamanimation.xml" target="lib/portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20/Xamanimation.xml" />
30+
<file src=".\src\**\*.cs" target="src" />
31+
</files>
32+
</package>

0 commit comments

Comments
 (0)
Please sign in to comment.