Files
sqltoolsservice/test/Microsoft.SqlTools.ServiceLayer.Test.Common/Constants.cs
Karl Burtram f288bee294 Make nullable warnings a per file opt-in (#1842)
* Make nullable warnings a per file opt-in

* Remove unneeded compiler directives

* Remove compiler directive for User Data
2023-02-03 18:10:07 -08:00

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";
}
}