2 writes to GeneratedFilesOutputDirectory
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
1596GeneratedFilesOutputDirectory = generatedFilesOutputDirectory,
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
1545.GeneratedFilesOutputDirectory = generatedFilesOutputDirectory,
14 references to GeneratedFilesOutputDirectory
Microsoft.CodeAnalysis (2)
CommandLine\CommonCompiler.cs (1)
1136var explicitGeneratedOutDir = Arguments.GeneratedFilesOutputDirectory;
SourceGeneration\GeneratorDriverOptions.cs (1)
22/// Usually the project's output directory unless <see cref="CommandLineArguments.GeneratedFilesOutputDirectory"/> is specified.
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (10)
CommandLineTests.cs (10)
14373Assert.Null(parsedArgs.GeneratedFilesOutputDirectory); 14379Assert.Null(parsedArgs.GeneratedFilesOutputDirectory); 14383Assert.Equal(Path.Combine(baseDirectory, "outdir"), parsedArgs.GeneratedFilesOutputDirectory); 14387Assert.Equal(Path.Combine(baseDirectory, "outdir"), parsedArgs.GeneratedFilesOutputDirectory); 14391Assert.Equal(Path.Combine(baseDirectory, "out dir"), parsedArgs.GeneratedFilesOutputDirectory); 14395Assert.Equal(Path.Combine(baseDirectory, "out dir"), parsedArgs.GeneratedFilesOutputDirectory); 14400Assert.Equal(absPath, parsedArgs.GeneratedFilesOutputDirectory); 14404Assert.Equal(absPath, parsedArgs.GeneratedFilesOutputDirectory); 14409Assert.Equal(absPath, parsedArgs.GeneratedFilesOutputDirectory); 14413Assert.Equal(absPath, parsedArgs.GeneratedFilesOutputDirectory);
Microsoft.CodeAnalysis.Workspaces (2)
Workspace\CommandLineProject.cs (1)
124compilationOutputInfo: new CompilationOutputInfo(outputFilePath, commandLineArguments.GeneratedFilesOutputDirectory),
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (1)
196_project.GeneratedFilesOutputDirectory = _commandLineArgumentsForCommandLine.GeneratedFilesOutputDirectory;