mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
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:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user