зеркало из https://github.com/DeGsoft/maui-linux.git
15 строки
337 B
C#
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;
|
|
}
|
|
}
|
|
} |