summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml/XamlFilePathAttribute.cs
blob: 615f290b73a4bd44b0347db5e0bf67e2d5632d2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Runtime.CompilerServices;

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