Move undocumented environment variable names to a common location

This commit is contained in:
Tamas Vajk
2024-02-13 14:28:58 +01:00
parent b996f7b3ce
commit d358f8e4f2
3 changed files with 11 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
namespace Semmle.Extraction.CSharp.DependencyFetching
{
internal class EnvironmentVariableNames
{
public const string WebViewGeneration = "CODEQL_EXTRACTOR_CSHARP_BUILDLESS_EXTRACT_WEB_VIEWS";
public const string MonoPath = "CODEQL_EXTRACTOR_CSHARP_BUILDLESS_MONO_PATH";
}
}