mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
fix DW project build (#15287)
This commit is contained in:
@@ -338,6 +338,7 @@ export const sqlServer2016 = 'SQL Server 2016';
|
|||||||
export const sqlServer2017 = 'SQL Server 2017';
|
export const sqlServer2017 = 'SQL Server 2017';
|
||||||
export const sqlServer2019 = 'SQL Server 2019';
|
export const sqlServer2019 = 'SQL Server 2019';
|
||||||
export const sqlAzure = 'Microsoft Azure SQL Database';
|
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>([
|
export const targetPlatformToVersion: Map<string, string> = new Map<string, string>([
|
||||||
[sqlServer2005, '90'],
|
[sqlServer2005, '90'],
|
||||||
@@ -347,7 +348,8 @@ export const targetPlatformToVersion: Map<string, string> = new Map<string, stri
|
|||||||
[sqlServer2016, '130'],
|
[sqlServer2016, '130'],
|
||||||
[sqlServer2017, '140'],
|
[sqlServer2017, '140'],
|
||||||
[sqlServer2019, '150'],
|
[sqlServer2019, '150'],
|
||||||
[sqlAzure, 'AzureV12']
|
[sqlAzure, 'AzureV12'],
|
||||||
|
[sqlDW, 'Dw']
|
||||||
]);
|
]);
|
||||||
|
|
||||||
export function getTargetPlatformFromVersion(version: string): string {
|
export function getTargetPlatformFromVersion(version: string): string {
|
||||||
|
|||||||
Reference in New Issue
Block a user