This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[iCarousel 1.8.1] Update iCarousel port to support unified api
- Loading branch information
Nicolas VERINAUD
committed
Jan 8, 2015
1 parent
415753d
commit 9d2989e
Showing
23 changed files
with
4,998 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// Author: | ||
// Nicolas VERINAUD <n.verinaud@gmail.com> | ||
// | ||
// Copyright (c) 2015 Nicolas Verinaud. All Rights Reserved. | ||
// | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
|
||
// Information about this assembly is defined by the following attributes. | ||
// Change them to the values specific to your project. | ||
|
||
[assembly: AssemblyTitle("iCarouselSDK")] | ||
[assembly: AssemblyDescription("Mono port of iCarousel library https://github.com/nicklockwood/iCarousel")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyCopyright("")] | ||
[assembly: AssemblyVersion("1.8.1")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,5 +34,4 @@ public enum iCarouselOption | |
FadeMax, | ||
FadeRange | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 11.00 | ||
# Visual Studio 2010 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "iCarouselSDK", "iCarouselSDK.csproj", "{7FCFB195-20C9-41D2-99FC-B6CA70BF256D}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{7FCFB195-20C9-41D2-99FC-B6CA70BF256D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{7FCFB195-20C9-41D2-99FC-B6CA70BF256D}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{7FCFB195-20C9-41D2-99FC-B6CA70BF256D}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{7FCFB195-20C9-41D2-99FC-B6CA70BF256D}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(MonoDevelopProperties) = preSolution | ||
version = 1.8.1 | ||
EndGlobalSection | ||
EndGlobal |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
using System; | ||
using MonoTouch.ObjCRuntime; | ||
using ObjCRuntime; | ||
|
||
[assembly: LinkWith ("libiCarousel.a", LinkTarget.ArmV7 | LinkTarget.ArmV7s | LinkTarget.Simulator, Frameworks = "QuartzCore CoreGraphics", ForceLoad = true)] | ||
[assembly: LinkWith ("libiCarousel.a", LinkTarget.ArmV7 | LinkTarget.ArmV7s | LinkTarget.Arm64 | LinkTarget.Simulator, Frameworks = "QuartzCore CoreGraphics", ForceLoad = true)] |
Oops, something went wrong.