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

后端 未结 1 1867
栀梦
栀梦 2020-12-14 11:40

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

相关标签:
1条回答
  • 2020-12-14 12:20

    You don't need an add-in for this.

    Link: http://nickmeldrum.com/blog/how-to-run-powershell-scripts-from-solution-explorer-in-visual-studio-2010

    Copy-pasted blog post...

    Step 1: Adding "run powershell script" as an external tool

    1. In Visual Studio go to the menu: Tools | External Tools
    2. Click the "Add" button
    3. Add the following form values:

      • Title: "Run Powershell script in output window"
      • Command: "C:\windows\system32\windowspowershell\v1.0\powershell.exe"
      • Arguments: " -file "$(ItemPath)"
      • Initial Directory: "$(ItemDir)"
      • Tick "Use Output window"
      • (Close on exit will now be automatically on)
    4. Click the "Apply" button

    5. Click the "Add" button

    6. Add the following form values:

      • Title: "Run powershell script outside of VS"
      • Command: "C:\windows\system32\windowspowershell\v1.0\powershell.exe"
      • Arguments: " -file "$(ItemPath)"
      • Initial Directory: "$(ItemDir)"
      • Don't tick "Use Output window"
      • Tick "Close on exit"
    7. Click the "Ok" button

    They should look something like this:

    Step 2: Weird Step, trust me!

    Check the index position it is in the external tools list. By default mine are at positions 6 and 7. (I think by default Create GUID is no. 1!)

    Step 3: Hook it up to the context menus

    1. Go to the menu: Tools | Customize | Commands
    2. Click the "Context menu" radio option
    3. Scroll down to "Project and Solution Context Menus | Item" (nightmare long menu, type "Proj" to get roughly to the right place)
    4. Click the "Add Command" button
    5. Select the category: "Tools" and Command: "External Command 7" (or whatever your position is you got from the "Weird Step 2")
    6. Hit the "Ok" button
    7. Then to set up the 2nd command:
    8. Select Category: "Tools" and Command: "External Command 8" (or whatever your position is for the other one)
    9. Hit the "Ok" button again
    10. Move them around till you are happy with their order (I usually put them somewhere below "Open With...")

    Step 4: Add your keyboard shortcuts

    1. Go to the menu: Tools | Options
    2. Select the Environment | Keyboard section
    3. Find the Tools.ExternalCommandN item in the list (nightmare long list again, type "Tools" to get you roughly there again)
    4. Select your shortcut key for each command: I like CTRL SHIFT P and CTRL SHIFT ALT P respectively

    0 讨论(0)
提交回复
热议问题