summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Build.Tasks/ILRootNode.cs
blob: 1c59cd3cdfea4aa11a64ac15fa002015532d4c0a (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, null)
		{
			TypeReference = typeReference;
		}

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