2 writes to _commandLineArgumentsForCommandLine
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (2)
53_commandLineArgumentsForCommandLine = null!; 133_commandLineArgumentsForCommandLine = _commandLineParserService.Parse(arguments, Path.GetDirectoryName(_project.FilePath), isInteractive: false, sdkDirectory: null);
15 references to _commandLineArgumentsForCommandLine
Microsoft.CodeAnalysis.Workspaces (15)
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (15)
142return _commandLineArgumentsForCommandLine; 146=> _commandLineArgumentsForCommandLine.RuleSetPath; 170var compilationOptions = _commandLineArgumentsForCommandLine.CompilationOptions 172.WithXmlReferenceResolver(new XmlFileResolver(_commandLineArgumentsForCommandLine.BaseDirectory)) 174.WithStrongNameProvider(new DesktopStrongNameProvider([.. _commandLineArgumentsForCommandLine.KeyFileSearchPaths.WhereNotNull()], Path.GetTempPath())); 177var documentationMode = _commandLineArgumentsForCommandLine.DocumentationPath != null ? DocumentationMode.Diagnose : DocumentationMode.Parse; 178var parseOptions = _commandLineArgumentsForCommandLine.ParseOptions 188_project.AssemblyName = _commandLineArgumentsForCommandLine.CompilationName ?? _project.AssemblyName; 191var fullOutputFilePath = (_commandLineArgumentsForCommandLine.OutputDirectory != null && _commandLineArgumentsForCommandLine.OutputFileName != null) 192? Path.Combine(_commandLineArgumentsForCommandLine.OutputDirectory, _commandLineArgumentsForCommandLine.OutputFileName) 193: _commandLineArgumentsForCommandLine.OutputFileName; 196_project.GeneratedFilesOutputDirectory = _commandLineArgumentsForCommandLine.GeneratedFilesOutputDirectory; 198_project.ChecksumAlgorithm = _commandLineArgumentsForCommandLine.ChecksumAlgorithm;