maui-linux/Xamarin.Forms.Core/ProvideCompiledAttribute.cs

15 строки
337 B
C#

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;
}
}
}