using EnvDTE; namespace GitPluginShared.Commands { public sealed class GitIgnore : ItemCommandBase { protected override void OnExecute(SelectedItem item, string fileName, OutputWindowPane pane) { RunGitEx("gitignore", fileName); } protected override CommandTarget SupportedTargets { get { return CommandTarget.Any; } } } }