Revert 'Add profile section in Publish project UI (#21906)' (#22047)

This reverts commit cb58286247.
This commit is contained in:
Kim Santiago
2023-02-27 15:09:50 -08:00
committed by GitHub
parent febfe3718f
commit e675fc14f0
10 changed files with 23 additions and 131 deletions

View File

@@ -431,7 +431,6 @@ declare module 'vscode-mssql' {
generateDeployPlan(packageFilePath: string, databaseName: string, ownerUri: string, taskExecutionMode: TaskExecutionMode): Thenable<GenerateDeployPlanResult>;
getOptionsFromProfile(profilePath: string): Thenable<DacFxOptionsResult>;
validateStreamingJob(packageFilePath: string, createStreamingJobTsql: string): Thenable<ValidateStreamingJobResult>;
savePublishProfile(profilePath: string, databaseName: string, connectionString: string, sqlCommandVariableValues?: Record<string, string>, deploymentOptions?: DeploymentOptions): Thenable<ResultStatus>;
}
/**
@@ -1018,14 +1017,6 @@ declare module 'vscode-mssql' {
defaultDeploymentOptions: DeploymentOptions;
}
export interface SavePublishProfileParams {
profilePath: string;
databaseName: string;
connectionString: string;
sqlCommandVariableValues?: Record<string, string>;
deploymentOptions?: DeploymentOptions;
}
//#region ISqlProjectsService
//#region Parameters