12 references to CompileLibrary
InteractiveHost.UnitTests (12)
InteractiveHostDesktopTests.cs (12)
370var c = CompileLibrary(dir, "c.dll", "c", @"public class C { }");
436var dll = CompileLibrary(dir, "c.dll", "C", @"public class C { public static int Main() { return 1; } }");
437var exe = CompileLibrary(dir, "c.exe", "C", @"public class C { public static int Main() { return 2; } }");
439var main = CompileLibrary(dir, "main.exe", "Main", @"public class Program { public static int Main() { return C.Main(); } }",
467var main = CompileLibrary(dir3, "main.exe", "Main", @"public class Program { public static int Main() { return C.Main(); } }",
484var lib1 = CompileLibrary(dir, "lib1.dll", "lib1", @"public interface I { int M(); }");
485var lib2 = CompileLibrary(dir, "lib2.dll", "lib2", @"public class C : I { public int M() { return 1; } }",
688CompileLibrary(directory1, "Assembly0.dll", "Assembly0", @"public class C0 { }");
689CompileLibrary(directory1, "Assembly1.dll", "Assembly1", @"public class C1 { }");
701CompileLibrary(rspDirectory, "Assembly2.dll", "Assembly2", @"public class C2 { }");
702CompileLibrary(rspDirectory, "Assembly3.dll", "Assembly3", @"public class C3 { }");
740CompileLibrary(rspDirectory, "Assembly.dll", "Assembly", "public class C { }");