summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/TargetPlatform.cs
blob: ff34d83a5376d601d8fc86bf75bd2558708bc2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Xamarin.Forms
{
	[Obsolete]
	public enum TargetPlatform
	{
		Other,
		iOS,
		Android,
		WinPhone,
		Windows
	}
}