xamarin-macios/tools/linker/BaseProfile.cs

14 строки
351 B
C#
Исходник Обычный вид История

2016-04-21 15:57:02 +03:00
// Copyright 2013 Xamarin Inc. All rights reserved.
using Mono.Tuner;
namespace Xamarin.Linker {
// note: XamMac 1.x does not offer the mobile profile so we need a base class to MobileProfile
public abstract class BaseProfile : Profile {
// return assembly name without extension (.dll)
public abstract string ProductAssembly { get ; }
}
}