Skip to content
Open
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
9 changes: 8 additions & 1 deletion extension/schemas/aspire-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,15 @@
},
"additionalProperties": false
},
"integrations": {
"description": "Integration references for non-first-class languages. Key is package name, value is version. A value ending in \".csproj\" is treated as a project reference.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"packages": {
"description": "Package references for non-first-class languages. Key is package name, value is version. A value ending in \".csproj\" is treated as a project reference.",
"description": "Deprecated: use \"integrations\" instead. Legacy key for integration references, kept for backward compatibility.",
"type": "object",
"additionalProperties": {
"type": "string"
Expand Down
2 changes: 2 additions & 0 deletions extension/src/utils/cliTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ export interface AspireConfigFile {
channel?: string;
features?: { [key: string]: boolean };
profiles?: { [key: string]: AspireConfigProfile };
integrations?: { [key: string]: string };
/** @deprecated Use `integrations` instead. */
packages?: { [key: string]: string };
}

Expand Down
2 changes: 1 addition & 1 deletion playground/JavaAppHost/aspire.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.JavaScript": ""
},
"profiles": {
Expand Down
2 changes: 1 addition & 1 deletion playground/PythonAppHost/aspire.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"path": "apphost.py",
"language": "python"
},
"packages": {
"integrations": {
"Aspire.Hosting.JavaScript": "",
"Aspire.Hosting.Python": "",
"Aspire.Hosting.Redis": ""
Expand Down
2 changes: 1 addition & 1 deletion playground/TypeScriptAppHost/aspire.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"path": "apphost.ts",
"language": "typescript/nodejs"
},
"packages": {
"integrations": {
"Aspire.Hosting.PostgreSQL": "",
"Aspire.Hosting.Redis": "",
"Aspire.Hosting.JavaScript": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "13.3.0-preview.1.26163.4"
},
"channel": "daily",
"packages": {
"integrations": {
"Aspire.Hosting.Azure.Storage": "13.3.0-preview.1.26167.8",
"Aspire.Hosting.JavaScript": "13.3.0-preview.1.26167.8",
"Aspire.Hosting.Azure": "13.3.0-preview.1.26167.8",
Expand Down
2 changes: 1 addition & 1 deletion playground/TypeScriptApps/RpsArena/aspire.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"version": "13.3.0-preview.1.26163.4"
},
"channel": "daily",
"packages": {
"integrations": {
"Aspire.Hosting.Python": "13.3.0-preview.1.26167.8",
"Aspire.Hosting.PostgreSQL": "13.3.0-preview.1.26167.8",
"Aspire.Hosting.JavaScript": "13.3.0-preview.1.26167.8"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.AppConfiguration": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.AppContainers": "",
"Aspire.Hosting.Azure.OperationalInsights": ""
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.AppService": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.ApplicationInsights": "",
"Aspire.Hosting.Azure.OperationalInsights": ""
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.CognitiveServices": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.ContainerRegistry": "",
"Aspire.Hosting.Azure.AppContainers": ""
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.CosmosDB": "",
"Aspire.Hosting.Azure.KeyVault": ""
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.EventHubs": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.Functions": "",
"Aspire.Hosting.Azure.Storage": ""
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.KeyVault": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.Kusto": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.OperationalInsights": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.PostgreSQL": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.Redis": "",
"Aspire.Hosting.Azure.KeyVault": ""
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.Search": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.ServiceBus": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.SignalR": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.Sql": "",
"Aspire.Hosting.Azure.Storage": ""
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.Storage": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure.WebPubSub": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Azure": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.DevTunnels": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Docker": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Foundry": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Garnet": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.GitHub.Models": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.JavaScript": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Kafka": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Keycloak": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Kubernetes": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Maui": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Milvus": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.MongoDB": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.MySql": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.Nats": ""
},
"profiles": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"features": {
"experimentalPolyglot:java": true
},
"packages": {
"integrations": {
"Aspire.Hosting.OpenAI": ""
},
"profiles": {
Expand Down
Loading
Loading