summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Build.Tasks/ILRootNode.cs
blob: b50d6204c52388e12d51fde5fb4042b8469e93d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Mono.Cecil;
using Xamarin.Forms.Xaml;

namespace Xamarin.Forms.Build.Tasks
{
	class ILRootNode : RootNode
	{
		public ILRootNode(XmlType xmlType, TypeReference typeReference) : base(xmlType)
		{
			TypeReference = typeReference;
		}

		public TypeReference TypeReference { get; private set; }
	}
}