maui-linux/Xamarin.Forms.Xaml/XamlFilePathAttribute.cs

13 строки
309 B
C#

using System;
using System.Runtime.CompilerServices;
namespace Xamarin.Forms.Xaml
{
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
public sealed class XamlFilePathAttribute : Attribute
{
public XamlFilePathAttribute([CallerFilePath] string filePath = "")
{
}
}
}