mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 08:15:38 +00:00
13 lines
322 B
C#
13 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;
|
|
}
|
|
}
|
|
}
|