chore: Change extension info after release by Microsoft (#901)

This commit is contained in:
Shi Chen 2021-09-22 15:25:35 +08:00 коммит произвёл GitHub
Родитель e6831da9db
Коммит d288ef0c11
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 4 добавлений и 5 удалений

2
.vscode/extensions.json поставляемый
Просмотреть файл

@ -8,7 +8,7 @@
"sonarsource.sonarlint-vscode", "sonarsource.sonarlint-vscode",
"zxh404.vscode-proto3", "zxh404.vscode-proto3",
"streetsidesoftware.code-spell-checker", "streetsidesoftware.code-spell-checker",
"richardwillis.vscode-gradle", "vscjava.vscode-gradle",
"esbenp.prettier-vscode" "esbenp.prettier-vscode"
] ]
} }

2
API.md
Просмотреть файл

@ -19,7 +19,7 @@ npm install vscode-gradle --save
import * as util from "util"; import * as util from "util";
import { ExtensionApi as GradleApi, RunTaskOpts, Output } from "vscode-gradle"; import { ExtensionApi as GradleApi, RunTaskOpts, Output } from "vscode-gradle";
const extension = vscode.extensions.getExtension("richardwillis.vscode-gradle"); const extension = vscode.extensions.getExtension("vscjava.vscode-gradle");
const gradleApi = extension!.exports as GradleApi; const gradleApi = extension!.exports as GradleApi;
const runTaskOpts: RunTaskOpts = { const runTaskOpts: RunTaskOpts = {
projectFolder: "/absolute/path/to/project/root", projectFolder: "/absolute/path/to/project/root",

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

@ -1,10 +1,9 @@
# Gradle Tasks # Gradle Tasks
[![Visual Studio Marketplace Installs](https://img.shields.io/visual-studio-marketplace/i/richardwillis.vscode-gradle)](https://marketplace.visualstudio.com/items?itemName=richardwillis.vscode-gradle) [![Visual Studio Marketplace Installs](https://img.shields.io/visual-studio-marketplace/i/vscjava.vscode-gradle)](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-gradle)
[![Build & Publish](https://github.com/microsoft/vscode-gradle/workflows/Build%20&%20Publish/badge.svg)](https://github.com/microsoft/vscode-gradle/actions/workflows/main.yml?query=workflow%3A%22%5C%22Build%22) [![Build & Publish](https://github.com/microsoft/vscode-gradle/workflows/Build%20&%20Publish/badge.svg)](https://github.com/microsoft/vscode-gradle/actions/workflows/main.yml?query=workflow%3A%22%5C%22Build%22)
[![CodeQL](https://github.com/microsoft/vscode-gradle/workflows/CodeQL/badge.svg)](https://github.com/microsoft/vscode-gradle/actions?query=workflow%3ACodeQL) [![CodeQL](https://github.com/microsoft/vscode-gradle/workflows/CodeQL/badge.svg)](https://github.com/microsoft/vscode-gradle/actions?query=workflow%3ACodeQL)
[![GitHub bug issues](https://img.shields.io/github/issues/microsoft/vscode-gradle/bug?label=bug%20reports)](https://github.com/microsoft/vscode-gradle/issues?q=is%3Aissue+is%3Aopen+label%3Abug) [![GitHub bug issues](https://img.shields.io/github/issues/microsoft/vscode-gradle/bug?label=bug%20reports)](https://github.com/microsoft/vscode-gradle/issues?q=is%3Aissue+is%3Aopen+label%3Abug)
This VS Code extension provides a visual interface for your Gradle build. It supports whatever Gradle supports and is language agnostic, but can work nicely alongside other extensions like the [Java language support extension](https://github.com/redhat-developer/vscode-java). This VS Code extension provides a visual interface for your Gradle build. It supports whatever Gradle supports and is language agnostic, but can work nicely alongside other extensions like the [Java language support extension](https://github.com/redhat-developer/vscode-java).
![Gradle Tasks Screencast](images/screencast.gif) ![Gradle Tasks Screencast](images/screencast.gif)

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

@ -1,5 +1,5 @@
# VS Code Gradle Tasks - Preview # VS Code Gradle Tasks - Preview
This is the preview release of Gradle Tasks. The stable release can be found here: https://marketplace.visualstudio.com/items?itemName=richardwillis.vscode-gradle This is the preview release of Gradle Tasks. The stable release can be found here: https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-gradle
This version is only used for BETA testing of unstable features and is likely to be broken. This version is only used for BETA testing of unstable features and is likely to be broken.