xamarin-macios/tests/xharness/TestImporter/Platform.cs

21 строка
356 B
C#

namespace Xharness.TestImporter {
/// <summary>
/// Represents the supported platforms to which we can create projects.
/// </summary>
public enum Platform {
iOS,
WatchOS,
TvOS,
MacOSFull,
MacOSModern,
}
/// <summary>
/// Represents the different types of wathcOS apps.
/// </summary>
public enum WatchAppType {
App,
Extension
}
}