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)
1148var explicitGeneratedOutDir = Arguments.GeneratedFilesOutputDirectory;
SourceGeneration\GeneratorDriverOptions.cs (1)
21/// Usually the project's output directory unless <see cref="CommandLineArguments.GeneratedFilesOutputDirectory"/> is specified.
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (10)
CommandLineTests.cs (10)
14334Assert.Null(parsedArgs.GeneratedFilesOutputDirectory); 14340Assert.Null(parsedArgs.GeneratedFilesOutputDirectory); 14344Assert.Equal(Path.Combine(baseDirectory, "outdir"), parsedArgs.GeneratedFilesOutputDirectory); 14348Assert.Equal(Path.Combine(baseDirectory, "outdir"), parsedArgs.GeneratedFilesOutputDirectory); 14352Assert.Equal(Path.Combine(baseDirectory, "out dir"), parsedArgs.GeneratedFilesOutputDirectory); 14356Assert.Equal(Path.Combine(baseDirectory, "out dir"), parsedArgs.GeneratedFilesOutputDirectory); 14361Assert.Equal(absPath, parsedArgs.GeneratedFilesOutputDirectory); 14365Assert.Equal(absPath, parsedArgs.GeneratedFilesOutputDirectory); 14370Assert.Equal(absPath, parsedArgs.GeneratedFilesOutputDirectory); 14374Assert.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;