• 大小: 0.06M
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2021-02-25
  • 语言: C#
  • 标签: C#  插件  格式化  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel.Design;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using EnvDTE;
using EnvDTE80;
using Microsoft.VisualStudio.Shell;


namespace Richbiz.BatchFormat
{
    [PackageRegistration(UseManagedResourcesOnly = true)]
    [InstalledProductRegistration(“#110“ “#112“ “1.0“ IconResourceID = 400)]
    [ProvideOptionPageAttribute(typeof(OptionPage) “BatchFormat“ “General“ 101 106 true)]
    [ProvideMenuResource(“Menus.ctmenu“ 1)]
    [Guid(GuidList.GuidBatchFormatPkgString)]
    public sealed class BatchFormatPackage : Package
    {
        private DTE2 dte = null;
        private PkgCmdIDList selectedMenu = PkgCmdIDList.Null;
        private List lstAlreadyOpenFiles = new List();
        private List lstExcludeEndsWith = null;
        private OutputWindowPane myOutPane = null;
        private int count;

        protected ove

评论

共有 条评论