Exemplo n.º 1
0
        static void Main()
        {
            // Use some stuff so that we can verify that the linker output correct results
            SomeMethod();

            LibraryWithMdb.SomeMethod();
        }
Exemplo n.º 2
0
 static void Main()
 {
     // Use some stuff so that we can verify that the linker output correct results
     SomeMethod();
     LibraryWithCompilerDefaultSymbols.SomeMethod();
     LibraryWithPdb.SomeMethod();
     LibraryWithMdb.SomeMethod();
     LibraryWithEmbeddedPdbSymbols.SomeMethod();
     LibraryWithPortablePdbSymbols.SomeMethod();
 }
Exemplo n.º 3
0
 static void Main()
 {
     LibraryWithMdb.SomeMethod();
 }
 /// <summary>
 /// By not using this method we will cause the linker to delete the reference
 /// </summary>
 static void UnusedCodePath()
 {
     LibraryWithMdb.SomeMethod();
 }