fix DW project build (#15287)

This commit is contained in:
Kim Santiago
2021-04-29 11:48:01 -10:00
committed by GitHub
parent e00d48c210
commit 020bc738cc

View File

@@ -338,6 +338,7 @@ export const sqlServer2016 = 'SQL Server 2016';
export const sqlServer2017 = 'SQL Server 2017';
export const sqlServer2019 = 'SQL Server 2019';
export const sqlAzure = 'Microsoft Azure SQL Database';
export const sqlDW = 'Microsoft Azure SQL Data Warehouse';
export const targetPlatformToVersion: Map<string, string> = new Map<string, string>([
[sqlServer2005, '90'],
@@ -347,7 +348,8 @@ export const targetPlatformToVersion: Map<string, string> = new Map<string, stri
[sqlServer2016, '130'],
[sqlServer2017, '140'],
[sqlServer2019, '150'],
[sqlAzure, 'AzureV12']
[sqlAzure, 'AzureV12'],
[sqlDW, 'Dw']
]);
export function getTargetPlatformFromVersion(version: string): string {