Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Tizen backend #479

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ CarouselView/CarouselView.FormsPlugin.iOS/bin
CarouselView/CarouselView.FormsPlugin.iOS/obj
CarouselView/CarouselView.FormsPlugin.UWP/bin
CarouselView/CarouselView.FormsPlugin.UWP/obj
CarouselView/CarouselView.FormsPlugin.Tizen/bin
CarouselView/CarouselView.FormsPlugin.Tizen/obj
Demo/bin
Demo/obj
Droid/bin
Expand All @@ -14,5 +16,7 @@ iOS/bin
iOS/obj
UWP/bin
UWP/obj
Tizen/bin
Tizen/obj
packages
*.userprefs
*.userprefs
4 changes: 4 additions & 0 deletions CarouselView.sln
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarouselView.FormsPlugin.Ab
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarouselView.FormsPlugin.Abstractions.Portable", "CarouselView\CarouselView.FormsPlugin.Abstractions.Portable\CarouselView.FormsPlugin.Abstractions.Portable.csproj", "{B624A99C-4A92-4308-A197-8C43CF08118B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarouselView.FormsPlugin.Tizen", "CarouselView\CarouselView.FormsPlugin.Tizen\CarouselView.FormsPlugin.Tizen.csproj", "{7AAB29EC-078D-4BF5-BC2A-BE7DCFC36570}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Demo.Tizen", "Tizen\Demo.Tizen.csproj", "{6208344E-6D54-48E4-AE9E-5E3643998478}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
AppStore|Any CPU = AppStore|Any CPU
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>tizen40</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Tizen.NET" Version="4.0.0" />
<PackageReference Include="Xamarin.Forms.Platform.Tizen" Version="2.5.0.121934" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\CarouselView.FormsPlugin.Abstractions\CarouselView.FormsPlugin.Abstractions.csproj" />
</ItemGroup>

</Project>
Loading