summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ProvideCompiledAttribute.cs
blob: f8e261bab32c4a8bec0a0214f49a46c3d78dbae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
		}
	}
}