Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Added implementation for Tizen.Net #72

Merged
merged 17 commits into from
Nov 2, 2017
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ dlldata.c
# DNX
project.lock.json
artifacts/
*.project.lock.json

*_i.c
*_p.c
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Get started by reading through the [Settings Plugin documentation](https://james
|Xamarin.Mac|All|
|Xamarin.tvOS|All|
|Xamarin.watchOS|All|
|Tizen.NET|3.0+|
|.NET 4.5|All|


Expand Down
20 changes: 10 additions & 10 deletions nuget/Plugin.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,15 @@
<description>
Settings Plugin for Xamarin and Windows provides a consistent, cross platform settings/preferences plugin.

Support for: Int, Int64, Double, String, DateTime, Bool, Float, Decimal, Guid

This makes it easier to create cross-platform .NET apps and have cross platform settings.
Manage and use all settings from one PCL/NetStandard library and save natively on each platform.

**This plugin stores settings natively on each platform and does NOT save them to Json.
This allows you to use native functionality such as PreferenceActivity on Android.

Support for: Int, Int64, Double, String, DateTime, Bool, Float, Decimal, Guid

You can always serialize and deserialize a string out if needed.**
</description>
<summary>Cross platform settings for Xamarin.iOS, Xamarin.Android, Xamarin.Mac, Xamarin.Forms, and Windows</summary>
<tags>xamarin, settings, preferences, nsuserdefaults, pcl, xam.pcl, plugin for xamarin, plugin, settings, windows phone, winphone, wp8, winrt, android, xamarin.forms, ios, monoandroid, monodroid, monotouch, mvvmcross</tags>
<summary>Cross platform settings for Xamarin.iOS, Xamarin.Android, Xamarin.Mac, Xamarin.Forms, Tizen.NET and Windows</summary>
<tags>xamarin, settings, preferences, nsuserdefaults, pcl, xam.pcl, plugin for xamarin, plugin, settings, windows phone, winphone, wp8, winrt, android, xamarin.forms, ios, monoandroid, monodroid, monotouch, tizen.net, mvvmcross</tags>
<dependencies>
<group targetFramework="net">
</group>
Expand Down Expand Up @@ -53,13 +50,13 @@
</group>
<group targetFramework="xamarinwatchos">
</group>
<group targetFramework="Tizen30">
</group>
</dependencies>
<releaseNotes>
See Changelog: https://github.com/jamesmontemagno/SettingsPlugin/blob/master/CHANGELOG.md
</releaseNotes>

</metadata>

<files>
<file src="nuget\readme.txt" target="readme.txt"/>

Expand Down Expand Up @@ -94,7 +91,10 @@
<!--Xamarin.watchOS -->
<file src="src\Plugin.Settings.watchOS\bin\Release\Plugin.Settings.*" target="lib\xamarinwatchOS" />
<file src="files\SettingsPlatform.cs.pp" target="content\xamarinwatchOS\Helpers\Settings.cs.pp" />


<!-- Tizen.NET Support -->
<file src="src\Plugin.Settings.Tizen\bin\Release\Plugin.Settings.*" target="lib\tizen30\Plugin.Settings.dll" />
<file src="files\SettingsPlatform.cs.pp" target="content\tizen30\Helpers\Settings.cs.pp" />

</files>
</package>
20 changes: 20 additions & 0 deletions src/Plugin.Settings.Tizen/Plugin.Settings.Tizen.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>tizen40</TargetFramework>
<RootNamespace>Plugin.Settings</RootNamespace>
<AssemblyName>Plugin.Settings</AssemblyName>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MSBuild.Sdk.Extras" Version="1.1.0" PrivateAssets="All" />
<PackageReference Include="Tizen.NET" Version="3.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Plugin.Settings.Abstractions\Plugin.Settings.Abstractions.csproj" />
</ItemGroup>

<Import Project="..\Plugin.Settings.Shared\Plugin.Settings.Shared.projitems" Label="Shared" />
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />
</Project>
Loading