mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-02 17:23:40 -05:00
* Revert "Revert "Port the Azure Resource Explorer extension to core." (#2770)"
This reverts commit 210447cd37.
* WIP1
* Add custom build task for azurecore extension
* Fix azurecore output path for macOS build
* Fix linux gulp task name
17 lines
798 B
TypeScript
17 lines
798 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
export enum AzureResourceItemType {
|
|
account = 'azureResource.itemType.account',
|
|
subscription = 'azureResource.itemType.subscription',
|
|
databaseContainer = 'azureResource.itemType.databaseContainer',
|
|
database = 'azureResource.itemType.database',
|
|
databaseServerContainer = 'azureResource.itemType.databaseServerContainer',
|
|
databaseServer = 'azureResource.itemType.databaseServer',
|
|
message = 'azureResource.itemType.message'
|
|
}
|