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
1 change: 1 addition & 0 deletions cli/azd/.vscode/cspell-azd-dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ envlist
envname
envsubst
errcheck
Errorf
errorinfo
errorlint
eventhub
Expand Down
1 change: 1 addition & 0 deletions cli/azd/.vscode/cspell.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ words:
- santhosh
- tekuri
- jsonschema
- rustc
languageSettings:
- languageId: go
ignoreRegExpList:
Expand Down
1 change: 1 addition & 0 deletions cli/azd/cmd/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,7 @@ func registerCommonDependencies(container *ioc.NestedContainer) {
container.MustRegisterSingleton(grpcserver.NewWorkflowService)
container.MustRegisterSingleton(grpcserver.NewExtensionService)
container.MustRegisterSingleton(grpcserver.NewServiceTargetService)
container.MustRegisterSingleton(grpcserver.NewFrameworkService)

// Required for nested actions called from composite actions like 'up'
registerAction[*cmd.ProvisionAction](container, "azd-provision-action")
Expand Down
1 change: 1 addition & 0 deletions cli/azd/cmd/middleware/extensions.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ var (
listenCapabilities = []extensions.CapabilityType{
extensions.LifecycleEventsCapability,
extensions.ServiceTargetProviderCapability,
extensions.FrameworkServiceProviderCapability,
}
)

Expand Down
Loading
Loading