From fa8031366288b1d4f10e19562d978e0e651a36ad Mon Sep 17 00:00:00 2001 From: Whaylon Coleman Date: Mon, 23 Dec 2019 03:14:17 -0600 Subject: [PATCH] Update README.md Added documentation for Missing Advanced Code Samples For Dependency Injection #6. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1594e1f..5c660a9 100644 --- a/README.md +++ b/README.md @@ -47,9 +47,9 @@ or you can download them on [GitHub](https://www.github.com/postsharp/PostSharp. | **Threading** | [PostSharp.Samples.Threading.PingPong](Threading/PostSharp.Samples.Threading.PingPong/) | The classic educational ping-pong example. | | [PostSharp.Samples.Threading.ThreadDispatching](Threading/PostSharp.Samples.Threading.ThreadDispatching/) | A simple WPF progress bar updated from a background thread. | - - - - - - \ No newline at end of file +**DependencyResolution** +| [PostSharp.Samples.DependencyResolution.GlobalServiceContainer](DependencyResolution/PostSharp.Samples.DependencyResolution.GlobalServiceContainer/) | Initialize the aspect from an ambient container at run time. | +| [PostSharp.Samples.DependencyResolution.GlobalServiceLocator](DependencyResolution/PostSharp.Samples.DependencyResolution.GlobalServiceLocator/) | Using a global MEF service locator. | +| [PostSharp.Samples.DependencyResolution.Dynamic](DependencyResolution/PostSharp.Samples.DependencyResolution.Dynamic/) | Resolve dependencies dynamically each time they are needed, and not only at aspect initialization. | +| [PostSharp.Samples.DependencyResolution.Contextual](DependencyResolution/PostSharp.Samples.DependencyResolution.Contextual/) | Resolve dependencies to specific implementations for a given context. + [PostSharp.Samples.DependencyResolution.InstanceScoped](DependencyResolution/PostSharp.Samples.DependencyResolution.InstanceScoped/) | Consume dependencies from the objects to which they are applied and also add dependencies to the target objects. |