xamarin-macios/tools/mmp/Application.mmp.cs

25 строки
592 B
C#

using System;
using System.Linq;
namespace Xamarin.Bundler {
public partial class Application {
public string ProductName = "Xamarin.Mac";
public AOTOptions AOTOptions;
// Use this to get the single Abi we currently support for Xamarin.Mac.
// This makes it easy to find everywhere we need to update when Apple adds support for new Abis.
public Abi Abi { get { return Abis.First (); } }
internal void Initialize ()
{
if (DeploymentTarget is null)
DeploymentTarget = SdkVersions.MinOSXVersion;
}
void SelectRegistrar ()
{
Driver.SelectRegistrar ();
}
}
}