Documentation icon indicating copy to clipboard operation
Documentation copied to clipboard

Documentation for Simple Injector in reStructureText

Results 10 Documentation issues
Sort by recently updated
recently updated
newest added

I am just starting to work with a new project that is using ASP.NET Core 6.0 and I noticed that the startup class is now not the "standard" way of...

https://simpleinjector.readthedocs.io/en/latest/using.html Are they supposed to show Controller code down the pipeline too?

Scattered through the documentation there is advise about [running parallel operations](https://simpleinjector.org/howto#work-with-dependency-injection-in-multi-threaded-applications) and [wrapping operations in scopes](https://simpleinjector.org/aop). That documentation is a bit abstract and theoretical, It misses some simple examples. The...

I've registered my FormUserNew: `_container.Register();` which is called from `FormMain `(starting form), however i am not sure how should i take instance of that in `FormMain `then call it. Here's...

The documentation gives an example of how to use Simple Injector in WinForms projects. The example shows the code for the main view/main form with only a DI constructor. The...

See: https://github.com/simpleinjector/SimpleInjector/issues/385

Many of the best practices are scattered throughout the documentation and articles across the internet. These best practices should be summarized in one wiki page, while linking to the complete...

I have read the [WPF Integration](https://simpleinjector.readthedocs.io/en/latest/wpfintegration.html) docs and they tell me to do it like this (compact version shown): ``` static class Program { [STAThread] static void Main() { var...

Promote this answer into official documentation for WinForms: https://stackoverflow.com/a/38421425/264697

enhancement