mirror of
https://github.com/github/codeql.git
synced 2025-12-21 11:16:30 +01:00
21 lines
891 B
C#
21 lines
891 B
C#
namespace Semmle.Extraction.CSharp.DependencyFetching
|
|
{
|
|
internal class EnvironmentVariableNames
|
|
{
|
|
/// <summary>
|
|
/// Controls whether to generate source files from Asp.Net Core views (`.cshtml`, `.razor`).
|
|
/// </summary>
|
|
public const string WebViewGeneration = "CODEQL_EXTRACTOR_CSHARP_BUILDLESS_EXTRACT_WEB_VIEWS";
|
|
|
|
/// <summary>
|
|
/// Specifies the location of .Net framework references added to the compilation.
|
|
/// </summary>
|
|
public const string DotnetFrameworkReferences = "CODEQL_EXTRACTOR_CSHARP_BUILDLESS_DOTNET_FRAMEWORK_REFERENCES";
|
|
|
|
/// <summary>
|
|
/// Controls whether to use framework dependencies from subfolders.
|
|
/// </summary>
|
|
public const string DotnetFrameworkReferencesUseSubfolders = "CODEQL_EXTRACTOR_CSHARP_BUILDLESS_DOTNET_FRAMEWORK_REFERENCES_USE_SUBFOLDERS";
|
|
}
|
|
}
|