2 writes to OutputDirectory
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
1593
OutputDirectory
= outputDirectory!, // error produced when null
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
1508
.
OutputDirectory
= outputDirectory,
6 references to OutputDirectory
Microsoft.CodeAnalysis (4)
CommandLine\CommandLineArguments.cs (2)
345
return Path.Combine(
OutputDirectory
, outputFileName);
365
return PdbPath ?? Path.Combine(
OutputDirectory
, Path.ChangeExtension(outputFileName, ".pdb"));
CommandLine\CommonCompiler.cs (2)
1155
var baseDirectory = hasExplicitGeneratedOutDir ? explicitGeneratedOutDir! : Arguments.
OutputDirectory
;
1817
var filePath = Path.Combine(Arguments.
OutputDirectory
, Arguments.OutputFileName + ".key");
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (2)
191
var fullOutputFilePath = (_commandLineArgumentsForCommandLine.
OutputDirectory
!= null && _commandLineArgumentsForCommandLine.OutputFileName != null)
192
? Path.Combine(_commandLineArgumentsForCommandLine.
OutputDirectory
, _commandLineArgumentsForCommandLine.OutputFileName)