1 write to IsScriptCommandLineParser
Microsoft.CodeAnalysis (1)
CommandLine\CommandLineParser.cs (1)
32IsScriptCommandLineParser = isScriptCommandLineParser;
16 references to IsScriptCommandLineParser
Microsoft.CodeAnalysis (2)
CommandLine\CommandLineParser.cs (2)
1135if (IsScriptCommandLineParser) 1152Debug.Assert(IsScriptCommandLineParser || !arg.StartsWith('-') && !arg.StartsWith('@'));
Microsoft.CodeAnalysis.CSharp (14)
CommandLine\CSharpCommandLineParser.cs (14)
58List<string>? scriptArgs = IsScriptCommandLineParser ? new List<string>() : null; 59List<string>? responsePaths = IsScriptCommandLineParser ? new List<string>() : null; 77bool noStdLib = IsScriptCommandLineParser; // don't add mscorlib from sdk dir when running scripts 145if (!IsScriptCommandLineParser) 228else if (!IsScriptCommandLineParser && IsOptionName("a", "analyzer", nameMemory)) 233else if (!IsScriptCommandLineParser && IsOptionName("nowarn", nameMemory)) 307if (IsScriptCommandLineParser) 1414if (!IsScriptCommandLineParser && !sourceFilesSpecified && (outputKind.IsNetModule() || !resourcesOrModulesSpecified)) 1492kind: IsScriptCommandLineParser ? SourceCodeKind.Script : SourceCodeKind.Regular, 1562IsScriptRunner = IsScriptCommandLineParser, 1563InteractiveMode = interactiveMode || IsScriptCommandLineParser && sourceFiles.Count == 0, 1680if (!IsScriptCommandLineParser && !sourceFilesSpecified) 1714Debug.Assert(!IsScriptCommandLineParser); 1756Debug.Assert(IsScriptCommandLineParser);