1 implementation of AddCompilationRoot
ILCompiler.Compiler (1)
Compiler\RootingServiceProvider.cs (1)
27public void AddCompilationRoot(MethodDesc method, string reason, Utf8String exportName, bool exportHidden = false)
3 references to AddCompilationRoot
ILCompiler.Compiler (3)
Compiler\IRootingServiceProvider.cs (1)
14void AddCompilationRoot(MethodDesc method, string reason) => AddCompilationRoot(method, reason, default);
Compiler\MainMethodRootProvider.cs (1)
46rootProvider.AddCompilationRoot(startupCodeMain, $"Startup Code Main Method for {_module.Assembly.GetName().Name}", new Utf8String(_entryPointName));
Compiler\NativeLibraryInitializerRootProvider.cs (1)
35rootProvider.AddCompilationRoot(nativeLibStartupCode, "Startup Code Main Method", new Utf8String(ManagedEntryPointMethodName));