mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 01:25:36 -05:00
* WIP * first version with working tests * fixes needed after merge from main * Linux untest changes and merge from other changes from mac * after testing getTextContent * rename 2 methods * linux discovery * tested code on linux * using release.json for update discovery on linux * comment added * dead code removed * coomments * revert unrelated change * revert testing changes * code complete, testing pending * test complete * PR feedback * remove SendOutputChannelToConsole * cleanup * pr feedback * PR Feedback * pr feedback * pr feedback * pr feedback * fix loc function * install/upgrade command - context sensitive * add awaits as pr feedback * cleanup * merge from main * merge from main * cleanup and pr feedback * PR feedback and cleanup * cleanup * pr feedback * pr feedback. * revert accidental changes * cleanup * test fixes * test fixes and pr feedback * pr fixes and eula similar to install/upgrade * revert extraneous change * log and prompt fixes * string fixes * string updates * string updates based on PR feedback * loc const rename * pr feedback * string fixes * make setContext settings uniform * add commandPallete * eulaAccepted setContext from memento * misc fixes * bug fixes * test fix * skip failinf test for fix later * pr feedback * upgrading -> updating Co-authored-by: chgagnon <chgagnon@microsoft.com>
24 lines
1.1 KiB
TypeScript
24 lines
1.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
// config setting keys
|
|
export const azdataConfigSection: string = 'azdata';
|
|
export const azdataAcceptEulaKey: string = 'acceptEula';
|
|
export const azdataInstallKey: string = 'install';
|
|
export const azdataUpdateKey: string = 'update';
|
|
export const debugConfigKey = 'logDebugInfo';
|
|
|
|
|
|
// context keys && memento keys
|
|
export const eulaAccepted = 'azdata.eulaAccepted';
|
|
export const azdataFound = 'azdata.found';
|
|
|
|
// other constants
|
|
export const azdataHostname = 'https://aka.ms';
|
|
export const azdataUri = 'azdata-msi';
|
|
export const azdataReleaseJson = 'azdata/release.json';
|
|
export const microsoftPrivacyStatementUrl = 'https://privacy.microsoft.com/en-us/privacystatement';
|
|
export const eulaUrl = 'https://aka.ms/eula-azdata-en';
|