Remove preview from 2022 in sql projects (#20940)

* remove preview from 2022 in sql projects

* update new project baselines

* update system dacpac tests

* fix other 150 system dacpac test checks
This commit is contained in:
Kim Santiago
2022-10-26 09:11:28 -07:00
committed by GitHub
parent b13e0cf615
commit 15b7c814f6
8 changed files with 29 additions and 29 deletions

View File

@@ -161,7 +161,7 @@ export function OptionNotFoundWarningMessage(label: string) { return localize('o
export const SqlServerName = 'SQL server';
export const AzureSqlServerName = 'Azure SQL server';
export const SqlServerDockerImageName = 'Microsoft SQL Server';
export const SqlServerDocker2022ImageName = 'Microsoft SQL Server 2022 (preview)';
export const SqlServerDocker2022ImageName = 'Microsoft SQL Server 2022';
export const AzureSqlDbFullDockerImageName = 'Azure SQL Database emulator Full';
export const AzureSqlDbLiteDockerImageName = 'Azure SQL Database emulator Lite';
export const AzureSqlLogicalServerName = 'Azure SQL logical server';
@@ -603,7 +603,7 @@ export const onPremServerVersionToTargetPlatform: Map<number, SqlTargetPlatform>
// DW is special since the system dacpac folder has a different name from the target platform
export const AzureDwFolder = 'AzureDw';
export const defaultTargetPlatform = SqlTargetPlatform.sqlServer2019; // TODO: update to 2022 when it's GA
export const defaultTargetPlatform = SqlTargetPlatform.sqlServer2022;
export const defaultDSP = targetPlatformToVersion.get(defaultTargetPlatform)!;
/**