miniSql

创建
zgc123@gmail.com authored at 11/19/2023 1:40:15 AM
414.00 B
Loader.cs
using System;
using $safeprojectname$.Commands;
using MiniSqlQuery.Core;

namespace $safeprojectname$
{
	public class Loader : PluginLoaderBase
	{
		public Loader() : base(
			"My Plugin Name", 
			"My Plugin Description.")
		{
		}

		public override void InitializePlugIn()
		{
			Services.HostWindow.AddPluginCommand<SampleCommand>();
			Services.HostWindow.AddToolStripCommand<SampleCommand>(null);
		}
	}
}