Método DeploymentContributor.OnEstablishDeploymentConfiguration
Indicates a member called by the build process in DacFx to give your code an opportunity to modify deployment configuration.
Namespace: Microsoft.SqlServer.Dac.Deployment
Assembly: Microsoft.SqlServer.Dac.Extensions (em Microsoft.SqlServer.Dac.Extensions.dll)
Sintaxe
'Declaração
Protected Overridable Sub OnEstablishDeploymentConfiguration ( _
setup As DeploymentContributorConfigurationSetup _
)
'Uso
Dim setup As DeploymentContributorConfigurationSetup
Me.OnEstablishDeploymentConfiguration(setup)
protected virtual void OnEstablishDeploymentConfiguration(
DeploymentContributorConfigurationSetup setup
)
protected:
virtual void OnEstablishDeploymentConfiguration(
DeploymentContributorConfigurationSetup^ setup
)
abstract OnEstablishDeploymentConfiguration :
setup:DeploymentContributorConfigurationSetup -> unit
override OnEstablishDeploymentConfiguration :
setup:DeploymentContributorConfigurationSetup -> unit
protected function OnEstablishDeploymentConfiguration(
setup : DeploymentContributorConfigurationSetup
)
Parâmetros
- setup
Tipo: Microsoft.SqlServer.Dac.Deployment.DeploymentContributorConfigurationSetup
The current DeploymentContributorConfigurationSetup object.
Exceções
Exceção | Condição |
---|---|
BuildFailedException | If there is a critical error that should stop the build process from continuing, implementing contributors may throw a BuildFailedException. |