summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/ExportRendererAttribute.cs
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2016-12-16 11:00:07 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-04-24 13:36:43 +0900
commit18ad8a74707a1b36581f7123be74d2b34510e016 (patch)
tree92eeac43c2cd01690a321a80e123e957053c4d7d /Xamarin.Forms.Platform.Tizen/ExportRendererAttribute.cs
parent80e5482487f8a37d89b620f54f4ff3c12bcc5b83 (diff)
downloadxamarin-forms-18ad8a74707a1b36581f7123be74d2b34510e016.tar.gz
xamarin-forms-18ad8a74707a1b36581f7123be74d2b34510e016.tar.bz2
xamarin-forms-18ad8a74707a1b36581f7123be74d2b34510e016.zip
Add Tizen backend renderer
- Xamarin.Forms.Platform.Tizen has been added - Xamarin.Forms.Maps.Tizen has been added - RPM build spec has been added Change-Id: I0021e0f040d97345affc87512ee0f6ce437f4e6d
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/ExportRendererAttribute.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/ExportRendererAttribute.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/ExportRendererAttribute.cs b/Xamarin.Forms.Platform.Tizen/ExportRendererAttribute.cs
new file mode 100644
index 00000000..9af8019f
--- /dev/null
+++ b/Xamarin.Forms.Platform.Tizen/ExportRendererAttribute.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace Xamarin.Forms.Platform.Tizen
+{
+ [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
+ public sealed class ExportRendererAttribute : HandlerAttribute
+ {
+ public ExportRendererAttribute(Type handler, Type target) : base(handler, target)
+ {
+ }
+ }
+}