mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 17:23:27 -05:00
* Make nullable warnings a per file opt-in * Remove unneeded compiler directives * Remove compiler directive for User Data
47 lines
1.5 KiB
C#
47 lines
1.5 KiB
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
#nullable disable
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.Test.Common
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string SqlConectionSettingsEnvironmentVariable = "SettingsFileName";
|
|
|
|
public const string AzureStorageAccountKey = "AzureStorageAccountKey";
|
|
|
|
public const string AzureStorageAccountName = "AzureStorageAccountName";
|
|
|
|
public const string AzureBlobContainerUri = "AzureBlobContainerUri";
|
|
|
|
/// <summary>
|
|
/// Environment variable used to get the TSDATA source directory root.
|
|
/// K2 is under it.
|
|
/// </summary>
|
|
public const string SourceDirectoryEnvVariable = "Enlistment_Root";
|
|
|
|
/// <summary>
|
|
/// Environment variable used to get the build output directory.
|
|
/// DTRun will set this automatically
|
|
/// </summary>
|
|
public const string BinariesDirectoryEnvVariable = "DacFxBuildOutputDir";
|
|
|
|
public const string DDSuiteBuiltTarget = "DD_SuitesTarget";
|
|
|
|
public const string DBBackupFileLocation = "DBBackupPath";
|
|
|
|
public const string ProjectPath = "ProjectPath";
|
|
|
|
public const string BVTLocalRoot = "BVT_LOCALROOT";
|
|
|
|
public const string DBIMode = "DBI_MODE";
|
|
|
|
public const string OwnerUri = "testFile";
|
|
|
|
public const string StandardQuery = "SELECT * FROM sys.objects";
|
|
}
|
|
}
|