在这段代码中,在我的插件中,我正在为Vs2010而努力
_applicationObject.ItemOperations.NewFile( "General\\Text File", FileName, Constants.vsViewKindCode );
第一个参数被定义为文件的虚拟位置。
http://msdn.microsoft.com/en-us/library/envdte.itemoperations.newfile(v=vs.80).aspx
它只是一个带路径的字符串,从我的解决方案的根源开始吗?
如果我想将文件放在/+“.CV”中,我怎么能这样做?
我在读取宏的同时阅读了一些创建文件的位置,并查看宏的内容。 说@“Visual C#Items \ Code \ Class”。
但是当我跑步时,说无法找到模板。
谢谢,
埃里克 -
答案 0 :(得分:1)
我实际上用过这个
DTE.ItemOperations.AddNewItem("General\Text File")
这是从我从宏编辑器中得到的改编而来的
DTEObj.ItemOperations.AddNewItem(@"Visual C# Items\WPF\User Control (WPF)", filename + ".xaml");
所以在你的情况下试一试
DTEObj.ItemOperations.AddNewItem("General\Text File");