Move back 'Shared' content to 'Hosting' assembly (#1967)

This commit is contained in:
Cheena Malhotra
2023-03-24 15:07:02 -07:00
committed by GitHub
parent b7709c9e5b
commit 463fc60330
23 changed files with 640 additions and 32 deletions

View File

@@ -0,0 +1,24 @@
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
namespace Microsoft.SqlTools.Utility
{
public class SqlConstants
{
// Authentication Types
public const string Integrated = "Integrated";
public const string SqlLogin = "SqlLogin";
public const string AzureMFA = "AzureMFA";
public const string dstsAuth = "dstsAuth";
public const string ActiveDirectoryInteractive = "ActiveDirectoryInteractive";
public const string ActiveDirectoryPassword = "ActiveDirectoryPassword";
// Azure authentication (MSAL) constants
public const string ApplicationClientId = "a69788c6-1d43-44ed-9ca3-b83e194da255";
public const string AzureTokenFolder = "Azure Accounts";
public const string AzureAccountProviderCredentials = "azureAccountProviderCredentials";
public const string MsalCacheName = "accessTokenCache";
}
}