12 references to CompileLibrary
InteractiveHost.UnitTests (12)
InteractiveHostDesktopTests.cs (12)
369var c = CompileLibrary(dir, "c.dll", "c", @"public class C { }"); 435var dll = CompileLibrary(dir, "c.dll", "C", @"public class C { public static int Main() { return 1; } }"); 436var exe = CompileLibrary(dir, "c.exe", "C", @"public class C { public static int Main() { return 2; } }"); 438var main = CompileLibrary(dir, "main.exe", "Main", @"public class Program { public static int Main() { return C.Main(); } }", 466var main = CompileLibrary(dir3, "main.exe", "Main", @"public class Program { public static int Main() { return C.Main(); } }", 483var lib1 = CompileLibrary(dir, "lib1.dll", "lib1", @"public interface I { int M(); }"); 484var lib2 = CompileLibrary(dir, "lib2.dll", "lib2", @"public class C : I { public int M() { return 1; } }", 687CompileLibrary(directory1, "Assembly0.dll", "Assembly0", @"public class C0 { }"); 688CompileLibrary(directory1, "Assembly1.dll", "Assembly1", @"public class C1 { }"); 700CompileLibrary(rspDirectory, "Assembly2.dll", "Assembly2", @"public class C2 { }"); 701CompileLibrary(rspDirectory, "Assembly3.dll", "Assembly3", @"public class C3 { }"); 739CompileLibrary(rspDirectory, "Assembly.dll", "Assembly", "public class C { }");