project-template

Create a Visual Studio project programmatically

。_饼干妹妹 提交于 2019-11-28 20:50:31
As my question say I want to create a new project based in a template which already created an tested and works fine, but i have two problems when i tried to do it in C# code (in a mvc3 project). Which are the differences between EnvDTE80, EnvDTE90 and EnvDTE100 because i tried to do this example with EnvDTE100 but it doesn't work because the object handle it's Solution4 not Solution2 and Solution4 doesn't have the same behavior. How can I create the project without use the default path, but an specific folder that i need UPDATE here's the code that works if I used the dll called EnvDTE80

How to make ReSharper re-evaluate its assembly reference highlighting

我的未来我决定 提交于 2019-11-27 16:41:17
I am creating a Prism Project Template, and the template works great. But after I create a project with the template some of the files look like this: Despite appearances, everything is just fine. If I do a Rebuild All I see that the solution builds with no errors: But the rebuild all does not get rid of the "errors" that are showing in the editor window. (Note that the actual error window does not show any errors.) I can clean, rebuild, close and open files, and it will not fix the highlighting. However, if I close the solution and re-open it, all is well : My Question: Ideally there would be

Visual Studio 2017 c++ win32 console project template

南楼画角 提交于 2019-11-27 16:23:40
问题 I am on Visual Studio Community 2017 v. 15.3.1 and I can't seem to find Win32 console application or Win32 project. Still have empty c++ project template and Windows Console Application template. On the start page, I still have win 32 console project available, but if I click it, I get a prompt about removing it from the list EDIT: I have currently installed following Workloads: Universal Windows Platform Net desktop development Desktop development with C++ Game Development with C++ Visual

How to make a new Eclipse project template?

天大地大妈咪最大 提交于 2019-11-27 11:21:38
I am using a kind of framework where every time I make a new Java project. I have to arrange the files in the appropriate packages and reference the appropriate external JAR libraries. How do I make a new project template like in the New Project dialog under a new folder? Nevena You need to write an Eclipse plugin for that, and concentrate on New Project Wizard. About writing Eclipse plugins, it is covered in Stack Overflow question How to write a plugin for Eclipse? . Mark Storer I've just done a bit of research on this for our own nefarious purposes, and found the answer. You need to create

Add an Item to the visual studio folder right-click menu within AddIn

若如初见. 提交于 2019-11-27 02:57:41
问题 I want to add a menuitem to the right-click=>Add menu in visual studio 2012 solution explorer. When click the custom item I can add a project with my template. I developed a Visual Studio Add-In to do it but I get into some trouble. I am able to add a menuitem to the right-click menu but I can't get it to meet my requirement. The menuitem should be the submenu of "Add". Not a root item. I also need the menuitem to show only when I right-click on a folder named "Areas". I don't want it to show

How to make a new Eclipse project template?

▼魔方 西西 提交于 2019-11-26 18:00:14
问题 I am using a kind of framework where every time I make a new Java project. I have to arrange the files in the appropriate packages and reference the appropriate external JAR libraries. How do I make a new project template like in the New Project dialog under a new folder? 回答1: You need to write an Eclipse plugin for that, and concentrate on New Project Wizard. About writing Eclipse plugins, it is covered in Stack Overflow question How to write a plugin for Eclipse? . 回答2: I've just done a bit