summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ProvideCompiledAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/ProvideCompiledAttribute.cs')
-rw-r--r--Xamarin.Forms.Core/ProvideCompiledAttribute.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/ProvideCompiledAttribute.cs b/Xamarin.Forms.Core/ProvideCompiledAttribute.cs
new file mode 100644
index 00000000..f8e261ba
--- /dev/null
+++ b/Xamarin.Forms.Core/ProvideCompiledAttribute.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Xamarin.Forms.Xaml
+{
+ [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
+ sealed class ProvideCompiledAttribute : Attribute
+ {
+ public string CompiledVersion { get; }
+
+ public ProvideCompiledAttribute (string compiledVersion)
+ {
+ CompiledVersion = compiledVersion;
+ }
+ }
+} \ No newline at end of file