4 instantiations of TestableCompiler
Microsoft.CodeAnalysis.Test.Utilities (4)
TestableCompiler.cs (4)
106
return new
TestableCompiler
(compiler, fileSystem, p);
125
return new
TestableCompiler
(compiler, fileSystem, buildPaths);
152
return new
TestableCompiler
(compiler, fileSystem, p);
192
return new
TestableCompiler
(compiler, fileSystem, buildPaths);
19 references to TestableCompiler
Microsoft.CodeAnalysis.Rebuild.UnitTests (11)
BasicDeterministicKeyBuilderTests.cs (2)
309
var
compiler =
TestableCompiler
.CreateBasicNetCoreApp("test.vb", @"-t:library", "-nologo", "-features:debug-determinism", "-deterministic", @"-define:_MYTYPE=""Empty""", "-debug:portable");
CSharpDeterministicKeyBuilderTests.cs (2)
493
var
compiler =
TestableCompiler
.CreateCSharpNetCoreApp("test.cs", @"-t:library", "-nologo", "-features:debug-determinism", "-deterministic", "-debug:portable", "-checksumalgorithm:sha256");
RebuildCommandLineTests.cs (7)
24
internal static BuildPaths BuildPaths { get; } =
TestableCompiler
.StandardBuildPaths;
25
internal static string RootDirectory { get; } =
TestableCompiler
.RootDirectory;
26
internal static string OutputDirectory { get; } = Path.Combine(
TestableCompiler
.RootDirectory, "output");
352
var
compiler =
TestableCompiler
.CreateCSharpNetCoreApp(
511
var
compiler =
TestableCompiler
.CreateBasicNetCoreApp(
Microsoft.CodeAnalysis.Test.Utilities (8)
TestableCompiler.cs (8)
99
internal static
TestableCompiler
CreateCSharp(
109
internal static
TestableCompiler
CreateCSharpNetCoreApp(
128
internal static
TestableCompiler
CreateCSharpNetCoreApp(
134
internal static
TestableCompiler
CreateCSharpNetCoreApp(params string[] commandLineArguments)
145
internal static
TestableCompiler
CreateBasic(
155
internal static
TestableCompiler
CreateBasicNetCoreApp(
195
internal static
TestableCompiler
CreateBasicNetCoreApp(
201
internal static
TestableCompiler
CreateBasicNetCoreApp(params string[] commandLineArguments)