3 instantiations of TestableCompilerFile
Microsoft.CodeAnalysis.Test.Utilities (3)
TestableCompiler.cs (3)
80return new TestableCompilerFile(filePath, file); 88return new TestableCompilerFile(filePath, file); 96return new TestableCompilerFile(filePath, file);
9 references to TestableCompilerFile
Microsoft.CodeAnalysis.Rebuild.UnitTests (6)
BasicDeterministicKeyBuilderTests.cs (3)
310var sourceFile = compiler.AddSourceFile("test.vb", @"' this is a test file"); 312var pdbFile = compiler.AddOutputFile("test.pdb"); 313var keyFile = compiler.AddOutputFile("test.dll.key");
CSharpDeterministicKeyBuilderTests.cs (3)
494var sourceFile = compiler.AddSourceFile("test.cs", @"// this is a test file"); 496var pdbFile = compiler.AddOutputFile("test.pdb"); 497var keyFile = compiler.AddOutputFile("test.dll.key");
Microsoft.CodeAnalysis.Test.Utilities (3)
TestableCompiler.cs (3)
75internal TestableCompilerFile AddSourceFile(string filePath, string content) 83internal TestableCompilerFile AddReference(string filePath, byte[] imageBytes) 91internal TestableCompilerFile AddOutputFile(string filePath)