“Visual Studio Integration Package” vs “Visual Studio Add-in”: what is the difference?

后端 未结 3 1941
傲寒
傲寒 2020-12-14 15:18

When creating a new extension for visual studio, there are two project options: \"Visual Studio Integration Package\" and \"Visual Studio Add-in\". What is the difference b

3条回答
  •  抹茶落季
    2020-12-14 15:59

    An integration package is something that can be chosen when you start a new project (like how you pick C# or VB).

    See http://www.bitwisemag.com/copy/features/dev/visual_studio/vs2005_integration_1.html.

    Add-ins work just like they would for MS Office applications. You can add your own custom buttons and menu items. Here is an example: http://www.c-sharpcorner.com/UploadFile/mgold/AddIns11292005015631AM/AddIns.aspx.

提交回复
热议问题