Composition roots from other assemblies or projects can be used as a source of bindings. When you add a binding to a composition from another assembly or project, the roots of the composition with the RootKind.Exposed type will be used in the bindings automatically. For example, in some assembly a composition is defined as:
public partial class CompositionInOtherProject
{
private static void Setup() =>
DI.Setup()
.Bind().As(Lifetime.Singleton).To<MyDependency>()
.Bind().To<MyService>()
.Root<IMyService>("MyService", kind: RootKinds.Exposed);
}using Pure.DI;
using static Pure.DI.Lifetime;
using OtherAssembly;
DI.Setup(nameof(Composition))
// Binds to exposed composition roots from other project
.Bind().As(Singleton).To<CompositionInOtherProject>()
.Root<Program>("Program");
var composition = new Composition();
var program = composition.Program;
program.DoSomething();
partial class Program(IMyService myService)
{
public void DoSomething() => myService.DoSomething();
}Running this code sample locally
- Make sure you have the .NET SDK 10.0 or later installed
dotnet --list-sdk- Create a net10.0 (or later) console application
dotnet new console -n Sample- Add a reference to the NuGet package
dotnet add package Pure.DI- Copy the example code into the Program.cs file
You are ready to run the example 🚀
dotnet runImportant
At this point, a composition from another assembly or another project can be used for this purpose. Compositions from the current project cannot be used in this way due to limitations of the source code generators.
The following partial class will be generated:
partial class Composition
{
#if NET9_0_OR_GREATER
private readonly Lock _lock = new Lock();
#else
private readonly Object _lock = new Object();
#endif
private OtherAssembly.CompositionInOtherProject? _singletonCompositionInOtherProject62;
public Program Program
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
get
{
OtherAssembly.IMyService transientIMyService44;
if (_singletonCompositionInOtherProject62 is null)
lock (_lock)
if (_singletonCompositionInOtherProject62 is null)
{
_singletonCompositionInOtherProject62 = new OtherAssembly.CompositionInOtherProject();
}
OtherAssembly.CompositionInOtherProject localInstance_1182D1272 = _singletonCompositionInOtherProject62;
transientIMyService44 = localInstance_1182D1272.MyService;
return new Program(transientIMyService44);
}
}
}