From 18d2d3a2b1e0ffeb3aa6fe477601a30c8b9c546a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 7 Jun 2007 06:19:23 +0000 Subject: [PATCH] added admin plugin to the core package --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40917 --- tools/builder/PkgCore.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/builder/PkgCore.cs b/tools/builder/PkgCore.cs index 448a51c9..1dbbf1eb 100644 --- a/tools/builder/PkgCore.cs +++ b/tools/builder/PkgCore.cs @@ -126,10 +126,11 @@ namespace builder */ public override Plugin [] GetPlugins() { - Plugin [] plugins = new Plugin[2]; + Plugin [] plugins = new Plugin[3]; plugins[0] = new Plugin("admin-auth"); plugins[1] = new Plugin("admin-flatfile", "admin-flatfile"); + plugins[2] = new Plugin("basecommands"); return plugins; }