7 instantiations of BuildPaths
csc (2)
src\roslyn\src\Compilers\CSharp\csc\Program.cs (1)
41
=> Csc.Run(args, new
BuildPaths
(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir), textWriter, analyzerLoader);
src\roslyn\src\Compilers\Shared\BuildClient.cs (1)
112
var buildPaths = new
BuildPaths
(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir);
csi (1)
Csi.cs (1)
26
var buildPaths = new
BuildPaths
(
vbc (2)
src\roslyn\src\Compilers\Shared\BuildClient.cs (1)
112
var buildPaths = new
BuildPaths
(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir);
src\roslyn\src\Compilers\VisualBasic\vbc\Program.cs (1)
43
=> Vbc.Run(args, new
BuildPaths
(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir), textWriter, analyzerLoader);
VBCSCompiler (2)
src\roslyn\src\Compilers\Server\VBCSCompiler\CompilerRequestHandler.cs (1)
134
var buildPaths = new
BuildPaths
(ClientDirectory, request.WorkingDirectory, SdkDirectory, request.TempDirectory);
src\roslyn\src\Compilers\Shared\BuildClient.cs (1)
112
var buildPaths = new
BuildPaths
(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir);
32 references to BuildPaths
csc (8)
src\roslyn\src\Compilers\Shared\BuildClient.cs (6)
24
internal delegate int CompileFunc(string[] arguments,
BuildPaths
buildPaths, TextWriter textWriter, IAnalyzerAssemblyLoader analyzerAssemblyLoader);
112
var
buildPaths = new BuildPaths(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir);
122
internal RunCompilationResult RunCompilation(IEnumerable<string> originalArguments,
BuildPaths
buildPaths, TextWriter? textWriter = null, string? pipeName = null)
168
public Task<RunCompilationResult> RunCompilationAsync(IEnumerable<string> originalArguments,
BuildPaths
buildPaths, TextWriter? textWriter = null)
190
private int RunLocalCompilation(string[] arguments,
BuildPaths
buildPaths, TextWriter textWriter)
208
private RunCompilationResult? RunServerCompilation(TextWriter textWriter, List<string> arguments,
BuildPaths
buildPaths, string? libDirectory, string pipeName, string? keepAlive)
src\roslyn\src\Compilers\Shared\Csc.cs (2)
17
internal Csc(string responseFile,
BuildPaths
buildPaths, string[] args, IAnalyzerAssemblyLoader analyzerLoader)
22
internal static int Run(string[] args,
BuildPaths
buildPaths, TextWriter textWriter, IAnalyzerAssemblyLoader analyzerLoader)
csi (1)
Csi.cs (1)
26
var
buildPaths = new BuildPaths(
Microsoft.CodeAnalysis (1)
CommandLine\CommonCompiler.cs (1)
125
public CommonCompiler(CommandLineParser parser, string? responseFile, string[] args,
BuildPaths
buildPaths, string? additionalReferenceDirectories, IAnalyzerAssemblyLoader assemblyLoader, GeneratorDriverCache? driverCache, ICommonCompilerFileSystem? fileSystem)
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCompiler.cs (1)
28
protected CSharpCompiler(CSharpCommandLineParser parser, string? responseFile, string[] args,
BuildPaths
buildPaths, string? additionalReferenceDirectories, IAnalyzerAssemblyLoader assemblyLoader, GeneratorDriverCache? driverCache = null, ICommonCompilerFileSystem? fileSystem = null)
Microsoft.CodeAnalysis.CSharp.Scripting (1)
Hosting\CommandLine\Csi.cs (1)
19
BuildPaths
buildPaths,
vbc (8)
src\roslyn\src\Compilers\Shared\BuildClient.cs (6)
24
internal delegate int CompileFunc(string[] arguments,
BuildPaths
buildPaths, TextWriter textWriter, IAnalyzerAssemblyLoader analyzerAssemblyLoader);
112
var
buildPaths = new BuildPaths(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir);
122
internal RunCompilationResult RunCompilation(IEnumerable<string> originalArguments,
BuildPaths
buildPaths, TextWriter? textWriter = null, string? pipeName = null)
168
public Task<RunCompilationResult> RunCompilationAsync(IEnumerable<string> originalArguments,
BuildPaths
buildPaths, TextWriter? textWriter = null)
190
private int RunLocalCompilation(string[] arguments,
BuildPaths
buildPaths, TextWriter textWriter)
208
private RunCompilationResult? RunServerCompilation(TextWriter textWriter, List<string> arguments,
BuildPaths
buildPaths, string? libDirectory, string pipeName, string? keepAlive)
src\roslyn\src\Compilers\Shared\Vbc.cs (2)
17
internal Vbc(string responseFile,
BuildPaths
buildPaths, string[] args, IAnalyzerAssemblyLoader analyzerLoader)
22
internal static int Run(string[] args,
BuildPaths
buildPaths, TextWriter textWriter, IAnalyzerAssemblyLoader analyzerLoader)
VBCSCompiler (12)
src\roslyn\src\Compilers\Server\VBCSCompiler\CompilerRequestHandler.cs (2)
78
public bool TryCreateCompiler(in RunRequest request,
BuildPaths
buildPaths, [NotNullWhen(true)] out CommonCompiler? compiler)
134
var
buildPaths = new BuildPaths(ClientDirectory, request.WorkingDirectory, SdkDirectory, request.TempDirectory);
src\roslyn\src\Compilers\Server\VBCSCompiler\CSharpCompilerServer.cs (2)
21
internal CSharpCompilerServer(Func<string, MetadataReferenceProperties, PortableExecutableReference> metadataProvider, string[] args,
BuildPaths
buildPaths, string? libDirectory, IAnalyzerAssemblyLoader analyzerLoader, GeneratorDriverCache driverCache, ICompilerServerLogger? logger = null)
26
internal CSharpCompilerServer(Func<string, MetadataReferenceProperties, PortableExecutableReference> metadataProvider, string? responseFile, string[] args,
BuildPaths
buildPaths, string? libDirectory, IAnalyzerAssemblyLoader analyzerLoader, GeneratorDriverCache driverCache, ICompilerServerLogger? logger = null)
src\roslyn\src\Compilers\Server\VBCSCompiler\VisualBasicCompilerServer.cs (2)
21
internal VisualBasicCompilerServer(Func<string, MetadataReferenceProperties, PortableExecutableReference> metadataProvider, string[] args,
BuildPaths
buildPaths, string? libDirectory, IAnalyzerAssemblyLoader analyzerLoader, GeneratorDriverCache driverCache, ICompilerServerLogger? logger = null)
26
internal VisualBasicCompilerServer(Func<string, MetadataReferenceProperties, PortableExecutableReference> metadataProvider, string? responseFile, string[] args,
BuildPaths
buildPaths, string? libDirectory, IAnalyzerAssemblyLoader analyzerLoader, GeneratorDriverCache driverCache, ICompilerServerLogger? logger = null)
src\roslyn\src\Compilers\Shared\BuildClient.cs (6)
24
internal delegate int CompileFunc(string[] arguments,
BuildPaths
buildPaths, TextWriter textWriter, IAnalyzerAssemblyLoader analyzerAssemblyLoader);
112
var
buildPaths = new BuildPaths(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir);
122
internal RunCompilationResult RunCompilation(IEnumerable<string> originalArguments,
BuildPaths
buildPaths, TextWriter? textWriter = null, string? pipeName = null)
168
public Task<RunCompilationResult> RunCompilationAsync(IEnumerable<string> originalArguments,
BuildPaths
buildPaths, TextWriter? textWriter = null)
190
private int RunLocalCompilation(string[] arguments,
BuildPaths
buildPaths, TextWriter textWriter)
208
private RunCompilationResult? RunServerCompilation(TextWriter textWriter, List<string> arguments,
BuildPaths
buildPaths, string? libDirectory, string pipeName, string? keepAlive)