首页 > 其他 > 详细

VS 小插件编写

时间:2019-08-31 09:07:24      阅读:75      评论:0      收藏:0      [点我收藏+]

本示例把当前文件的 属性的语义注释, 换成[Dispaly(Name="***")]的样式. 

用处: 有很多Export To Excel的Dto对象,需要用Display Attribute显示输出的列名,一个一个的改太麻烦了.

1.新建 vsix工程.

2.参照 https://docs.microsoft.com/en-us/visualstudio/extensibility/adding-a-menu-to-the-visual-studio-menu-bar?view=vs-2019

创建一个菜单项.

3.在命令的Provider.cs中加入

using Microsoft.VisualStudio.Shell;

using System.ComponentModel.Composition;
using EnvDTE80;

 

并改写 Exeute方法

 private void Execute(object sender, EventArgs e)
        {
            ThreadHelper.ThrowIfNotOnUIThread();

            var dte = Package.GetGlobalService(typeof(DTE)) as DTE2;

            var oFind = dte.Find;
            oFind.FindWhat = "(/// <[s/].*)|(\\[.*)";
            oFind.ReplaceWith = "";
            oFind.MatchCase = false;
            oFind.MatchWholeWord = false;
            oFind.PatternSyntax = vsFindPatternSyntax.vsFindPatternSyntaxRegExpr; //regex
            oFind.Target = vsFindTarget.vsFindTargetCurrentDocument; // vsFindTarget.vsFindTargetCurrentDocument;
            oFind.Action = vsFindAction.vsFindActionReplaceAll;
            oFind.Execute();
            oFind.FindWhat = "/// (.*)\\b";
            oFind.ReplaceWith = "[Display(Name=\"$1\")]";
            oFind.Execute();

        }

  做完了,才发现有个 Macros for Visual studio 也可以做同样的事.

只是代码稍改动一下就可以.

dte.ExecuteCommand("Edit.Replace");
var oFind = dte.Find;
oFind.FindWhat = "(/// <[s/].*)|(\\[.*)";
oFind.ReplaceWith = "";
oFind.MatchCase = false;
oFind.MatchWholeWord = false;  
oFind.PatternSyntax = 1; //regex
oFind.Target = 1; // vsFindTarget.vsFindTargetCurrentDocument;

oFind.Action = 4; //vsFindAction.vsFindActionReplaceAll;

oFind.Execute();
oFind.FindWhat = "/// (.*)\\b";
oFind.ReplaceWith = ‘[Display(Name="$1")]‘;
oFind.Action = 4; //vsFindAction.vsFindActionReplaceAll;
oFind.Execute();

  

VS 小插件编写

原文:https://www.cnblogs.com/yangzn/p/11437775.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!