namespace Semmle.Extraction.CSharp.DependencyFetching { internal class EnvironmentVariableNames { /// /// Controls whether to generate source files from Asp.Net Core views (`.cshtml`, `.razor`). /// public const string WebViewGeneration = "CODEQL_EXTRACTOR_CSHARP_BUILDLESS_EXTRACT_WEB_VIEWS"; /// /// Specifies the location of .Net framework references added to the compilation. /// public const string DotnetFrameworkReferences = "CODEQL_EXTRACTOR_CSHARP_BUILDLESS_DOTNET_FRAMEWORK_REFERENCES"; /// /// Controls whether to use framework dependencies from subfolders. /// public const string DotnetFrameworkReferencesUseSubfolders = "CODEQL_EXTRACTOR_CSHARP_BUILDLESS_DOTNET_FRAMEWORK_REFERENCES_USE_SUBFOLDERS"; } }