add config option for Microsoft.Build.Sql version used to build legacy sql projects (#20532)

* add config option for Microsoft.Build.Sql version used to build legacy sql projects

* addressing comments
This commit is contained in:
Kim Santiago
2022-09-01 17:05:26 -07:00
committed by GitHub
parent 508d76b646
commit 7c34c4bdc0
5 changed files with 33 additions and 11 deletions

View File

@@ -238,7 +238,12 @@ export class ProjectsController {
// get dlls and targets file needed for building for legacy style projects
if (!project.isSdkStyleProject) {
await this.buildHelper.createBuildDirFolder(this._outputChannel);
const result = await this.buildHelper.createBuildDirFolder(this._outputChannel);
if (!result) {
void vscode.window.showErrorMessage(constants.errorRetrievingBuildFiles);
return '';
}
}
const options: ShellCommandOptions = {