2 writes to _commandLineArgumentsForCommandLine
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (2)
58_commandLineArgumentsForCommandLine = null!; 157_commandLineArgumentsForCommandLine = _commandLineParserService.Parse(arguments, Path.GetDirectoryName(_project.FilePath), isInteractive: false, sdkDirectory: null);
14 references to _commandLineArgumentsForCommandLine
Microsoft.CodeAnalysis.Workspaces (14)
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (14)
166return _commandLineArgumentsForCommandLine; 171var effectiveRuleSetPath = ExplicitRuleSetFilePath ?? _commandLineArgumentsForCommandLine.RuleSetPath; 186var compilationOptions = _commandLineArgumentsForCommandLine.CompilationOptions 188.WithXmlReferenceResolver(new XmlFileResolver(_commandLineArgumentsForCommandLine.BaseDirectory)) 190.WithStrongNameProvider(new DesktopStrongNameProvider(_commandLineArgumentsForCommandLine.KeyFileSearchPaths.WhereNotNull().ToImmutableArray())); 193var documentationMode = _commandLineArgumentsForCommandLine.DocumentationPath != null ? DocumentationMode.Diagnose : DocumentationMode.Parse; 194var parseOptions = _commandLineArgumentsForCommandLine.ParseOptions 204_project.AssemblyName = _commandLineArgumentsForCommandLine.CompilationName ?? _project.AssemblyName; 207var fullOutputFilePath = (_commandLineArgumentsForCommandLine.OutputDirectory != null && _commandLineArgumentsForCommandLine.OutputFileName != null) 208? Path.Combine(_commandLineArgumentsForCommandLine.OutputDirectory, _commandLineArgumentsForCommandLine.OutputFileName) 209: _commandLineArgumentsForCommandLine.OutputFileName; 213_project.ChecksumAlgorithm = _commandLineArgumentsForCommandLine.ChecksumAlgorithm;