mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 09:59:47 -05:00
Update pop-up to be an error message instead of informational message (#16660)
* Update pop-up to be an error message * Update message text * Address comment * Address comment
This commit is contained in:
@@ -241,7 +241,10 @@ export class ProjectsController {
|
||||
.withAdditionalMeasurements({ duration: timeToFailureBuild })
|
||||
.send();
|
||||
|
||||
vscode.window.showErrorMessage(constants.projBuildFailed(utils.getErrorMessage(err)));
|
||||
const error = utils.getErrorMessage(err);
|
||||
if (error !== (constants.NetCoreInstallationConfirmation || constants.NetCoreSupportedVersionInstallationConfirmation)) {
|
||||
vscode.window.showErrorMessage(constants.projBuildFailed(error));
|
||||
}
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user