Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cli/azd/cmd/testdata/TestFigSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6708,7 +6708,7 @@ const completionSpec: Fig.Spec = {
options: [
{
name: ['--capabilities'],
description: 'The list of capabilities for the extension (e.g., custom-commands,lifecycle-events,mcp-server,service-target-provider,framework-service-provider,metadata,provisioning-provider).',
description: 'The list of capabilities for the extension (e.g., custom-commands,lifecycle-events,mcp-server,service-target-provider,framework-service-provider,metadata,provisioning-provider,validation-provider).',
isRepeatable: true,
args: [
{
Expand Down Expand Up @@ -6741,7 +6741,7 @@ const completionSpec: Fig.Spec = {
},
{
name: ['--language'],
description: 'The programming language for the extension (go, dotnet, javascript, python).',
description: 'The programming language for the extension (go (recommended), dotnet, javascript, python).',
args: [
{
name: 'language',
Expand Down
90 changes: 90 additions & 0 deletions cli/azd/extensions/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -1636,6 +1636,96 @@
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.12.0/microsoft-azd-extensions-windows-arm64.zip"
}
}
},
{
"version": "0.13.0",
"capabilities": [
"custom-commands",
"metadata"
],
"usage": "azd x <command> [options]",
"examples": [
{
"name": "init",
"description": "Initialize a new azd extension project.",
"usage": "azd x init"
},
{
"name": "build",
"description": "Build the azd extension project.",
"usage": "azd x build"
},
{
"name": "pack",
"description": "Package the azd extension project into a distributable format and add to local registry.",
"usage": "azd x pack"
},
{
"name": "publish",
"description": "Publish the azd extension project to an extension source.",
"usage": "azd x publish"
},
{
"name": "release",
"description": "Create a new release of the azd extension project to a GitHub repository.",
"usage": "azd x release"
},
{
"name": "watch",
"description": "Watch for changes in the extension project and automatically rebuild and reload the extension.",
"usage": "azd x watch"
}
],
"artifacts": {
"darwin/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "4b56804820dcf57f654e0b2408978c993e822ef7c24bbc33763fdbf62b71ada7"
},
"entryPoint": "microsoft-azd-extensions-darwin-amd64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.13.0/microsoft-azd-extensions-darwin-amd64.zip"
},
"darwin/arm64": {
"checksum": {
"algorithm": "sha256",
"value": "7170b91890c645e98a83b110e918c4d1e8169f67f7d7fefafff29b6ecb65074c"
},
"entryPoint": "microsoft-azd-extensions-darwin-arm64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.13.0/microsoft-azd-extensions-darwin-arm64.zip"
},
"linux/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "9220c72a6846b60f4b5cea1a6d3fb739e38460e1952bd8399a8d68c6bbe3476c"
},
"entryPoint": "microsoft-azd-extensions-linux-amd64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.13.0/microsoft-azd-extensions-linux-amd64.tar.gz"
},
"linux/arm64": {
"checksum": {
"algorithm": "sha256",
"value": "7af05aec6ce0ee9ec743b648f89228557045480df6c4600302ecfc00df174751"
},
"entryPoint": "microsoft-azd-extensions-linux-arm64",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.13.0/microsoft-azd-extensions-linux-arm64.tar.gz"
},
"windows/amd64": {
"checksum": {
"algorithm": "sha256",
"value": "da6b080e58e1582994e7ee2c0549975feeaf91b0cc11884312a18c41dbd57ac5"
},
"entryPoint": "microsoft-azd-extensions-windows-amd64.exe",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.13.0/microsoft-azd-extensions-windows-amd64.zip"
},
"windows/arm64": {
"checksum": {
"algorithm": "sha256",
"value": "508ea8a171bc59785a0fb31b6cf1c8730da1db1655f245e6bf0c0747c99cffca"
},
"entryPoint": "microsoft-azd-extensions-windows-arm64.exe",
"url": "https://github.com/Azure/azure-dev/releases/download/azd-ext-microsoft-azd-extensions_0.13.0/microsoft-azd-extensions-windows-arm64.zip"
}
}
}
]
},
Expand Down
Loading