21 references to BuildPaths
csc (2)
src\Compilers\CSharp\csc\Program.cs (1)
41=> Csc.Run(args, new BuildPaths(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir), textWriter, analyzerLoader);
src\Compilers\Shared\BuildClient.cs (1)
115var buildPaths = new BuildPaths(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir);
csi (1)
Csi.cs (1)
26var buildPaths = new BuildPaths(
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (4)
CommandLineTests.cs (4)
12309var buildPaths = new BuildPaths(clientDir: "", workingDir: workingDir.Path, sdkDir: null, tempDir: tempDir.Path); 12324var buildPaths = new BuildPaths(clientDir: "", workingDir: workingDir.Path, sdkDir: null, tempDir: tempDir.Path); 12344var buildPaths = new BuildPaths(clientDir: "", workingDir: workingDir.Path, sdkDir: null, tempDir: tempDir.Path); 12365var buildPaths = new BuildPaths(clientDir: "", workingDir: workingDir.Path, sdkDir: null, tempDir: tempDir.Path);
Microsoft.CodeAnalysis.Scripting.TestUtilities (2)
CSharpScriptTestBase.cs (1)
33var buildPaths = new BuildPaths(
VisualBasicScriptTestBase.cs (1)
26var buildPaths = new BuildPaths(
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\RuntimeUtilities.cs (1)
55return new BuildPaths(
TestableCompiler.cs (1)
50internal static BuildPaths StandardBuildPaths => new BuildPaths(
Microsoft.CodeAnalysis.UnitTests (2)
Analyzers\AnalyzerFileReferenceTests.cs (2)
320new BuildPaths(clientDir: directory.Path, workingDir: directory.Path, sdkDir: null, tempDir: null), 349new BuildPaths(clientDir: directory.Path, workingDir: directory.Path, sdkDir: null, tempDir: null),
vbc (2)
src\Compilers\Shared\BuildClient.cs (1)
115var buildPaths = new BuildPaths(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir);
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\Compilers\Server\VBCSCompiler\CompilerRequestHandler.cs (1)
132var buildPaths = new BuildPaths(ClientDirectory, request.WorkingDirectory, SdkDirectory, request.TempDirectory);
src\Compilers\Shared\BuildClient.cs (1)
115var buildPaths = new BuildPaths(clientDir: clientDir, workingDir: workingDir, sdkDir: sdkDir, tempDir: tempDir);
VBCSCompiler.UnitTests (4)
CompilerServerTests.cs (1)
199var buildPaths = new BuildPaths(
ServerUtil.cs (1)
164return new BuildPaths(
TouchedFileLoggingTests.cs (2)
69new BuildPaths(clientDirectory, _baseDirectory, RuntimeEnvironment.GetRuntimeDirectory(), Path.GetTempPath()), 120new BuildPaths(clientDirectory, _baseDirectory, RuntimeEnvironment.GetRuntimeDirectory(), Path.GetTempPath()),