* initialize extension pack

* initial release

* CMake

* MIT license

* modify changelog

* modify readme

* version update

* new packages added

Co-authored-by: Sean McManus <seanmcm@microsoft.com>
This commit is contained in:
Elaheh Rashedi 2020-09-03 10:38:04 -07:00 коммит произвёл GitHub
Родитель 6e60876af8
Коммит a177759d3a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 89 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,3 @@
.vscode/**
.vscode-test/**
.gitignore

Просмотреть файл

@ -0,0 +1,16 @@
# C/C++ Extension Pack for Visual Studio Code Change Log
## Version 1.0.0: September 14, 2020
### List of extensions:
* C/C++
* C/C++ Themes
* CMake
* CMake Tools
* Remote Development Extension Pack
* GitHub Pull Requests and Issues
* Visual Studio Codespaces
* LiveShare Extension Pack
* Doxygen Documentation Generator
* Better C++ Syntax

Просмотреть файл

@ -0,0 +1,8 @@
Copyright (c) 2020 Microsoft Corporation
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Двоичные данные
ExtensionPack/LanguageCCPP_color_128x.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 4.7 KiB

13
ExtensionPack/README.md Normal file
Просмотреть файл

@ -0,0 +1,13 @@
# C/C++ Extension Pack
This extension pack includes a set of popular extensions for C++ development in Visual Studio Code:
* [C/C++](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools)
* [C/C++ Themes](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools-themes)
* [CMake](https://marketplace.visualstudio.com/items?itemName=twxs.cmake)
* [CMake Tools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cmake-tools)
* [Remote Development Extension Pack](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack)
* [GitHub Pull Requests and Issues](https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github)
* [Visual Studio Codespaces](https://marketplace.visualstudio.com/items?itemName=ms-vsonline.vsonline)
* [LiveShare Extension Pack](https://marketplace.visualstudio.com/items?itemName=MS-vsliveshare.vsliveshare-pack)
* [Doxygen Documentation Generator](https://marketplace.visualstudio.com/items?itemName=cschlosser.doxdocgen)
* [Better C++ Syntax](https://marketplace.visualstudio.com/items?itemName=jeff-hykin.better-cpp-syntax)

Просмотреть файл

@ -0,0 +1,49 @@
{
"name": "cpptools-extension-pack",
"displayName": "C/C++ Extension Pack",
"description": "Popular extensions for C++ development in Visual Studio Code.",
"publisher": "ms-vscode",
"icon": "LanguageCCPP_color_128x.png",
"readme": "README.md",
"author": {
"name": "Microsoft Corporation"
},
"license": "SEE LICENSE IN LICENSE.txt",
"version": "1.0.0",
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Extension Packs"
],
"keywords": [
"C",
"C++",
"IntelliSense",
"Microsoft",
"color-theme",
"build",
"cmake",
"remote",
"ssh",
"wsl",
"remote",
"codespace",
"liveshare"
],
"extensionPack": [
"ms-vscode.cpptools",
"ms-vscode.cpptools-themes",
"twxs.cmake",
"ms-vscode.cmake-tools",
"ms-vscode-remote.remote-wsl",
"ms-vscode-remote.remote-containers",
"ms-vscode-remote.remote-ssh",
"github.vscode-pull-request-github",
"ms-vsonline.vsonline",
"ms-vsliveshare.vsliveshare",
"ms-vsliveshare.vsliveshare-audio",
"cschlosser.doxdocgen",
"jeff-hykin.better-cpp-syntax"
]
}