How to call Add New Item window inside an Visual Studio Extension -
i developing visual studio extension. part of need call "add new item" window of visual studio.
after prompting need user input file name.
how achieve ?
i got code. job
 var type = typeof(vsconstants.vsstd97cmdid);          var commandid = new commandid(type.guid, (int)vsconstants.vsstd97cmdid.addclass);          var olemenucommandservice = getservice(typeof(imenucommandservice)) olemenucommandservice;          olemenucommandservice.globalinvoke(commandid);   reference :- link here

Comments
Post a Comment