├── README.md └── LICENSE /README.md: -------------------------------------------------------------------------------- 1 | # Add Your Extension to the Community Extensions list 2 | 3 | We are looking for open source extensions to add to the Community Extension list. To add your extension, submit a Pull request on the index.html file in the gh-pages branch. To easily find the list, search for "CommunityExtensionList". 4 | 5 | # Create your own extensions for Visual Studio 6 | 7 | Visual Studio is a fully extensible development platform. In addition to all of the powerful tools that it provides, you can also use tools written by the community as well as create your own tools. Visual Studio Extensions empower you to extend almost every part of Visual Studio: 8 | 9 | * Add menu items and toolbars items that activate functionality you build 10 | * Create tool windows that offer entirely new functionality 11 | * Provide IntelliSense for emerging programming languages 12 | * Offer light bulbs that help developers write better code 13 | * Integrate new project types into Visual Studio 14 | 15 | For more information check out our [project page!] (http://microsoft.github.io/extendvs/) 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Microsoft 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | --------------------------------------------------------------------------------