12 lines
322 B
C#
12 lines
322 B
C#
using Mono.Addins;
|
|
|
|
namespace MonoDevelop.GtkSharp.Addin
|
|
{
|
|
public class CheckMissing : ConditionType
|
|
{
|
|
public override bool Evaluate(NodeElement conditionNode)
|
|
{
|
|
return AddinManager.GetExtensionNode("/MonoDevelop/Ide/ProjectTemplateCategories/crossplat/app") == null;
|
|
}
|
|
}
|
|
}
|