12 references to CompileLibrary
InteractiveHost.UnitTests (12)
InteractiveHostDesktopTests.cs (12)
371var c = CompileLibrary(dir, "c.dll", "c", @"public class C { }");
437var dll = CompileLibrary(dir, "c.dll", "C", @"public class C { public static int Main() { return 1; } }");
438var exe = CompileLibrary(dir, "c.exe", "C", @"public class C { public static int Main() { return 2; } }");
440var main = CompileLibrary(dir, "main.exe", "Main", @"public class Program { public static int Main() { return C.Main(); } }",
468var main = CompileLibrary(dir3, "main.exe", "Main", @"public class Program { public static int Main() { return C.Main(); } }",
485var lib1 = CompileLibrary(dir, "lib1.dll", "lib1", @"public interface I { int M(); }");
486var lib2 = CompileLibrary(dir, "lib2.dll", "lib2", @"public class C : I { public int M() { return 1; } }",
689CompileLibrary(directory1, "Assembly0.dll", "Assembly0", @"public class C0 { }");
690CompileLibrary(directory1, "Assembly1.dll", "Assembly1", @"public class C1 { }");
702CompileLibrary(rspDirectory, "Assembly2.dll", "Assembly2", @"public class C2 { }");
703CompileLibrary(rspDirectory, "Assembly3.dll", "Assembly3", @"public class C3 { }");
741CompileLibrary(rspDirectory, "Assembly.dll", "Assembly", "public class C { }");