Adding progress indicator for autorest generation (#17371)

This commit is contained in:
Benjin Dubishar
2021-10-15 23:42:57 -07:00
committed by GitHub
parent bb09e808a9
commit ecb7f9311a
2 changed files with 9 additions and 1 deletions

View File

@@ -433,6 +433,7 @@ export function generatingProjectFailed(errorMessage: string) { return localize(
export const noSqlFilesGenerated = localize('noSqlFilesGenerated', "No .sql files were generated by Autorest. Please confirm that your spec contains model definitions, or check the output log for details.");
export function multipleMostDeploymentScripts(count: number) { return localize('multipleMostDeploymentScripts', "Unexpected number of {0} files: {1}", autorestPostDeploymentScriptName, count); }
export const specSelectionText = localize('specSelectionText', "OpenAPI/Swagger spec");
export function generatingProjectFromAutorest(specName: string) { return localize('generatingProjectFromAutorest', "Generating new SQL project from {0}... Check output window for details.", specName); }
// System dbs
export const systemDbs = ['master', 'msdb', 'tempdb', 'model'];