summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ResolutionGroupNameAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/ResolutionGroupNameAttribute.cs')
-rw-r--r--Xamarin.Forms.Core/ResolutionGroupNameAttribute.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/ResolutionGroupNameAttribute.cs b/Xamarin.Forms.Core/ResolutionGroupNameAttribute.cs
new file mode 100644
index 00000000..eee92e76
--- /dev/null
+++ b/Xamarin.Forms.Core/ResolutionGroupNameAttribute.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Xamarin.Forms
+{
+ [AttributeUsage(AttributeTargets.Assembly)]
+ public class ResolutionGroupNameAttribute : Attribute
+ {
+ public ResolutionGroupNameAttribute(string name)
+ {
+ ShortName = name;
+ }
+
+ internal string ShortName { get; private set; }
+ }
+} \ No newline at end of file